:root{
  --max:1240px;
  --navH:74px;
  --bg:#06080b;
  --bg2:#0a0e12;
  ...
}
/* ================================
   Desktop Models Dropdown
================================ */

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-toggle i {
  font-size: 11px;
  transition: transform .25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(12, 12, 12, .96);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 999;
  backdrop-filter: blur(18px);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 13px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transform: translateX(3px);
}

/* ================================
   Mobile Models Dropdown
================================ */

.mobile-dropdown {
  display: block;
}

.mobile-dropdown-menu {
  padding: 0 0 8px 14px;
  margin-top: -4px;
}

.mobile-dropdown-menu .menuLink {
  min-height: 46px;
  padding-left: 14px;
  font-size: 14px;
  opacity: .86;
}

.mobile-dropdown-menu .menuLink span::before {
  content: "— ";
  opacity: .45;
}

@media (max-width: 991px) {
  .nav-dropdown-menu {
    display: none;
  }
}

menuIconSvg {
    display: block;
    width: 30px;
    height: 30px;
    transform: translateY(1px);
}

* {
    box-sizing: border-box;
}
/* CATEGORIES */
.categories-section{
  padding:82px 0;
  border-top:1px solid var(--line);
}

.categories-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:28px;
}

.categories-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.category-card{
  position:relative;
  min-height:280px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--panel2);
  box-shadow:var(--shadow);
}

.category-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.category-card:hover img{
  transform:scale(1.05);
}

.category-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.12));
}

.category-card-content{
  position:absolute;
  left:20px;
  right:20px;
  bottom:20px;
  z-index:2;
}

.category-card-content h3{
  margin:0;
  font-size:28px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}

.category-card-content p{
  margin:10px 0 0;
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.55;
  max-width:38ch;
}

.category-card-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:54px;
  color:rgba(255,255,255,.18);
  background:
    radial-gradient(500px 260px at 30% 20%, rgba(243,178,47,.16), transparent 60%),
    linear-gradient(180deg,var(--panel2),#080b0f);
}

@media (max-width: 980px){
  .categories-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px){
  .categories-head{
    display:block;
  }

  .categories-grid{
    grid-template-columns:1fr;
  }

  .category-card{
    min-height:240px;
  }
}


:root{
  --max:1240px;
  --navH:74px;
  --bg:#06080b;
  --bg2:#0a0e12;
  --panel:#0e1318;
  --panel2:#121821;
  --text:#f7f8fb;
  --muted:rgba(255,255,255,.74);
  --muted2:rgba(255,255,255,.56);
  --line:rgba(255,255,255,.11);
  --line-strong:rgba(255,255,255,.18);
  --surface:rgba(255,255,255,.04);
  --surface2:rgba(255,255,255,.07);
  --accent:#f3b22f;
  --accent-2:#4fd2ff;
  --shadow:0 24px 60px rgba(0,0,0,.38);
  --radius:24px;
  --radius-sm:18px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 640px at 15% 10%, rgba(79,210,255,.08), transparent 55%),
    radial-gradient(800px 520px at 85% 18%, rgba(243,178,47,.08), transparent 55%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.safe{padding-left:max(22px, env(safe-area-inset-left));padding-right:max(22px, env(safe-area-inset-right))}
.wrap{max-width:var(--max);margin:0 auto}
.section{padding:92px 0;position:relative}

.kicker{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:14px;
}

.h2{
  margin:0;
  font-size:42px;
  line-height:1.02;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.lead{
  margin:14px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
  max-width:780px;
}

.btn,.btnCard{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid var(--line-strong);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:.2s ease;
  cursor:pointer;
}

.btn-primary,.btnCardPrimary{background:var(--accent);border-color:var(--accent);color:#0c1016}
.btn-primary:hover,.btnCardPrimary:hover{transform:translateY(-2px);filter:brightness(1.02)}
.btn-ghost,.btnCardGhost{background:rgba(255,255,255,.04);color:var(--text)}
.btn-ghost:hover,.btnCardGhost:hover{transform:translateY(-2px);border-color:var(--accent)}

.nav{
  position:fixed;
  inset:0 0 auto 0;
  height:var(--navH);
  z-index:120;
  background:color-mix(in srgb, var(--panel) 78%, transparent);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.overlay{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(8px);
  opacity:0;
  pointer-events:none;
  transition:.28s ease;
}
.nav-inner{
  height:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{display:flex;align-items:center;gap:10px;min-width:0}
.brand-logo{height:46px;width:auto}
.brand-logo.logoDark{display:block}
.brand-logo.logoLight{display:none}


.nav-links{display:flex;align-items:center;gap:8px}
.nav-links a{
  height:42px;
  padding:0 14px;
  border-radius:999px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.nav-links a:hover{background:var(--surface2);color:var(--text)}
.menuIconLink{width:42px;justify-content:center}

.hamburger,.navClose,.overlay-close{
  width:42px;
  height:42px;
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:14px;
  color:var(--text);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.hamburger span,.hamburger span:before,.hamburger span:after{
  display:block;
  width:18px;
  height:2px;
  background:currentColor;
  position:relative;
}

.hamburger span:before,.hamburger span:after{
  content:"";
  position:absolute;
  left:0;
}
.hamburger span:before{top:-6px}
.hamburger span:after{top:6px}

.overlay{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(8px);
  opacity:0;
  pointer-events:none;
  transition:.28s ease;
}
.overlay.open{opacity:1;pointer-events:auto}

.overlay-panel{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
  background:var(--panel2);
  transform:translateX(100%);
  transition:.34s cubic-bezier(.77,0,.18,1);
  display:flex;
  flex-direction:column;
}

.overlay.open .overlay-panel{transform:translateX(0)}

.overlay-top{
  height:var(--navH);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  border-bottom:1px solid var(--line);
}

.overlay-links{display:flex;flex-direction:column}
.overlay-links a{
  all:unset;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px;
  border-bottom:1px solid var(--line);
  font-size:13px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  cursor:pointer;
}

/* HERO */
.hero-slider{
  position:relative;
  min-height:100svh;
  background:#000;
  overflow:hidden;
}

.hero-slide{
  display:none;
  position:relative;
  min-height:100svh;
}

.hero-slide.is-active{display:block}
.hero-media{position:absolute;inset:0}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:var(--desktop-pos,50% 40%);
}

.hero-media video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:var(--desktop-pos, 50% 25%);
  background:#000;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.28) 28%, rgba(0,0,0,.62) 72%, rgba(0,0,0,.84)),
    radial-gradient(900px 460px at 20% 18%, rgba(79,210,255,.12), transparent 60%);
}

.hero-content{
  position:relative;
  z-index:5;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
}

.hero-inner{
  max-width:var(--max);
  margin:0 auto;
  width:100%;
  padding-bottom:112px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,620px) 1fr;
  gap:20px;
  align-items:end;
}

.hero-card{
  padding:28px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  background:rgba(0,0,0,.26);
  backdrop-filter:blur(12px);
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.headline{
  margin:0;
  font-size:72px;
  line-height:.96;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
  max-width:10ch;
}

.sub{
  margin:16px 0 0;
  max-width:58ch;
  color:rgba(255,255,255,.78);
  font-size:15px;
  line-height:1.72;
}

.ctaRow{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.hero-trust span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-size:11px;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.hero-dots{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:6;
}

.hero-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.38);
  cursor:pointer;
}

.hero-dot.is-active{
  background:var(--accent);
  box-shadow:0 0 0 5px rgba(243,178,47,.18);
}

.scroll-indicator{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
  margin-top:22px;
}

.scroll-indicator i{font-size:12px}

/* SERIES */
.series-section{padding:80px 0;border-top:1px solid var(--line)}

.series-card{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:26px;
  padding:34px;
  border-radius:30px;
  background:linear-gradient(180deg,var(--panel2),rgba(255,255,255,.03));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.series-copy h2{
  margin:0 0 12px;
  font-size:58px;
  line-height:.95;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.series-copy p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
  max-width:42ch;
}

.series-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}

.series-visual{
  position:relative;
  min-height:0;
  aspect-ratio:1413 / 1050;
  border-radius:24px;
  background:#000;
  overflow:hidden;
  display:block;
}

.series-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  padding:0;
}

/* FEATURES */
.features-shell{padding:72px 0 40px}
.features-title{text-align:center;margin-bottom:28px}
.features-title h2{margin:0;font-size:44px;text-transform:uppercase;letter-spacing:.04em}
.features-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}

.feature-card{
  position:relative;
  min-height:320px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#0b1015;
}

.feature-card img,
.feature-card video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:brightness(.75);
}

.feature-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.76), rgba(0,0,0,.08));
}

.feature-copy{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:2;
}

.feature-copy strong{
  display:block;
  font-size:24px;
  line-height:1.02;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}

.feature-copy span{
  display:block;
  margin-top:4px;
  font-size:15px;
  color:rgba(255,255,255,.92);
  text-transform:uppercase;
  letter-spacing:.08em;
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}

/* VIEWER */
.viewer-section{
  padding:82px 0;
  background:
    radial-gradient(700px 360px at 15% 20%, rgba(79,210,255,.08), transparent 60%),
    radial-gradient(760px 380px at 85% 70%, rgba(243,178,47,.08), transparent 60%),
    linear-gradient(180deg,var(--panel2),var(--bg2));
  color:var(--text);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.viewer-card{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:28px;
  align-items:center;
}

.viewer-copy h2{
  margin:0 0 18px;
  font-size:46px;
  line-height:.98;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.viewer-copy p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}

.viewer-stage{
  position:relative;
  min-height:420px;
  max-height:420px;
  border-radius:28px;
  background:
    radial-gradient(520px 280px at 50% 18%, rgba(255,255,255,.08), transparent 62%),
    linear-gradient(180deg,#121821,#080b0f);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:24px;
}

.viewer-stage img{
  width:auto;
  max-width:100%;
  max-height:100%;
  height:auto;
  object-fit:contain;
  display:block;
}

.viewer-ring{
  position:absolute;
  bottom:34px;
  left:50%;
  transform:translateX(-50%);
  width:64%;
  height:32px;
  border:2px solid rgba(255,255,255,.18);
  border-radius:50%;
}

.color-dots{display:flex;align-items:center;gap:10px;margin-top:18px}
.color-dots span{width:18px;height:18px;border-radius:999px;border:1px solid rgba(255,255,255,.22);display:inline-block}
.viewer-icons{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-top:18px;color:var(--muted);font-size:14px}
.viewer-icons span{display:inline-flex;align-items:center;gap:8px}

/* PERFORMANCE HERO */
/* PERFORMANCE HERO */
.performance-hero{
  position:relative;
  width:100%;
  min-height:auto;
  aspect-ratio:2752 / 1354;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  overflow:hidden;
  display:flex;
  align-items:flex-end;
}

.performance-hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.performance-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.22), rgba(0,0,0,.45) 45%, rgba(0,0,0,.72));
}

.performance-copy{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:110px 22px 64px;
}
.performance-copy h2,
.performance-copy p,
.performance-copy .kicker{
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}

/* LIFESTYLE */
.lifestyle-section{padding:70px 0 82px}
.lifestyle-head{text-align:center;margin-bottom:24px}
.lifestyle-head h2{margin:0;font-size:54px;line-height:.96;text-transform:uppercase;letter-spacing:.04em}
.lifestyle-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}

.lifestyle-card{
  position:relative;
  min-height:320px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.lifestyle-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.lifestyle-card:hover img{transform:scale(1.05)}

.lifestyle-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.12));
}

.lifestyle-card span{
  position:absolute;
  left:20px;
  bottom:18px;
  z-index:2;
  font-size:24px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}

/* DEALER */
.dealer-section{
  padding:84px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)),
    radial-gradient(700px 320px at 20% 30%, rgba(79,210,255,.10), transparent 60%),
    radial-gradient(850px 360px at 85% 70%, rgba(243,178,47,.10), transparent 60%);
}

.dealer-card{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:center;
  padding:34px;
  border-radius:30px;
  background:linear-gradient(180deg,var(--panel2),rgba(255,255,255,.03));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.dealer-copy h2{
  margin:0 0 14px;
  font-size:52px;
  line-height:.96;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.dealer-copy p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
  max-width:44ch;
}

.dealer-benefits{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:24px;
}

.dealer-benefit{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 15px;
  border-radius:18px;
  border:1px solid var(--line);
  background:var(--surface);
}

.dealer-benefit i{
  width:38px;
  height:38px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(243,178,47,.14);
  color:var(--accent);
}

.dealer-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}

.dealer-map{
  min-height:380px;
  border-radius:26px;
  overflow:hidden;
  position:relative;
  background:#091018;
}

.dealer-map img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.86;
}

.dealer-map:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(4,8,13,.78), rgba(4,8,13,.16));
}

.dealer-map-badge{
  position:absolute;
  left:24px;
  bottom:24px;
  z-index:2;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.12);
  max-width:280px;
}

.dealer-map-badge strong{
  display:block;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.dealer-map-badge span{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:rgba(255,255,255,.8);
  line-height:1.5;
}

/* FINAL CTA */
.final-cta{padding:82px 0;text-align:center}

.final-cta-card{
  padding:42px 28px;
  border-radius:30px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--panel2),rgba(255,255,255,.03));
  box-shadow:var(--shadow);
}

.final-cta-card h2{
  margin:0 0 14px;
  font-size:54px;
  line-height:.96;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.final-cta-card p{
  margin:0 auto 24px;
  max-width:760px;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

/* FOOTER */
.footer{padding:28px 0 40px;border-top:1px solid var(--line)}
.footer-row{display:flex;justify-content:space-between;gap:16px;align-items:center;flex-wrap:wrap;color:var(--muted2);font-size:13px}
.footer-nav{display:flex;gap:14px;flex-wrap:wrap}



.hero-copy-free{max-width:620px}

/* AI CHAT */
.ai-chat-widget{position:fixed;right:20px;bottom:20px;z-index:300}
.ai-chat-toggle{display:flex;align-items:center;gap:10px;height:54px;padding:0 18px;border:none;border-radius:999px;cursor:pointer;font-weight:800;letter-spacing:.06em;background:var(--accent);color:#081018;box-shadow:0 18px 40px rgba(0,0,0,.25)}
.ai-chat-panel{width:360px;max-width:calc(100vw - 24px);height:520px;margin-top:12px;border:1px solid var(--line);border-radius:20px;overflow:hidden;background:var(--panel);box-shadow:var(--shadow);display:flex;flex-direction:column}
.ai-chat-panel[hidden]{display:none!important}
.ai-chat-head{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;border-bottom:1px solid var(--line);background:var(--panel2)}
.ai-chat-head button{width:38px;height:38px;border:none;border-radius:12px;cursor:pointer;background:var(--surface);color:var(--text)}
.ai-chat-messages{flex:1;overflow:auto;padding:14px;display:flex;flex-direction:column;gap:10px}
.ai-msg{max-width:85%;padding:11px 13px;border-radius:14px;line-height:1.5;font-size:14px}
.ai-msg-user{align-self:flex-end;background:var(--accent);color:#071018}
.ai-msg-bot{align-self:flex-start;background:var(--surface2);color:var(--text);border:1px solid var(--line)}
.ai-chat-form{display:flex;gap:10px;padding:14px;border-top:1px solid var(--line)}
.ai-chat-form input{flex:1;min-width:0;height:46px;border:1px solid var(--line);border-radius:14px;background:var(--surface);color:var(--text);padding:0 14px}
.ai-chat-form button{height:46px;padding:0 16px;border:none;border-radius:14px;cursor:pointer;font-weight:700;background:var(--text);color:var(--bg)}

@media (max-width: 1100px){
  .headline{font-size:58px}
  .series-card,.dealer-card,.viewer-card{grid-template-columns:1fr}
  .features-grid,.lifestyle-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width: 980px){
 .nav-links{display:none}
.hamburger{display:flex}
.overlay-close{display:flex}

  .hero-inner{padding-bottom:82px}
  .hero-grid{grid-template-columns:1fr}
  .hero-card{max-width:720px}

  .h2,.features-title h2,.performance-copy h2,.lifestyle-head h2,.final-cta-card h2{font-size:42px}
  .series-copy h2,.dealer-copy h2{font-size:42px}
}

@media (max-width: 640px){
  :root{--navH:66px}

  .section,.series-section,.viewer-section,.dealer-section,.final-cta{padding:64px 0}

  .hero-slider,
  .hero-slide,
  .hero-content{min-height:auto}

  .hero-media{
    position:relative;
    height:100svh;
    margin-top:var(--navH);
    background:#000;
  }

  .hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:var(--mobile-pos,50% 28%);
  }

 .hero-media video{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  background:#000;
}

  .hero-overlay{
    background:linear-gradient(to top, rgba(0,0,0,.84), rgba(0,0,0,.18) 55%);
  }

  .hero-content{
    margin-top:-90px;
    display:block;
  }

  .hero-inner{padding-bottom:28px}
  .hero-copy-free{max-width:720px}
  .headline{font-size:38px;max-width:12ch}
  .sub{font-size:14px}
  .hero-trust span{font-size:10px}
  .hero-dots{position:static;transform:none;justify-content:center;padding-bottom:18px}

  .series-card,.dealer-card,.final-cta-card{
    padding:20px;
    border-radius:24px;
  }

  .series-copy h2,
  .dealer-copy h2,
  .performance-copy h2,
  .lifestyle-head h2,
  .final-cta-card h2,
  .viewer-copy h2{
    font-size:34px;
  }

  .series-visual{
  min-height:0;
  aspect-ratio:1413 / 1050;
}
  .features-grid,.lifestyle-grid,.dealer-benefits{grid-template-columns:1fr}
  .feature-card,.lifestyle-card{min-height:260px}
  .viewer-stage{min-height:320px}

  .performance-hero{
  min-height:auto;
  aspect-ratio:2752 / 1354;
  align-items:flex-end;
}

.performance-hero img{
  object-position:center top;
}

  .performance-hero:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.52) 38%, rgba(0,0,0,.18) 100%);
  }

  .performance-copy{
    position:relative;
    z-index:2;
    padding:84px 22px 28px;
  }

  .performance-copy h2{
    margin:0 0 10px;
    font-size:34px;
    line-height:1;
    max-width:10ch;
  }

  .performance-copy p{
    margin:0 0 18px;
    font-size:15px;
    line-height:1.6;
    max-width:26ch;
  }

  .performance-copy .btn{
    min-height:44px;
    padding:0 16px;
    font-size:11px;
  }

  .ai-chat-widget{right:12px;left:12px;bottom:12px}
  .ai-chat-toggle{width:100%;justify-content:center}
  .ai-chat-panel{width:100%;height:70vh}
}

@media (max-width: 640px){
  .viewer-stage{
    min-height:280px;
    max-height:280px;
  }
}

.hero-card{
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
}

