:root {
  --black: #080808;
  --line: #d8d8d8;
  --soft: #f0f2f4;
  --page: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 64px; }
body {
  margin: 0;
  color: var(--black);
  background: var(--page);
  font-family: "Helvetica Neue", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.external-arrow {
  display: block;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  overflow: visible;
}
.external-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 26px;
  color: #fff;
  transition: background .25s, color .25s;
}
.site-header.scrolled, .site-header.menu-open {
  color: #111;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 29px;
  height: 29px;
}
.brand-mark img { width: 100%; height: 100%; }
.site-header:not(.scrolled):not(.menu-open) .brand-mark img,
.site-header:not(.scrolled):not(.menu-open) .wordmark img,
.site-footer .brand-mark img {
  filter: invert(1);
}
.desktop-nav {
  position: absolute;
  left: 78px;
  display: flex;
  gap: 30px;
  font-size: 14px;
}
.mobile-nav-only { display: none; }
.wordmark {
  display: block;
  width: 115px;
  line-height: 0;
}
.wordmark img { width: 100%; height: auto; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}
.header-import-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 2px 12px 3px;
  border: 1px solid rgba(231, 176, 136, .72);
  border-radius: 999px;
  background: rgba(13, 13, 13, .18);
  backdrop-filter: blur(10px);
  transition: color .2s, background .2s, border-color .2s;
}
.header-import-link img {
  display: block;
  width: 112px;
  height: auto;
}
.header-import-link span { font-size: 12px; }
.header-import-link:hover, .header-import-link:focus-visible {
  color: #17100c;
  border-color: #e1a679;
  background: #e1a679;
}
.site-header.scrolled .header-import-link {
  color: #fff;
  border-color: #151515;
  background: #151515;
}
.menu-button { display: none; }
.model-mobile-copy { display: none; }

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  color: #fff;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(72% 52% at 8% -8%, rgba(112, 38, 15, .78), transparent 69%),
    radial-gradient(62% 52% at 91% -12%, rgba(225, 153, 105, .48), transparent 68%),
    linear-gradient(180deg, rgba(25, 12, 7, .72) 0%, rgba(25, 12, 7, .24) 45%, transparent 68%);
  background-size: 118% 112%, 116% 112%, 100% 100%;
  animation: hero-brand-glow 14s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.05) 56%, rgba(0,0,0,.28));
  pointer-events: none;
}
@keyframes hero-brand-glow {
  from { background-position: 0 0, 100% 0, 0 0; }
  to { background-position: 8% 3%, 92% 4%, 0 0; }
}
.hero-heading {
  position: absolute;
  z-index: 2;
  top: 20%;
  left: 50%;
  width: min(820px, 92vw);
  transform: translateX(-50%);
  text-align: center;
}
.hero-heading h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}
.hero-heading > p {
  max-width: 690px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.88);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 228px;
  min-height: 52px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 550;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.hero-actions a:hover, .hero-actions a:focus-visible { transform: translateY(-2px); }
.hero-primary { color: #111; background: #fff; }
.hero-primary:hover, .hero-primary:focus-visible { background: #e9b087; }
.hero-model-caption {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 42px;
  display: grid;
  gap: 5px;
}
.hero-model-caption strong { font-size: 15px; font-weight: 600; letter-spacing: .04em; }
.hero-model-caption span { color: rgba(255,255,255,.68); font-size: 12px; }

.section-inner { width: calc(100% - 48px); margin: 0 auto; }
.models-section { padding: 24px 0; background: #fff; }
.models-section .section-inner {
  position: relative;
  height: min(936px, calc((100vw - 48px) / 2));
  min-height: 650px;
  padding-top: 0;
  background: #eef1f4;
  overflow: hidden;
}
.models-section h2, .service-section h2, .news-section h2 {
  margin: 0;
  text-align: center;
  font-size: 48px;
  font-weight: 500;
}
.models-section h2 {
  position: absolute;
  z-index: 3;
  top: 96px;
  left: 0;
  width: 100%;
}
.model-tabs {
  position: absolute;
  z-index: 3;
  top: 197px;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 12px;
  margin: 0;
}
.model-tabs button {
  min-width: 58px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #cfd3d7;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.model-tabs button.active { color: #fff; background: #111; border-color: #111; }
.model-stage { position: absolute; inset: 0; }
.model-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(.99);
  transition: opacity .42s ease, transform .7s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}
.model-stage > img.is-visible { opacity: 1; transform: scale(1); }
.model-stage > img.from-left { transform: translateX(-4%) scale(.99); }
.model-stage > img.from-right { transform: translateX(4%) scale(.99); }
.model-stage > img.leave-left { opacity: 0; transform: translateX(-3%) scale(.995); }
.model-stage > img.leave-right { opacity: 0; transform: translateX(3%) scale(.995); }
.stage-arrow {
  position: absolute;
  z-index: 2;
  top: 62%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 30px;
  cursor: pointer;
}
.stage-arrow svg { width: 14px; height: 14px; margin: auto; }
.stage-arrow path { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: square; stroke-linejoin: miter; }
.stage-arrow.previous { left: 15.8%; }
.stage-arrow.next { right: 15.8%; }
.model-actions {
  position: absolute;
  z-index: 3;
  bottom: 84px;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 12px;
  padding: 0;
}
.outline-button, .dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid #111;
  border-radius: 999px;
  cursor: pointer;
}
.dark-button { color: #fff; background: #090909; }
.dark-button.compact { min-width: 110px; min-height: 36px; margin: 36px auto 0; }

.service-section { padding: 120px 0; }
.service-media {
  position: relative;
  margin-top: 120px;
  height: calc((100vw - 48px) / 3);
  max-height: 624px;
  overflow: hidden;
  background: #000;
}
.service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .25s ease;
}
.service-media img.active { opacity: 1; }
.service-tabs { display: grid; grid-template-columns: 1fr 1fr; width: min(920px, 90%); margin: 48px auto 0; }
.service-tabs article {
  position: relative;
  padding: 20px 0 0;
  border-top: 2px solid rgba(0,0,0,.3);
  opacity: .3;
  outline: 0;
  cursor: pointer;
  transition: opacity .25s;
}
.service-tabs article + article { margin-left: 24px; }
.service-tabs article::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #111;
  transition: width .25s;
}
.service-tabs article.active { opacity: 1; }
.service-tabs article.active::before { width: 100%; }
.service-tabs h3 { margin: 0 0 12px; font-size: 24px; font-weight: 500; }
.service-tabs p { margin: 0; color: #111; font-size: 16px; line-height: 1.5; }

.news-section { padding: 120px 0; background: #ebe8e3; text-align: center; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 120px; text-align: left; }
.news-grid article { background: #fff; }
.news-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.news-grid p { min-height: 92px; margin: 0; padding: 24px; font-size: 18px; line-height: 1.45; }

.test-drive { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(420px, .75fr); min-height: 900px; padding: 90px 5%; gap: 5%; align-items: center; }
.test-drive-visual img { width: 100%; height: 520px; object-fit: contain; }
.drive-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.drive-specs div { border-right: 1px solid #bbb; }
.drive-specs div:last-child { border-right: 0; }
.drive-specs strong, .drive-specs span { display: block; }
.drive-specs strong { font-size: 24px; font-weight: 500; }
.drive-specs span { margin-top: 9px; color: #666; font-size: 12px; }
.drive-form h2 { margin: 0 0 30px; font-size: 30px; font-weight: 500; }
.drive-form label { display: grid; gap: 7px; margin-bottom: 17px; font-size: 13px; }
.drive-form input, .drive-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid #bcbcbc;
  background: transparent;
  border-radius: 0;
}
.drive-form .consent { grid-template-columns: auto 1fr; align-items: start; }
.drive-form .consent input { width: 16px; min-height: 16px; }
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit { width: 100%; border: 0; }
.form-submit:disabled { cursor: wait; opacity: .58; }
.form-status { min-height: 18px; color: #4a6356; font-size: 13px; }
.form-status.error { color: #9b2f2f; }

.import-owner {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 9vw, 150px) 0;
  color: #fff;
  background: #181818;
}
.import-owner::before {
  position: absolute;
  top: -45%;
  left: -12%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 74, 48, .42), rgba(136, 74, 48, 0) 66%);
  content: "";
  pointer-events: none;
}
.import-owner::after {
  position: absolute;
  right: -8%;
  bottom: -80%;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 200, 158, .11), rgba(248, 200, 158, 0) 68%);
  content: "";
  pointer-events: none;
}
.import-owner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 8vw, 150px);
  align-items: center;
  width: min(1500px, calc(100% - 96px));
}
.import-owner-brand {
  position: relative;
  display: block;
  padding: clamp(24px, 3vw, 48px) 0;
  border: 0;
  background: transparent;
  transition: transform .25s, filter .25s;
}
.import-owner-brand:hover, .import-owner-brand:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-4px) scale(1.015);
}
.import-owner-brand::before {
  position: absolute;
  z-index: -1;
  inset: 12% 3%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(136, 74, 48, .32), rgba(136, 74, 48, 0) 69%);
  filter: blur(22px);
  content: "";
}
.import-owner-brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .28));
}
.import-owner-content { max-width: 720px; }
.import-owner-kicker {
  display: block;
  margin-bottom: 24px;
  color: #f8c89e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.import-owner h2 {
  max-width: 680px;
  margin: 0 0 30px;
  font-size: clamp(38px, 4vw, 66px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.import-owner-content p {
  max-width: 670px;
  margin: 0 0 16px;
  color: #dbdbdb;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
}
.import-owner-services {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 34px 0;
}
.import-owner-services span {
  position: relative;
  padding-left: 13px;
  color: #dbdbdb;
  font-size: 12px;
}
.import-owner-services span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d8966d;
  content: "";
  transform: translateY(-50%);
}
.import-owner-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 2px;
  color: #181818;
  background: linear-gradient(110deg, #f8c89e, #c77f58);
  font-size: 14px;
  font-weight: 600;
  transition: filter .2s, transform .2s;
}
.import-owner-link:hover, .import-owner-link:focus-visible { filter: brightness(1.06); transform: translateY(-2px); }
.import-owner-link span { font-size: 20px; font-weight: 400; }

.app-section {
  min-height: clamp(700px, 78vh, 800px);
  background:
    radial-gradient(circle at 82% 38%, rgba(212, 222, 230, .7), transparent 29%),
    #f5f6f7;
  overflow: hidden;
}
.app-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  align-items: center;
  min-height: inherit;
}
.app-copy { padding-left: 12%; }
.app-inner h2 { margin: 0 0 16px; font-size: 48px; font-weight: 500; }
.app-inner p { color: #555; }
.app-downloads { display: flex; align-items: flex-end; gap: 22px; margin-top: 30px; }
.app-qr { width: 116px; height: 116px; object-fit: contain; }
.app-links { display: grid; gap: 7px; max-width: 180px; padding-bottom: 22px; }
.app-links strong { font-size: 14px; font-weight: 600; }
.app-links span { color: #62676b; font-size: 12px; line-height: 1.4; }
.app-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 0;
  padding: 70px 5% 70px 0;
}
.app-visual::before {
  position: absolute;
  width: min(500px, 78%);
  height: 44px;
  border-radius: 50%;
  background: rgba(44, 55, 64, .2);
  filter: blur(24px);
  content: "";
  transform: translateY(255px);
}
.app-phone {
  position: relative;
  z-index: 1;
  width: 278px;
  height: 548px;
  padding: 9px;
  border: 2px solid #22272b;
  border-radius: 42px;
  background: linear-gradient(145deg, #161a1d, #454c51 47%, #141719);
  box-shadow: 0 32px 70px rgba(26, 35, 42, .28), inset 0 0 0 1px rgba(255,255,255,.18);
}
.app-phone::before, .app-phone::after {
  position: absolute;
  left: -5px;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: #252a2e;
  content: "";
}
.app-phone::before { top: 116px; height: 56px; }
.app-phone::after { top: 184px; height: 78px; }
.app-phone-island {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  width: 82px;
  height: 22px;
  border-radius: 20px;
  background: #080a0b;
  transform: translateX(-50%);
}
.app-phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  color: #111;
  background: #f2f4f5;
}
.app-phone-status {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  height: 36px;
  padding: 10px 17px 0;
  color: #fff;
  background: #161b1e;
  font-size: 9px;
  font-weight: 600;
}
.app-phone-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 17px;
  color: #fff;
  background: #161b1e;
  font-size: 10px;
}
.app-phone-toolbar img { width: 72px; filter: invert(1); }
.app-phone-hero { position: relative; height: 214px; overflow: hidden; background: #1b2023; }
.app-phone-hero > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.app-phone-hero::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(8, 11, 13, .88));
  content: "";
}
.app-phone-hero > div {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #fff;
}
.app-phone-hero strong, .app-phone-hero span { display: block; }
.app-phone-hero strong { font-size: 20px; font-weight: 500; }
.app-phone-hero span { color: rgba(255,255,255,.72); font-size: 8px; }
.app-phone-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 12px 12px 10px; }
.app-phone-actions span {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 58px;
  color: #596269;
  background: #fff;
  font-size: 8px;
}
.app-phone-actions b { color: #171b1e; font-size: 16px; font-weight: 500; }
.app-phone-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 12px;
  padding: 15px 16px;
  border-radius: 12px;
  color: #fff;
  background: #191e21;
}
.app-phone-card div + div { padding-left: 16px; border-left: 1px solid rgba(255,255,255,.15); }
.app-phone-card span, .app-phone-card strong { display: block; }
.app-phone-card span { margin-bottom: 5px; color: #9aa1a5; font-size: 8px; }
.app-phone-card strong { font-size: 16px; font-weight: 500; }

.site-footer { display: grid; grid-template-columns: auto 1fr auto; gap: 42px; align-items: center; min-height: 180px; padding: 50px 6%; color: #fff; background: #050505; }
.site-footer nav { display: flex; justify-content: center; gap: 34px; font-size: 13px; }
.site-footer p { margin: 0; color: #888; font-size: 11px; }
.footer-meta { display: grid; justify-items: end; gap: 10px; text-align: right; }
.site-footer .footer-credit { color: #666; }
.site-footer .footer-owner { color: #737373; }
.footer-owner a {
  color: #d49a72;
  font-weight: 500;
  transition: color .2s;
}
.footer-owner a:hover, .footer-owner a:focus-visible { color: #f8c89e; }
.footer-credit a {
  color: #b9b9b9;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .2s;
}
.footer-credit a:hover, .footer-credit a:focus-visible { color: #fff; }

@media (max-width: 900px) {
  body.mobile-menu-open { overflow: hidden; }
  .site-header, .site-header.scrolled, .site-header.menu-open {
    grid-template-columns: 40px 1fr 40px;
    min-height: 64px;
    padding: 0 16px;
    background: #fff;
    border-bottom: 1px solid #dedede;
    color: #111;
  }
  .site-header > .brand-mark, .header-actions { display: none; }
  .site-header .wordmark { grid-column: 2; justify-self: center; width: 104px; }
  .site-header .wordmark img { filter: none !important; }
  .site-header .desktop-nav {
    position: fixed;
    z-index: -1;
    inset: 64px 0 auto;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 20px 22px max(30px, env(safe-area-inset-bottom));
    overflow-y: auto;
    color: #111;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .25s ease, visibility .2s;
    pointer-events: none;
  }
  .menu-button {
    grid-column: 3;
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 34px;
    height: 34px;
    padding: 9px 5px;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }
  .menu-button span {
    height: 1px;
    background: currentColor;
    transition: transform .2s ease;
  }
  .site-header.menu-open .menu-button span:first-child { transform: translateY(3px) rotate(45deg); }
  .site-header.menu-open .menu-button span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .site-header.menu-open .desktop-nav {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-header .desktop-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 4px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 17px;
  }
  .site-header .desktop-nav a:last-child {
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    margin-top: 18px;
    padding: 0 22px;
    color: #fff;
    border: 0;
    border-radius: 999px;
    background: #0b0b0b;
  }
  .site-header.menu-open .mobile-nav-only { display: flex; }
  .hero { min-height: 78vh; }
  .hero > img { object-position: 52% center; }
  .hero-heading { top: 18%; width: calc(100% - 30px); }
  .hero-heading h1 { font-size: clamp(38px, 11vw, 54px); }
  .hero-heading > p { max-width: 510px; margin-top: 17px; font-size: 14px; line-height: 1.45; }
  .hero-actions { gap: 9px; margin-top: 22px; }
  .hero-actions a { min-width: 0; min-height: 44px; padding: 0 18px; font-size: 12px; }
  .hero-model-caption { bottom: 22px; left: 18px; }
  .section-inner { width: calc(100% - 32px); }
  .models-section { padding: 18px 0 64px; }
  .models-section .section-inner {
    width: calc(100% - 32px);
    height: 600px;
    min-height: 0;
    border-radius: 20px;
  }
  .models-section h2 { top: 35px; font-size: 34px; letter-spacing: -.035em; }
  .model-tabs {
    top: 94px;
    justify-content: flex-start;
    gap: 7px;
    padding: 0 18px 7px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .model-tabs::-webkit-scrollbar { display: none; }
  .model-tabs button { flex: 0 0 auto; min-height: 38px; }
  .model-stage {
    top: 145px;
    bottom: auto;
    height: 285px;
    overflow: hidden;
  }
  .model-stage > img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
  }
  .model-stage > img.is-visible { transform: scale(1.06); }
  .model-stage > img.from-left { transform: translateX(-4%) scale(1.02); }
  .model-stage > img.from-right { transform: translateX(4%) scale(1.02); }
  .model-stage > img.leave-left { transform: translateX(-3%) scale(1.02); }
  .model-stage > img.leave-right { transform: translateX(3%) scale(1.02); }
  .stage-arrow.previous { left: 12px; }
  .stage-arrow.next { right: 12px; }
  .stage-arrow {
    top: 50%;
    width: 38px;
    height: 38px;
    color: #111;
    background: rgba(255,255,255,.9);
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    font-size: 24px;
    transform: translateY(-50%);
  }
  .model-mobile-copy {
    position: absolute;
    z-index: 3;
    bottom: 94px;
    left: 18px;
    display: grid;
    gap: 5px;
    max-width: calc(100% - 36px);
  }
  .model-mobile-copy strong { font-size: 16px; font-weight: 600; letter-spacing: .01em; }
  .model-mobile-copy span { color: #707070; font-size: 12px; line-height: 1.35; }
  .model-actions {
    bottom: 22px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr);
    gap: 8px;
    padding: 0 18px;
  }
  .model-actions .outline-button, .model-actions .dark-button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 12px;
    font-size: 13px;
  }
  .service-section { padding: 70px 0 60px; }
  .service-section h2, .news-section h2 { font-size: 32px; }
  .service-media { margin-top: 52px; height: 54vw; }
  .service-tabs { width: 100%; }
  .news-grid { grid-template-columns: 1fr; }
  .test-drive {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 48px;
    padding: 64px 20px 78px;
  }
  .test-drive-visual {
    overflow: hidden;
    border-radius: 18px;
    background: #f1f3f5;
  }
  .test-drive-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.55;
    object-fit: cover;
  }
  .drive-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: 0;
    padding: 8px 18px 18px;
    background: #fff;
  }
  .drive-specs div {
    min-height: 86px;
    padding: 19px 13px 12px;
    border-top: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
  }
  .drive-specs div:nth-child(2n) { border-right: 0; }
  .drive-specs strong { font-size: 19px; font-weight: 600; }
  .drive-specs span { margin-top: 7px; font-size: 11px; line-height: 1.35; }
  .drive-form { width: 100%; max-width: 560px; margin: 0 auto; }
  .drive-form h2 { margin-bottom: 34px; font-size: 34px; letter-spacing: -.035em; line-height: 1.05; }
  .drive-form label { gap: 8px; margin-bottom: 16px; font-size: 13px; }
  .drive-form input, .drive-form select {
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #f7f7f7;
  }
  .drive-form .consent { align-items: center; margin: 24px 0 20px; line-height: 1.35; }
  .drive-form .consent input { width: 20px; min-height: 20px; padding: 0; border: 1px solid #aaa; border-radius: 6px; background: #fff; }
  .drive-form .form-submit { min-height: 52px; font-size: 15px; }
  .import-owner { padding: 76px 0 84px; }
  .import-owner-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    width: min(680px, calc(100% - 48px));
  }
  .import-owner-brand { width: min(520px, 100%); margin: 0 auto; }
  .import-owner-content { max-width: none; }
  .import-owner h2 { font-size: clamp(38px, 8vw, 56px); }
  .app-inner {
    display: block;
    min-height: 850px;
    padding: 54px 0 46px;
    text-align: center;
  }
  .app-inner h2 { font-size: 32px; }
  .app-downloads { justify-content: center; }
  .app-section { min-height: 850px; }
  .app-copy { padding-left: 0; }
  .app-visual { height: 560px; margin-top: 28px; padding: 0; }
  .app-visual::before { transform: translateY(255px); }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer .brand-mark { margin: 0 auto; }
  .site-footer nav { flex-wrap: wrap; }
  .footer-meta { justify-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}

@media (max-width: 540px) {
  .hero { min-height: 680px; }
  .hero-heading h1 { font-size: 42px; }
  .hero-heading p { font-size: 14px; }
  .model-tabs { gap: 6px; }
  .model-tabs button { min-width: 44px; padding: 0 11px; font-size: 12px; }
  .service-tabs h3 { font-size: 19px; }
  .news-section { padding-top: 58px; }
  .drive-specs strong { font-size: 18px; }
  .import-owner { padding: 60px 0 68px; }
  .import-owner-inner { gap: 42px; width: calc(100% - 32px); }
  .import-owner-brand { padding: 24px; }
  .import-owner-kicker { margin-bottom: 18px; font-size: 10px; }
  .import-owner h2 { margin-bottom: 24px; font-size: 36px; }
  .import-owner-content p { font-size: 15px; }
  .import-owner-link { width: 100%; gap: 12px; }
}

@media (max-width: 360px) {
  .model-actions .outline-button, .model-actions .dark-button {
    padding: 0 6px;
    font-size: 12px;
    white-space: nowrap;
  }
}
