@php $steps = [ [ 'n' => '1', 'title' => 'Free Estimate', 'body' => 'We visit your property, assess your space, and deliver a clear written quote — at no cost to you.', ], [ 'n' => '2', 'title' => 'Design & Material Selection', 'body' => 'Choose your project shape, size, finish, and features. We walk you through every option.', ], [ 'n' => '3', 'title' => 'Expert Installation', 'body' => 'Our crew handles everything — excavation, base prep, installation, cleanup.', ], [ 'n' => '4', 'title' => 'Walkthrough & Warranty', 'body' => 'We inspect every inch with you at final walkthrough and hand you a written warranty before we leave.', ], ]; @endphp {{-- How It Works: 4 pasos con círculo outline cyan + línea conectora + CTA cálido. --}}
    @foreach ($steps as $i => $step)
  1. {{ $step['n'] }} @if ($i < count($steps) - 1) @endif

    {{ $step['title'] }}

    {{ $step['body'] }}

  2. @endforeach