@php $features = [ [ 'title' => __("Face Search"), 'description' => __("Guests find their photos instantly by uploading a selfie. Powered by advanced facial recognition that matches faces across thousands of event photos in seconds."), 'icon' => '', 'className' => "md:col-span-2 md:row-span-2 bg-primary/5", 'hasVisual' => true ], [ 'title' => __("Cloud Storage"), 'description' => __("Store event media on AWS S3, Google Cloud Storage, or local disk. Seamlessly migrate between storage providers anytime."), 'icon' => '', 'className' => "bg-teal-600/5 border-teal-600/10", 'hasVisual' => false ], [ 'title' => __("FTP Camera Tethering"), 'description' => __("Connect your camera directly via WiFi FTP. Photos are auto-imported into the event gallery every 2 minutes, no manual upload needed."), 'icon' => '', 'className' => "bg-emerald-500/5 border-emerald-500/10", 'hasVisual' => false ], [ 'title' => __("Custom Branding & Design Editor"), 'description' => __("Customize gallery designs, colors, and layouts. Remove platform branding and make every event page match your studio identity."), 'icon' => '', 'className' => "bg-teal-600/5 border-teal-600/10", 'hasVisual' => false ], [ 'title' => __("PIN-Protected Galleries"), 'description' => __("Secure every event with separate Admin and Guest PINs. Control who can view, download, and upload photos to your galleries."), 'icon' => '', 'className' => "bg-orange-500/5 border-orange-500/10", 'hasVisual' => false ], [ 'title' => __("Google Drive Import & Guest Upload"), 'description' => __("Import entire albums from Google Drive with one click. Let guests contribute their own photos directly to your event galleries."), 'icon' => '', 'className' => "bg-orange-500/5 border-orange-500/10", 'hasVisual' => false ] ]; @endphp

{{ __('Engineered for') }}
{{ __('Professional Standards.') }}

{{ __('We\'ve built the most feature-rich platform for event photographers, focusing on speed, security, and high-conversion client experiences.') }}

@foreach($features as $index => $feature)
{!! $feature['icon'] !!}

{{ $feature['title'] }}

{{ $feature['description'] }}

@if(isset($feature['hasVisual']) && $feature['hasVisual'])
{!! $feature['icon'] !!}
@endif
@endforeach