@if($section->subtitle)
@if($section->getConfig('badge_icon'))
@endif
{{ $section->subtitle }}
@endif
@if($section->title)
{{ $section->title }}
@endif
@if($section->content)
{{ $section->content }}
@endif
{{-- Stats/Features (Optional - from section data) --}}
@php
$stats = $section->getData('stats', []);
@endphp
@if(count($stats) > 0)
@foreach($stats as $stat)
{{ $stat['number'] ?? '' }}
{{ $stat['label'] ?? '' }}
@endforeach
@endif