@extends('layouts.subweb') @section('title', $page->meta_title ?? $page->title . ' — ' . $brand->name) @section('content') @php $s = $page->sections ?? []; @endphp {{-- HERO --}}
@if (!empty($s['hero']['badge']))
{{ $s['hero']['badge'] }}
@endif

{!! $s['hero']['headline'] ?? $page->title !!}

{{ $s['hero']['subheadline'] ?? $page->excerpt ?? $brand->description }}

@if (!empty($s['hero']['cta_primary'])) {{ $s['hero']['cta_primary'] }} → @endif @if (!empty($s['hero']['cta_secondary'])) {{ $s['hero']['cta_secondary'] }} @endif
{{-- FEATURES --}} @if (!empty($s['features']))

{{ $s['features_title'] ?? 'Kenapa Memilih Kami' }}

@foreach ($s['features'] as $feat)
{{ $feat['icon'] ?? '✅' }}

{{ $feat['title'] }}

{{ $feat['description'] }}

@endforeach
@endif {{-- RICH CONTENT --}} @if ($page->content)
{!! $page->content !!}
@endif {{-- CTA BOTTOM --}}

{{ $s['cta']['headline'] ?? 'Mulai Sekarang' }}

{{ $s['cta']['subheadline'] ?? 'Hubungi tim kami untuk konsultasi gratis.' }}

@php $email = \App\Models\SiteSetting::get('contact_email', 'info@vestaglobal.co.id', $brand->id); @endphp {{ $s['cta']['btn_label'] ?? 'Hubungi Kami' }} →
@endsection @push('styles') @endpush