@extends('layouts.dynamic-test') @php use Illuminate\Support\Str; $name = $service['name'] ?? 'Branding and Creative'; $heroImage = asset($service['listingImage'] ?? 'images/portfolio/doce-ary/brand-positioning-identity-developed-by-criazo-for-doce-ary.webp'); @endphp @section('title', 'Dynamic Nav Test — ' . $name) @section('meta_description', 'Hidden test page for Dynamic Navigation on a dark-hero branding service page.') @section('page-content')
{{-- Overview — cinematic dark hero --}}
{{ $service['categoryLabel'] ?? 'Branding & Creative' }}

{{ $service['heroTitle'] ?? $name }}

@if(!empty($service['heroSubtitle']))

{{ $service['heroSubtitle'] }}

@endif

{{ Str::limit($service['heroDescription'] ?? '', 240) }}

{{-- Process --}} @if(!empty($service['process']))
Process

How we build your brand

From strategy and naming to identity systems and rollout — structured for clarity and impact.

@foreach($service['process'] as $index => $step)
{{ str_pad($index + 1, 2, '0', STR_PAD_LEFT) }}

{{ $step['title'] }}

{{ $step['description'] }}

@endforeach
@endif {{-- Benefits --}} @if(!empty($service['benefits']))
Benefits

Why brands choose Criazo

@foreach($service['benefits'] as $benefit)

{{ $benefit }}

@endforeach
@endif {{-- Outcomes --}} @if(!empty($service['outcomes']))
Outcomes

What you can expect

@foreach($service['outcomes'] as $outcome)

{{ $outcome }}

@endforeach
@endif {{-- FAQ --}} @if(!empty($service['faqs']))
FAQ

Common questions

@foreach(array_slice($service['faqs'], 0, 6) as $faq)
{{ $faq['question'] }}

{{ $faq['answer'] }}

@endforeach
@endif
@endsection