{{-- ============================================================ SECTION 1: PAGE HEADER — gradient dark, breadcrumb + title ============================================================= --}} {{-- ============================================================ SECTION 2: INTRO — large heading + description, 3D hover image ============================================================= --}}

{{ config('site.about.main_title', __('Driving growth through innovative, results-focused marketing strategies and solutions')) }}

@php $introImg1 = config('site.about.image_intro_pill', 'cd-project/img/demos/marketing-1/concept/concept-10.png'); $introImg2 = config('site.about.image_intro_icon', 'cd-project/img/demos/marketing-1/svg/generic-2.svg'); $introLink = config('site.about.intro_link', '#'); @endphp

{{ config('site.about.main_subtitle', __('Unlock your brand\'s potential with tailored marketing strategies that connect, engage, and drive measurable results.')) }}

{{-- ============================================================ SECTION 3: PARALLAX — full-width background image ============================================================= --}} @php $parallaxImg = config('site.about.image_parallax', 'cd-project/img/demos/marketing-1/generic/generic-4.jpg'); @endphp
{{-- ============================================================ SECTION 4: GRADIENT — badge + heading + description ============================================================= --}}

{{ config('site.about.gradient_heading', __('Empowering Brands!')) }}

{{ config('site.about.gradient_badge', __('About Helping Businesses')) }}

{{ config('site.about.gradient_description', __('We are passionate about helping businesses grow through strategic, innovative, and data-driven marketing solutions. Founded on the principles of creativity, integrity, and customer-centricity, our team of seasoned marketers is dedicated to delivering measurable results that drive success.')) }}

{{-- ============================================================ SECTION 5: DARK COUNTERS — KPIs with value, suffix, label, description ============================================================= --}} @php $counters = config('site.about.counters', [ [ 'value' => 10, 'suffix' => '+', 'label' => __('Years of Growth'), 'description' => __('Over a decade of driving consistent growth, delivering impactful results, and empowering brands to achieve their fullest potential'), ], [ 'value' => 5, 'suffix' => 'M+', 'label' => __('Revenue Generated'), 'description' => __('Millions in revenue generated through strategic campaigns, helping our clients achieve remarkable financial success and sustainable growth.'), ], [ 'value' => 100, 'suffix' => '+', 'label' => __('Business Served'), 'description' => __('Partnered with hundreds of businesses across diverse industries, delivering tailored marketing solutions that drive results and foster long-term success.'), ], ]); $countersBadge = config('site.about.counters_badge', __('Impact Numbers')); @endphp
{{ $countersBadge }}
@foreach($counters as $i => $counter)
0

{{ $counter['label'] ?? '' }}

@if(!empty($counter['description']))

{{ $counter['description'] }}

@endif
@endforeach
{{-- ============================================================ SECTION 6: STICKY SCROLL — 2 images left, culture + values right ============================================================= --}} @php $stickyImg1 = config('site.about.image_culture', 'cd-project/img/demos/marketing-1/generic/generic-5.jpg'); $stickyImg2 = config('site.about.image_values', 'cd-project/img/demos/marketing-1/generic/generic-6.jpg'); @endphp
{{-- Culture block --}}
{{ config('site.about.culture_watermark', __('Culture')) }}

{{ config('site.about.culture_title', __('Our Culture')) }}

@php // Tolerante a string (newline-separated) o array $rawCulture = config('site.about.culture_paragraphs'); if (is_string($rawCulture) && trim($rawCulture) !== '') { $cultureParagraphs = array_values(array_filter(array_map('trim', preg_split('/\r\n|\r|\n/', $rawCulture)))); } elseif (is_array($rawCulture) && !empty($rawCulture)) { $cultureParagraphs = array_values(array_filter($rawCulture)); } else { $cultureParagraphs = [ __('Somos un equipo multidisciplinario que combina estrategia, diseño, tecnología y comunicación. Cada proyecto se aborda con la profundidad que requiere y con el cuidado de quien entiende el peso de una marca corporativa.'), __('Trabajamos cerca de cada cliente, generando vínculos de confianza a largo plazo. Creemos en proyectos de calidad, plazos cumplidos y resultados medibles.'), ]; } @endphp @foreach($cultureParagraphs as $paragraph)

{!! $paragraph !!}

@endforeach
{{-- Values block --}}
{{ config('site.about.values_watermark', __('Values')) }}

{{ config('site.about.values_title', __('Our Values')) }}

@php $rawValues = config('site.about.values_paragraphs'); if (is_string($rawValues) && trim($rawValues) !== '') { $valuesParagraphs = array_values(array_filter(array_map('trim', preg_split('/\r\n|\r|\n/', $rawValues)))); } elseif (is_array($rawValues) && !empty($rawValues)) { $valuesParagraphs = array_values(array_filter($rawValues)); } else { $valuesParagraphs = [ __('Compromiso, profesionalismo y escucha activa son la base de cómo trabajamos. Cada marca tiene una historia única y nuestro rol es contarla con coherencia, claridad y propósito.'), __('Defendemos el trabajo de calidad, los procesos transparentes y los resultados verificables. Acompañamos a cada cliente con honestidad y dedicación.'), ]; } @endphp @foreach($valuesParagraphs as $paragraph)

{!! $paragraph !!}

@endforeach
{{-- ============================================================ SECTION 7: TESTIMONIALS — stars badge + carousel ============================================================= --}} @php $testimonials = config('site.about.testimonials', [ [ 'text' => __('Superaron las expectativas con estrategias innovadoras. Se tomaron el tiempo para entender nuestra marca y entregaron campañas dirigidas que impulsaron significativamente los resultados.'), 'author' => __('Cliente Satisfecho'), 'company' => config('site.name'), ], [ 'text' => __('Excelente gestión. Nuestro engagement se duplicó y la presencia de marca nunca había sido tan fuerte. Recomendamos ampliamente sus servicios.'), 'author' => __('Cliente Satisfecho'), 'company' => config('site.name'), ], [ 'text' => __('Su investigación fue increíblemente exhaustiva. Aportó insights valiosos que dieron forma a toda nuestra estrategia. No podríamos estar más conformes con el resultado.'), 'author' => __('Cliente Satisfecho'), 'company' => config('site.name'), ], ]); @endphp @if(count($testimonials) > 0)

{{ config('site.about.testimonials_stars_label', __('Beyond Expectations')) }}

@php $testimonialsHighlight = config('site.about.testimonials_highlight_word', __('saying')); $testimonialsHeading = config('site.about.testimonials_heading', __('See what our clients are')); @endphp

{!! $testimonialsHeading !!} {{ $testimonialsHighlight }}!

@endif