@extends('layouts.public')
@php
$l=match(app()->getLocale()){
'en'=>['title'=>'Automotive spare parts with precise compatibility','text'=>'Browse ASWARCO parts by product, vehicle and engine. Prices remain private and are shown to approved customers.','browse'=>'Browse products','account'=>'Create an account','features'=>['Specialized parts catalogue','Vehicle and engine compatibility','Private customer pricing','Direct quote requests']],
'es'=>['title'=>'Repuestos con compatibilidad precisa','text'=>'Consulta piezas ASWARCO por producto, vehículo y motor. Los precios son privados para clientes aprobados.','browse'=>'Ver productos','account'=>'Crear una cuenta','features'=>['Catálogo especializado','Compatibilidad con vehículos','Precios privados','Solicitudes de cotización']],
'tr'=>['title'=>'Doğru uyumlulukla otomotiv yedek parçaları','text'=>'ASWARCO parçalarını ürün, araç ve motora göre inceleyin. Fiyatlar onaylı müşterilere özeldir.','browse'=>'Ürünleri incele','account'=>'Hesap oluştur','features'=>['Uzman parça kataloğu','Araç ve motor uyumluluğu','Özel müşteri fiyatları','Doğrudan fiyat talepleri']],
'it'=>['title'=>'Ricambi auto con compatibilità precisa','text'=>'Consulta i ricambi ASWARCO per prodotto, veicolo e motore. I prezzi sono riservati ai clienti approvati.','browse'=>'Sfoglia i prodotti','account'=>'Crea un account','features'=>['Catalogo specializzato','Compatibilità veicolo e motore','Prezzi cliente privati','Richieste di preventivo']],
default=>['title'=>'قطع سيارات بتوافق دقيق وخدمة موثوقة','text'=>'تصفح قطع ASWARCO حسب اسم القطعة والسيارة والمحرك. تبقى الأسعار خاصة وتظهر فقط للعملاء المقبولين.','browse'=>'تصفح المنتجات','account'=>'إنشاء حساب','features'=>['كتالوج متخصص لقطع السيارات','توافق السيارة والمحرك','أسعار خاصة لكل عميل','طلبات عروض أسعار مباشرة']],
};
@endphp
@section('title','ASWARCO')
@push('styles').hero{padding:70px 35px;border-radius:22px;background:linear-gradient(135deg,#064783,#0871c9);color:white;text-align:center}.hero h1{max-width:850px;margin:0 auto 18px;font-size:44px;line-height:1.25}.hero p{max-width:760px;margin:0 auto 28px;font-size:19px;line-height:1.8;color:#e9f4ff}.hero-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}.hero .button{background:white;color:var(--primary)}.hero .secondary{background:transparent;color:white;border:1px solid rgba(255,255,255,.65)}.features{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:24px}.feature{font-weight:800;text-align:center;color:var(--primary)}@media(max-width:800px){.hero{padding:45px 20px}.hero h1{font-size:32px}.features{grid-template-columns:repeat(2,1fr)}}@media(max-width:500px){.features{grid-template-columns:1fr}}@endpush
@section('content'){{ $l['title'] }}
{{ $l['text'] }}
@foreach($l['features'] as $feature){{ $feature }}
@endforeach@endsection