:root{
  --navy-950:#070A12;
  --navy-900:#0B0F19;
  --navy-800:#121828;
  --navy-700:#1B2338;
  --navy-600:#2A3450;
  --slate-300:#B9C2D6;
  --slate-400:#8B94AC;
  --slate-500:#6B7490;
  --white:#FFFFFF;
  --off-white:#F6F7FB;
  --accent:#FF5A1F;
  --accent-2:#FFB020;
  --accent-soft:#FFE7DA;
  --success:#22C55E;
  --electric:#3AD1C4;
  --radius-lg:20px;
  --radius-md:14px;
  --radius-sm:10px;
  --shadow-soft: 0 20px 50px -20px rgba(7,10,18,.35);
  --shadow-pop: 0 30px 60px -20px rgba(7,10,18,.55);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  background:var(--off-white);
  color:var(--navy-900);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,.font-display{font-family:'Sora','Inter',sans-serif;}
a{color:inherit; text-decoration:none;}
img,svg{display:block;}
ul{list-style:none;}
button{font:inherit; cursor:pointer; border:none; background:none;}
.icon{width:1em; height:1em; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}
.icon-fill{fill:currentColor; stroke:none;}
.wrap{max-width:1240px; margin:0 auto; padding:0 28px;}
.badge-chip{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 12px; border-radius:999px; font-size:12.5px; font-weight:700;
  letter-spacing:.02em;
}

/* ===== NAV ===== */
header{
  position:sticky; top:0; z-index:100;
  background:rgb(7, 10, 18);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{ display:flex; align-items:center; justify-content:space-between; height:78px; }
.logo{ display:flex; align-items:center; gap:10px; color:#fff; font-family:'Sora'; font-weight:800; font-size:20px; letter-spacing:-.01em;}
.logo .mark{
  width:38px; height:38px; border-radius:11px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow:0 8px 18px -6px rgba(255,90,31,.6);
}
.logo .mark .icon{width:20px; height:20px;}
.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{ color:var(--slate-300); font-size:14.5px; font-weight:600; transition:color .2s; position:relative;}
.nav-links a:hover, .nav-links a.active{ color:#fff; }
.nav-actions{ display:flex; align-items:center; gap:14px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 22px; border-radius:11px; font-weight:700; font-size:14.5px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn .icon{width:16px; height:16px;}
.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff;
  box-shadow:0 10px 24px -8px rgba(255,90,31,.55);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -8px rgba(255,90,31,.65); }
.btn-ghost{ color:#fff; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);}
.btn-ghost:hover{ background:rgba(255,255,255,.16); }
.btn-dark{ background:var(--navy-900); color:#fff; }
.btn-dark:hover{ transform:translateY(-2px); box-shadow:var(--shadow-soft); }
.btn-block{ width:100%; }
.nav-toggle{ display:none; color:#fff; width:26px; height:26px; }

/* ===== HERO ===== */
.hero{
  position:relative; background:radial-gradient(1200px 600px at 15% -10%, #1b2340 0%, var(--navy-950) 55%);
  color:#fff; padding:96px 0 130px; overflow:hidden;
}
.hero::before{
  content:''; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(ellipse 70% 70% at 60% 20%, black 20%, transparent 70%);
}
.hero-glow{
  position:absolute; width:640px; height:640px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,90,31,.35), transparent 70%);
  top:-220px; right:-160px; filter:blur(10px); pointer-events:none;
}
.hero-grid{ position:relative; display:grid; grid-template-columns:1fr; gap:56px; align-items:center; }
.hero-bg-slider{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.hero-bg-car{
  position:absolute; inset:0;
  background-repeat:no-repeat; background-position:right center; background-size:cover;
  opacity:0; filter:saturate(1.1);
  transition:opacity 1.8s ease;
  -webkit-mask-image:linear-gradient(100deg, transparent 0%, transparent 8%, rgba(0,0,0,.5) 38%, black 62%, black 100%);
  mask-image:linear-gradient(100deg, transparent 0%, transparent 8%, rgba(0,0,0,.5) 38%, black 62%, black 100%);
}
.hero-bg-car.is-active{ opacity:.28; }
.hero-grid > div{ position:relative; z-index:1; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px; padding:8px 14px 8px 8px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14); border-radius:999px;
  font-size:13px; font-weight:700; color:var(--accent-2); margin-bottom:22px;
}
.eyebrow .dot{ width:22px; height:22px; border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent-2)); display:flex; align-items:center; justify-content:center;}
.eyebrow .dot .icon{ width:12px; height:12px; color:#fff; }
.hero h1{
  font-size:56px; line-height:1.05; font-weight:800; letter-spacing:-.02em; margin-bottom:22px;
}
.hero h1 span{ background:linear-gradient(135deg,var(--accent-2),var(--accent)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p.lead{ font-size:18px; line-height:1.7; color:var(--slate-300); max-width:520px; margin-bottom:34px; }
.hero-cta{ display:flex; gap:14px; margin-bottom:52px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:36px; flex-wrap:wrap; }
.hero-stats .stat b{ display:block; font-family:'Sora'; font-size:26px; font-weight:800; }
.hero-stats .stat span{ font-size:13px; color:var(--slate-400); font-weight:600; }
 
/* hero visual */
.hero-visual{ position:relative; }
.hero-card{
  position:relative; background:linear-gradient(155deg,var(--navy-800),var(--navy-700));
  border:1px solid rgba(255,255,255,.1); border-radius:26px; padding:34px;
  box-shadow:var(--shadow-pop);
}
.hero-car-stage{
  position:relative; border-radius:18px; padding:34px 10px 10px;
  background:radial-gradient(120% 100% at 50% 0%, rgba(255,90,31,.28), transparent 60%);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.hero-car-stage img{ width:100%; max-width:400px; height:220px; object-fit:cover; border-radius:14px; }
.hero-car-stage .car-illustration{ width:100%; max-width:400px; height:auto; aspect-ratio:200/90; color:#fff; filter:drop-shadow(0 30px 24px rgba(0,0,0,.45)); }
.floating-tag{
  position:absolute; background:#fff; color:var(--navy-900); border-radius:14px; padding:12px 16px;
  display:flex; align-items:center; gap:10px; box-shadow:var(--shadow-soft); font-weight:700; font-size:13px;
}
.floating-tag .ic-wrap{ width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; }
.floating-tag small{ display:block; font-weight:600; color:var(--slate-500); font-size:11px; }
.tag-1{ top:14px; left:-18px; }
.tag-1 .ic-wrap{ background:var(--success); }
.tag-2{ bottom:22px; right:-14px; }
.tag-2 .ic-wrap{ background:var(--accent); }
.hero-card-footer{ display:flex; align-items:center; justify-content:space-between; margin-top:26px; padding-top:20px; border-top:1px solid rgba(255,255,255,.1); }
.hero-card-footer .name{ color:#fff; font-weight:700; font-size:15px; }
.hero-card-footer .sub{ color:var(--slate-400); font-size:12.5px; }
.hero-card-footer .price{ color:var(--accent-2); font-family:'Sora'; font-weight:800; font-size:19px; }
/* search bar */
.search-bar{ position:relative; margin-top:-58px; z-index:5; }
.search-panel{
  background:#fff; border-radius:20px; box-shadow:var(--shadow-pop); padding:22px;
  display:grid; grid-template-columns:1.2fr 1fr 1fr 1fr auto; gap:14px; align-items:end;
}
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:12px; font-weight:700; color:var(--slate-500); text-transform:uppercase; letter-spacing:.04em; }
.field .control{
  display:flex; align-items:center; gap:10px; border:1.5px solid #E7E9F2; border-radius:11px; padding:12px 14px;
  transition:border-color .2s;
}
.field .control:focus-within{ border-color:var(--accent); }
.field .control .icon{ width:17px; height:17px; color:var(--slate-500); flex-shrink:0; }
.field select, .field input{
  border:none; outline:none; font:inherit; font-size:14px; font-weight:600; color:var(--navy-900); width:100%; background:transparent;
}

/* ===== SECTION HEADERS ===== */
section{ padding:100px 0; }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.kicker{
  display:inline-flex; align-items:center; gap:8px; color:var(--accent); font-weight:800; font-size:13px;
  text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px;
}
.kicker::before{ content:''; width:22px; height:2px; background:var(--accent); border-radius:2px; }
.section-head h2{ font-size:38px; font-weight:800; letter-spacing:-.02em; margin-bottom:14px; color:var(--navy-900); }
.section-head p{ font-size:16.5px; color:var(--slate-500); line-height:1.7; }

/* ===== TRUST BAR ===== */
.trust-bar{ padding:34px 0; background:var(--navy-900); }
.trust-row{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; }
.trust-item{ display:flex; align-items:center; gap:12px; color:#fff; }
.trust-item .ic-wrap{ width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; color:var(--accent-2); flex-shrink:0;}
.trust-item .ic-wrap .icon{ width:19px; height:19px; }
.trust-item b{ display:block; font-size:14px; font-weight:700; }
.trust-item span{ display:block; font-size:12px; color:var(--slate-400); }

/* ===== BRANDS ===== */
.brands{ background:#fff; }
.brand-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.brand-card{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  background:var(--off-white); border:1px solid #ECEEF5; border-radius:var(--radius-lg);
  padding:26px 16px; text-align:center; transition:transform .2s, border-color .2s, box-shadow .2s;
}
.brand-card:hover{ transform:translateY(-4px); border-color:var(--accent); box-shadow:var(--shadow-soft); }
.brand-logo{
  width:64px; height:64px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  overflow:hidden; background:#fff; border:1px solid #ECEEF5;
}
.brand-logo img{ width:100%; height:100%; object-fit:contain; }
.brand-logo .initials{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  font-family:'Sora'; font-weight:800; font-size:18px; color:#fff;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
}
.brand-card b{ font-size:14.5px; font-weight:700; color:var(--navy-900); }

/* ===== INVENTORY ===== */
.inventory{ background:var(--off-white); }
.filter-bar{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:36px; }
.filter-chips{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  padding:10px 18px; border-radius:999px; background:#fff; border:1.5px solid #E7E9F2; font-weight:700; font-size:13.5px;
  color:var(--slate-500); transition:all .18s ease;
}
.chip:hover{ border-color:var(--accent); color:var(--accent); }
.chip.active{ background:var(--navy-900); border-color:var(--navy-900); color:#fff; }
.search-mini{ display:flex; align-items:center; gap:10px; background:#fff; border:1.5px solid #E7E9F2; border-radius:11px; padding:11px 16px; min-width:230px;}
.search-mini .icon{ width:16px; height:16px; color:var(--slate-500); }
.search-mini input{ border:none; outline:none; font:inherit; font-size:14px; width:100%; }

.car-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.car-card{
  background:#fff; border-radius:var(--radius-lg); overflow:hidden; border:1px solid #ECEEF5;
  transition:transform .25s ease, box-shadow .25s ease; display:flex; flex-direction:column;
}
.car-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); }
.car-media{
  position:relative; height:200px; display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.car-media img{ width:100%; height:100%; object-fit:cover; position:relative; z-index:2; }
.car-media .car-illustration{ width:78%; height:auto; aspect-ratio:200/90; position:relative; z-index:2; filter:drop-shadow(0 14px 14px rgba(0,0,0,.18)); }
.car-media .bg-blob{ position:absolute; width:220px; height:220px; border-radius:50%; opacity:.5; filter:blur(6px); }
.car-media .bg-ring{ position:absolute; inset:14px; border:1.5px dashed rgba(255,255,255,.35); border-radius:50%; }
.car-badge{ position:absolute; top:14px; left:14px; z-index:3; }
.car-body{ padding:22px; display:flex; flex-direction:column; gap:14px; flex:1; }
.car-title-row{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.car-title{ font-family:'Sora'; font-weight:700; font-size:17px; color:var(--navy-900); line-height:1.3; }
.car-loc{ display:flex; align-items:center; gap:5px; color:var(--slate-500); font-size:12.5px; margin-top:4px;}
.car-loc .icon{ width:12px; height:12px; }
.car-brand{ display:flex; align-items:center; gap:5px; color:var(--slate-500); font-size:12.5px; font-weight:600; flex-shrink:0;}
.spec-row{ display:flex; flex-wrap:wrap; gap:8px; }
.spec-chip{ display:flex; align-items:center; gap:6px; font-size:12px; font-weight:600; color:var(--slate-500); background:#F4F5FA; padding:6px 10px; border-radius:8px;}
.spec-chip .icon{ width:13px; height:13px; }
.car-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:14px; border-top:1px solid #F0F1F6; }
.car-price b{ font-family:'Sora'; font-size:20px; font-weight:800; color:var(--navy-900); }
.car-price span{ font-size:12px; color:var(--slate-500); display:block; }
.btn-view{ display:flex; align-items:center; gap:6px; color:var(--accent); font-weight:700; font-size:13.5px; }
.btn-view .icon{ width:15px; height:15px; transition:transform .2s; }
.car-card:hover .btn-view .icon{ transform:translateX(4px); }
.load-more-wrap{ display:flex; justify-content:center; margin-top:44px; gap:12px; }
.empty-state{ grid-column:1/-1; text-align:center; padding:60px 20px; color:var(--slate-500); }
.empty-state .icon{ width:40px; height:40px; margin:0 auto 14px; color:var(--slate-400); }
.empty-state b{ display:block; font-weight:700; color:var(--navy-700); margin-bottom:6px; }

/* ===== CTA BANNER ===== */
.cta-banner{
  background:linear-gradient(120deg,var(--navy-950),var(--navy-800));
  color:#fff; border-radius:28px; padding:56px; margin:0 28px; position:relative; overflow:hidden;
  max-width:1184px; margin-left:auto; margin-right:auto;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-banner::after{
  content:''; position:absolute; width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle,rgba(255,90,31,.35),transparent 70%); top:-160px; right:-100px;
}
.cta-banner h2{ font-size:30px; font-weight:800; margin-bottom:10px; position:relative; max-width:480px; }
.cta-banner p{ color:var(--slate-300); font-size:15px; position:relative; max-width:440px; }
.cta-actions{ display:flex; gap:14px; position:relative; flex-wrap:wrap; }

/* ===== ABOUT ===== */
.about-hero{ background:var(--navy-900); color:#fff; padding:80px 0; }
.about-hero h1{ font-size:42px; font-weight:800; letter-spacing:-.02em; margin-bottom:16px; }
.about-hero p{ font-size:17px; color:var(--slate-300); max-width:640px; line-height:1.7; }
.about-body{ background:#fff; }
.about-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.about-card{ background:var(--off-white); border-radius:var(--radius-lg); padding:28px; border:1px solid #ECEEF5; }
.about-card .feature-icon{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff; margin-bottom:18px;
}
.about-card .feature-icon .icon{ width:24px; height:24px; }
.about-card h3{ font-size:17px; font-weight:700; margin-bottom:10px; }
.about-card p{ font-size:14px; color:var(--slate-500); line-height:1.65; }

/* ===== CAR DETAIL PAGE ===== */
.car-detail{ background:#fff; }
.car-detail-top{ display:flex; align-items:center; gap:8px; color:var(--slate-500); font-size:13.5px; font-weight:600; margin-bottom:26px; }
.car-detail-top a{ color:var(--slate-500); }
.car-detail-top a:hover{ color:var(--accent); }
.car-detail-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:start; }
.car-detail-media-col{ min-width:0; }
.car-detail-media{
  position:relative; border-radius:var(--radius-lg); overflow:hidden; height:400px;
  display:flex; align-items:center; justify-content:center;
}
.car-detail-media img{ width:100%; height:100%; object-fit:cover; }
.car-detail-media .car-illustration{ width:70%; height:auto; aspect-ratio:200/90; filter:drop-shadow(0 20px 20px rgba(0,0,0,.25)); }
.car-detail-media .car-badge{ top:18px; left:18px; }

/* gallery: main image + prev/next arrows + counter, thumbnail strip below */
.gallery-main{ position:relative; width:100%; height:100%; }
.gallery-arrow{
  position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.92); display:flex; align-items:center; justify-content:center; color:var(--navy-900);
  box-shadow:var(--shadow-soft); z-index:4; transition:background .15s, transform .15s;
}
.gallery-arrow:hover{ background:#fff; }
.gallery-arrow .icon{ width:18px; height:18px; }
.gallery-prev{ left:14px; }
.gallery-next{ right:14px; }
.gallery-next .icon{ transform:none; }
.gallery-prev .icon{ transform:rotate(180deg); }
.gallery-count{
  position:absolute; bottom:14px; left:14px; z-index:4; background:rgba(7,10,18,.72); color:#fff;
  font-size:12.5px; font-weight:700; padding:5px 12px; border-radius:999px; letter-spacing:.02em;
}
.gallery-thumbs{
  display:flex; gap:10px; margin-top:14px; overflow-x:auto; padding-bottom:4px; scrollbar-width:thin;
}
.gallery-thumb{
  flex-shrink:0; width:72px; height:54px; border-radius:10px; overflow:hidden; border:2px solid transparent;
  padding:0; opacity:.7; transition:opacity .15s, border-color .15s;
}
.gallery-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-thumb:hover{ opacity:1; }
.gallery-thumb.active{ border-color:var(--accent); opacity:1; }

.car-detail-info h1{ font-size:30px; font-weight:800; letter-spacing:-.01em; margin-bottom:8px; }
.car-detail-price{ font-family:'Sora'; font-size:30px; font-weight:800; color:var(--navy-900); margin:18px 0 26px; }
.car-detail-price span{ font-size:13px; color:var(--slate-500); font-weight:600; display:block; margin-top:2px; }
.detail-specs{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-bottom:28px; }
.detail-spec{ background:var(--off-white); border-radius:12px; padding:16px; display:flex; align-items:center; gap:12px; }
.detail-spec .ic-wrap{ width:36px; height:36px; border-radius:10px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.detail-spec .ic-wrap .icon{ width:17px; height:17px; }
.detail-spec b{ display:block; font-size:14.5px; font-weight:700; }
.detail-spec span{ font-size:12px; color:var(--slate-500); text-transform:uppercase; letter-spacing:.03em; }
.feature-list{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:22px; }
.feature-tag{
  display:flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:var(--navy-800);
  background:var(--off-white); border-radius:999px; padding:7px 14px 7px 10px;
}
.feature-tag .icon{ width:13px; height:13px; color:var(--accent); flex-shrink:0; }
.car-detail-desc{ font-size:15px; color:var(--slate-500); line-height:1.75; margin-bottom:26px; }
.detail-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.related-heading{ margin:70px 0 30px; font-size:22px; font-weight:800; font-family:'Sora'; }

/* ===== FOOTER ===== */
footer{ background:var(--navy-950); color:var(--slate-400); padding:80px 0 0; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1.2fr; gap:44px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.08); }
.foot-brand p{ font-size:14px; line-height:1.7; margin:18px 0 22px; max-width:280px; }
.foot-social{ display:flex; gap:10px; }
.foot-social a{
  width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center;
  transition:background .2s, color .2s; color:var(--slate-400);
}
.foot-social a:hover{ background:var(--accent); color:#fff; }
.foot-social .icon{ width:17px; height:17px; }
.foot-col h4{ color:#fff; font-size:14px; font-weight:700; margin-bottom:20px; }
.foot-col ul{ display:flex; flex-direction:column; gap:12px; }
.foot-col a{ font-size:14px; transition:color .2s; }
.foot-col a:hover{ color:#fff; }
.foot-contact li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; margin-bottom:14px; }
.foot-contact .icon{ width:16px; height:16px; margin-top:2px; color:var(--accent-2); flex-shrink:0; }
.foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:13px; flex-wrap:wrap; gap:10px; }
.foot-bottom a{ margin-left:20px; }

/* ===== MOBILE NAV ===== */
.mobile-menu{
  position:fixed; top:78px; left:0; right:0; background:var(--navy-950); z-index:99; padding:20px 28px 30px;
  border-bottom:1px solid rgba(255,255,255,.08); transform:translateY(-12px); opacity:0; pointer-events:none;
  transition:all .22s ease; display:flex; flex-direction:column; gap:4px;
}
.mobile-menu.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
.mobile-menu a{ color:#fff; font-weight:700; font-size:15px; padding:14px 4px; border-bottom:1px solid rgba(255,255,255,.06); }
.mobile-menu .btn{ margin-top:14px; }

/* Scroll-reveal is opt-in via JS (body.aos-ready) so content is visible by
   default if JavaScript fails, IntersectionObserver is unsupported, or the
   visitor has requested reduced motion — see site.js. */
body.aos-ready [data-aos]{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
body.aos-ready [data-aos].aos-in{ opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width:1080px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:460px; margin:0 auto; }
  .search-panel{ grid-template-columns:1fr 1fr; }
  .search-panel .btn{ grid-column:1/-1; }
  .car-grid{ grid-template-columns:repeat(2,1fr); }
  .brand-grid{ grid-template-columns:repeat(2,1fr); }
  .about-grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .car-detail-grid{ grid-template-columns:1fr; }
}
@media (max-width:760px){
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }
  .hero{ padding:56px 0 100px; }
  .hero h1{ font-size:36px; }
  .hero-stats{ gap:24px; }
  .search-panel{ grid-template-columns:1fr; padding:18px; }
  section{ padding:64px 0; }
  .section-head h2{ font-size:28px; }
  .car-grid{ grid-template-columns:1fr; }
  .brand-grid{ grid-template-columns:1fr 1fr; }
  .cta-banner{ padding:36px 24px; flex-direction:column; align-items:flex-start; margin:0 16px; }
  .foot-grid{ grid-template-columns:1fr; }
  .trust-row{ justify-content:center; text-align:center; }
  .filter-bar{ flex-direction:column; align-items:stretch; }
  .detail-specs{ grid-template-columns:1fr 1fr; }
  .tag-1{ left:-8px; }
  .tag-2{ display:none; }
}
