:root {
  --bg: #f4f6f8;
  --text: #111318;
  --muted: #667085;
  --dark: #05070b;
  --line: #d9dee7;
  --card: #ffffff;
  --accent: #1b74ff;
  --accent-dark: #0e4fb3;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #a4ce4c);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.12s var(--ease-standard), transform 0.45s var(--ease-standard);
  pointer-events: none;
}

body.is-navigating::before {
  opacity: 1;
  transform: scaleX(0.82);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 12px 5vw;
  background: transparent;
  color: #fff;
  backdrop-filter: blur(16px);
  transition: all 0.3s var(--ease-standard);
}

.site-header.scrolled,
.site-header.nav-open {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(17, 19, 24, 0.08);
}

.site-header.scrolled .logo img,
.site-header.nav-open .logo img {
  filter: invert(1);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 115px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-nav a {
  transition: color 0.15s var(--ease-standard);
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-header.scrolled .site-nav,
.site-header.nav-open .site-nav,
.site-header.scrolled .language-switcher,
.site-header.nav-open .language-switcher {
  color: rgba(17, 19, 24, 0.72);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a.active,
.site-header.nav-open .site-nav a:hover,
.site-header.nav-open .site-nav a.active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 8px 6px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  transition: border-color 0.3s var(--ease-standard), background-color 0.3s var(--ease-standard), color 0.3s var(--ease-standard);
}

.site-header.scrolled .language-switcher,
.site-header.nav-open .language-switcher {
  border-color: rgba(17, 19, 24, 0.12);
  background: rgba(17, 19, 24, 0.04);
}

.language-switcher select,
.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #fff;
  cursor: pointer;
  padding: 7px 11px;
}

.language-switcher select {
  min-width: 124px;
  color: var(--dark);
  font: inherit;
  font-weight: 800;
}

.menu-toggle {
  background: transparent;
}

.site-header.scrolled .menu-toggle,
.site-header.nav-open .menu-toggle {
  border-color: rgba(17, 19, 24, 0.16);
  color: var(--text);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  min-height: 640px;
  padding: 80px 5vw;
  align-items: center;
}

.hero-dark {
  background: radial-gradient(circle at 75% 20%, #173b68, transparent 34%), linear-gradient(135deg, #05070b, #101722 55%, #05070b);
  color: #fff;
}

.hero-light {
  background: linear-gradient(135deg, #ffffff, #edf3ff);
}

.hero-bleed {
  position: relative;
  grid-template-columns: 1fr;
  height: clamp(560px, 78vh, 760px);
  min-height: 0;
  overflow: hidden;
  align-content: center;
  color: #fff;
  background: #05070b;
}

.hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 11, 0.82), rgba(5, 7, 11, 0.34) 46%, rgba(5, 7, 11, 0.12)), linear-gradient(0deg, rgba(5, 7, 11, 0.78), transparent 44%);
  pointer-events: none;
}

.product-hero::after {
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.24), rgba(5, 7, 11, 0.08) 38%, rgba(5, 7, 11, 0.48) 100%), linear-gradient(90deg, rgba(5, 7, 11, 0.22), transparent 44%, rgba(5, 7, 11, 0.08));
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-bg-picture,
.brand-hero-picture {
  position: absolute;
  inset: 0;
}

.hero-bg-picture img,
.brand-hero-picture img {
  display: block;
}

.hero-bleed .hero-copy,
.hero-bottom-panel,
.hero-overlay-stats {
  position: relative;
  z-index: 1;
}

.hero-bleed .hero-copy {
  max-width: 660px;
  align-self: center;
}

.hero-bleed p:not(.eyebrow),
.hero-bleed .price {
  color: rgba(255, 255, 255, 0.78);
}

.product-hero {
  align-content: space-between;
  padding-top: 110px;
  padding-bottom: 44px;
}

.product-hero .hero-copy {
  justify-self: center;
  max-width: 760px;
  text-align: center;
}

.product-hero .price {
  color: #fff;
}

.hero-bottom-panel {
  width: min(980px, 100%);
  margin: 0 auto;
}

.product-hero .stat-row div {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(5, 7, 11, 0.5);
  backdrop-filter: blur(12px);
}

.product-hero .stat-row strong {
  color: #fff;
}

.product-hero .stat-row span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-overlay-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: end;
  width: min(760px, 100%);
}

.hero-overlay-stats div {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(5, 7, 11, 0.42);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.hero-overlay-stats strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 22px;
}

.hero-overlay-stats span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.hero-copy {
  max-width: 600px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -3px;
}

.brand-hero-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -3px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -2px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  padding: 12px 22px;
  font: inherit;
  font-weight: 700;
  transition: border-color 0.15s var(--ease-standard), color 0.15s var(--ease-standard), transform 0.5s var(--ease-standard), background-color 0.15s var(--ease-standard), background-size 0.15s var(--ease-standard);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--accent-dark);
  color: #fff;
}

.btn.secondary {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  border-color: var(--accent);
  background: rgba(27, 116, 255, 0.08);
  color: var(--accent);
}

.car-visual,
.model-image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03)), radial-gradient(circle at 50% 60%, rgba(27, 116, 255, 0.5), transparent 40%);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(54px, 11vw, 150px);
  font-weight: 900;
  letter-spacing: 8px;
}

.car-visual img,
.model-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-vehicle {
  position: relative;
  height: clamp(260px, 36vw, 460px);
  min-height: 0;
  padding: clamp(22px, 4vw, 48px);
  background: radial-gradient(circle at 50% 72%, rgba(27, 116, 255, 0.45), transparent 36%), linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.hero-vehicle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.28));
}

.car-visual.light,
.model-image {
  border-color: var(--line);
  background: linear-gradient(145deg, #ffffff, #dfe9f8);
  color: rgba(17, 19, 24, 0.16);
}

.map-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: radial-gradient(circle at 78% 18%, rgba(27, 116, 255, 0.28), transparent 28%), linear-gradient(145deg, #ffffff, #dfe9f8);
  color: var(--text);
  padding: 30px;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 24px;
  background: linear-gradient(90deg, transparent 49%, rgba(17, 19, 24, 0.08) 50%, transparent 51%), linear-gradient(0deg, transparent 49%, rgba(17, 19, 24, 0.08) 50%, transparent 51%);
  background-size: 72px 72px;
}

.map-card > * {
  position: relative;
  z-index: 1;
}

.map-pin {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.map-pin svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.map-card h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -2px;
}

.map-card p {
  max-width: 420px;
  color: var(--muted);
}

.section {
  padding: 80px 5vw;
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.model-grid,
.feature-grid,
.showroom-layout,
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-card,
.feature-grid article,
.info-card,
.location-grid article,
.info-list p {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  padding: 24px;
}

.location-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.location-grid h3 {
  font-size: 18px;
}

.location-grid span,
.location-grid strong {
  display: block;
  margin-top: 10px;
}

.location-grid span {
  color: var(--accent);
  font-weight: 800;
}

.showroom-carousel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 20px;
}

.showroom-carousel article {
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.showroom-carousel article.active {
  display: grid;
}

.showroom-carousel img {
  width: 100%;
  min-height: 260px;
  border-radius: 24px;
  background: #eef3fb;
  object-fit: cover;
}

.map-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #eef3fb;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

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

.info-list p {
  margin: 0;
}

.model-image {
  height: 260px;
  min-height: 260px;
  margin-bottom: 22px;
  padding: 24px;
  background: radial-gradient(circle at 50% 78%, rgba(27, 116, 255, 0.24), transparent 40%), linear-gradient(145deg, #ffffff, #dfe9f8);
  font-size: 78px;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 220px;
  filter: drop-shadow(0 28px 24px rgba(17, 19, 24, 0.2));
}

.price {
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 8px;
}

.stat-row div,
.spec-grid div {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.stat-row strong,
.spec-grid strong {
  display: block;
  color: var(--text);
  font-size: 22px;
}

.stat-row span,
.spec-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

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

.small-actions {
  margin-top: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 90px 5vw;
  background: var(--dark);
  color: #fff;
  content-visibility: auto;
  contain-intrinsic-size: 1px 520px;
}

.split-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 120px 5vw 80px;
  background: linear-gradient(135deg, #05070b, #172235);
  color: #fff;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.showroom-layout {
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-list p {
  margin-bottom: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  padding: 42px 5vw;
  background: #05070b;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.brand-hero {
  position: relative;
  height: clamp(560px, 78vh, 760px);
  min-height: 0;
  overflow: hidden;
  background: #05070b;
  color: #fff;
}

.brand-hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  display: grid;
  align-items: center;
  padding: 100px 5vw 72px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-standard), visibility 0.5s var(--ease-standard);
}

.brand-hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.brand-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 11, 0.82), rgba(5, 7, 11, 0.26) 50%, rgba(5, 7, 11, 0.1)), linear-gradient(0deg, rgba(5, 7, 11, 0.78), transparent 42%);
}

.brand-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

[data-hero-panel="x9"] .brand-hero-bg {
  object-position: center bottom;
}

[data-hero-panel="g6"] .brand-hero-bg {
  object-position: center bottom;
}

.brand-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.brand-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.brand-hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.38);
  padding: 6px;
  backdrop-filter: blur(18px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: clamp(48px, 4vw, 64px);
  height: clamp(48px, 4vw, 64px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.34);
  color: #fff;
  cursor: pointer;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  transform: translateY(-50%);
  transition: border-color 0.15s var(--ease-standard), background-color 0.15s var(--ease-standard), transform 0.5s var(--ease-standard);
  backdrop-filter: blur(14px);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(27, 116, 255, 0.82);
}

.hero-arrow-prev {
  left: 28px;
}

.hero-arrow-next {
  right: 28px;
}

.video-section {
  background: #000;
  color: #fff;
}

.video-section h2 {
  color: #fff;
}

.video-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.video-player {
  display: block;
  width: 100%;
  max-height: 620px;
  border-radius: 18px;
  background: #05070b;
  object-fit: cover;
}

.brand-hero-controls button,
.model-tabs button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 9px 16px;
  font: inherit;
  font-weight: 800;
  transition: border-color 0.15s var(--ease-standard), background-color 0.15s var(--ease-standard), color 0.15s var(--ease-standard), transform 0.5s var(--ease-standard);
}

.brand-hero-controls button:hover,
.brand-hero-controls button:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.brand-hero-controls button.active,
.brand-hero-controls button.active:hover,
.brand-hero-controls button.active:focus-visible {
  background: #fff;
  color: var(--dark);
}

.model-tabs button {
  border-color: rgba(17, 19, 24, 0.14);
  color: var(--text);
}

.model-tabs button:hover,
.model-tabs button:focus-visible {
  border-color: var(--accent);
  background: rgba(27, 116, 255, 0.08);
  color: var(--accent);
}

.model-tabs button.active,
.model-tabs button.active:hover,
.model-tabs button.active:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.brand-hero .btn,
.price-section .btn,
.model-showcase .btn,
.service-cards .btn,
.contact-band .btn {
  border-radius: 4px;
}

.brand-about,
.contact-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  padding: 90px 5vw;
  background: #fff;
}

.brand-about {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: none;
  padding-top: 64px;
  padding-bottom: 48px;
}

.brand-about > div,
.brand-about > p {
  width: min(980px, 100%);
}

.brand-about > p {
  max-width: 900px;
}

.brand-about p:last-child,
.philosophy-section p {
  font-size: 19px;
}

.price-section {
  background: #f7f8fb;
  padding-top: 58px;
  padding-bottom: 44px;
}

.price-grid,
.service-cards,
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.price-grid article,
.service-cards article,
.value-grid article {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 28px;
}

.enhanced-price-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
  gap: 18px;
  min-height: 300px;
  align-items: end;
  border-radius: 24px;
  background: radial-gradient(circle at 86% 34%, rgba(27, 116, 255, 0.14), transparent 38%), #fff;
  padding: 30px;
}

.enhanced-price-grid img {
  width: min(660px, 118%);
  max-width: none;
  justify-self: end;
  align-self: end;
  margin: 0 -8% -8% 0;
  filter: drop-shadow(0 26px 24px rgba(17, 19, 24, 0.18));
}

.price-card-copy {
  position: relative;
  z-index: 1;
}

.price-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-highlights li {
  border: 1px solid rgba(27, 116, 255, 0.18);
  border-radius: 999px;
  background: rgba(27, 116, 255, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 10px;
}

.price-grid span,
.value-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.price-grid strong {
  display: block;
  color: var(--text);
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -1px;
}

.model-showcase {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #eef3fb);
  padding-top: 42px;
  text-align: center;
}

.model-tabs {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 32px;
  border-radius: 4px;
  background: rgba(17, 19, 24, 0.06);
  padding: 6px;
}

.model-panel {
  display: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  text-align: left;
}

.model-panel.active {
  display: grid;
  animation: tabFade 0.25s var(--ease-standard);
}

.model-panel img {
  width: min(1120px, 118%);
  max-width: none;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(17, 19, 24, 0.2));
}

.philosophy-section {
  padding: 110px 5vw;
  background: #05070b;
  color: #fff;
}

.philosophy-section p {
  max-width: 940px;
  color: rgba(255, 255, 255, 0.72);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  background: #f7f8fb;
  padding-top: 56px;
  padding-bottom: 56px;
}

.pillar-grid article {
  display: grid;
  min-height: 240px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #e4edf9);
  padding: clamp(20px, 2vw, 28px);
  transition: border-color 0.15s var(--ease-standard), transform 0.5s var(--ease-standard), box-shadow 0.15s var(--ease-standard);
}

.pillar-grid article:hover,
.pillar-grid article:focus-within {
  border-color: rgba(27, 116, 255, 0.32);
  box-shadow: 0 24px 60px rgba(17, 19, 24, 0.1);
  transform: translateY(-4px);
}

.pillar-grid span {
  display: block;
  margin-bottom: 40px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 2px;
}

.pillar-grid h3 {
  font-size: clamp(17px, 1.6vw, 22px);
}

.pillar-grid p {
  font-size: 15px;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.service-nav a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
}

.service-carousel article {
  display: none;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #e9eef7);
  padding: 32px;
}

.service-carousel article.active {
  display: grid;
  align-content: end;
}

.content-tabs {
  background: #fff;
}

.content-tabs.dark-product-section {
  background: #05070b;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.tab-list button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  padding: 11px 16px;
  font: inherit;
  font-weight: 800;
  transition: border-color 0.15s var(--ease-standard), background-color 0.15s var(--ease-standard), color 0.15s var(--ease-standard), transform 0.5s var(--ease-standard);
}

.dark-product-section .tab-list button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.tab-list button.active,
.tab-list button[aria-selected="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.tab-list button:hover,
.tab-list button:focus-visible {
  border-color: var(--accent);
  background: rgba(27, 116, 255, 0.08);
  color: var(--accent);
}

.tab-list button.active:hover,
.tab-list button.active:focus-visible,
.tab-list button[aria-selected="true"]:hover,
.tab-list button[aria-selected="true"]:focus-visible {
  background: var(--accent);
  color: #fff;
}

.dark-product-section .tab-list button:hover,
.dark-product-section .tab-list button:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.dark-product-section .tab-list button.active,
.dark-product-section .tab-list button[aria-selected="true"],
.dark-product-section .tab-list button.active:hover,
.dark-product-section .tab-list button.active:focus-visible,
.dark-product-section .tab-list button[aria-selected="true"]:hover,
.dark-product-section .tab-list button[aria-selected="true"]:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.tab-list button:focus-visible {
  outline: 3px solid rgba(27, 116, 255, 0.35);
  outline-offset: 3px;
}

.tab-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 32px;
  min-height: clamp(360px, 36vw, 540px);
  align-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s var(--ease-standard), transform 0.25s var(--ease-standard);
}

.tab-panel.active {
  opacity: 1;
  transform: translateY(0);
  animation: tabFade 0.25s var(--ease-standard);
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background: linear-gradient(145deg, #eef3fb, #dfe9f8);
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.04);
}

.spec-panel {
  grid-template-columns: 1fr;
}

@keyframes tabFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.requirement-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.requirement-list article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
}

.diagnostic-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: #eef3fb;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-standard), transform 0.5s var(--ease-standard);
}

.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-cards article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(145deg, #ffffff, #e9eef7);
}

.contact-band {
  background: #eef3fb;
}

.rich-footer {
  grid-template-columns: 1.2fr 0.8fr 1.3fr 0.8fr;
  align-items: start;
}

.rich-footer img {
  width: 118px;
  margin-bottom: 18px;
}

.rich-footer nav {
  display: grid;
  gap: 10px;
}

.rich-footer nav strong {
  color: #fff;
}

.rich-footer button,
.footer-contact > a[data-whatsapp] {
  border: 0;
  background: linear-gradient(#a4ce4c, #a4ce4c) left bottom / 0 2px no-repeat;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
  transition: color 0.5s ease-in-out, background-size 0.5s ease-in-out;
}

.rich-footer button:hover,
.rich-footer button:focus-visible,
.footer-contact > a[data-whatsapp]:hover,
.footer-contact > a[data-whatsapp]:focus-visible {
  color: #fff;
  background-size: 100% 2px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.product-intro,
.product-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  background: #fff;
}

.product-intro.section {
  padding-bottom: 36px;
}

.product-intro p:last-child,
.product-points p {
  font-size: 19px;
}

.product-image-band {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #eef3fb);
  padding-top: 24px;
  padding-bottom: 56px;
  text-align: center;
}

.product-image-band img {
  width: min(1120px, 100%);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 34px 30px rgba(17, 19, 24, 0.2));
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  background: #f7f8fb;
}

.product-feature-grid article {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 26px;
}

.product-feature-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.interior-carousel,
.media-blocks,
.variant-specs {
  background: #fff;
}

.interior-carousel article {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.interior-carousel article.active {
  display: grid;
}

.interior-carousel img,
.media-block img {
  width: 100%;
  border-radius: 18px;
  background: #eef3fb;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.carousel-controls button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  padding: 10px 16px;
}

.media-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
}

.media-block:nth-child(even) img {
  order: 2;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.variant-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
}

.variant-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.dark-product-section {
  background: #05070b;
  color: #fff;
}

.dark-product-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.product-points {
  display: grid;
  gap: 18px;
}

.product-specs {
  background: #fff;
}

.product-specs .spec-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.color-selector {
  overflow: hidden;
  background: #fff;
  text-align: center;
}

.color-selector h2 {
  margin-bottom: 34px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
}

.color-car-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(460px, 42vw, 620px);
}

.color-car-stage > span {
  position: absolute;
  left: 18%;
  top: 4%;
  color: rgba(17, 19, 24, 0.04);
  font-size: clamp(110px, 16vw, 230px);
  font-weight: 900;
  letter-spacing: -12px;
}

.color-car-stage img {
  position: relative;
  z-index: 1;
  width: min(1280px, 88vw);
  max-width: none;
  height: auto;
  object-fit: contain;
  transition: opacity 0.25s var(--ease-standard), transform 0.25s var(--ease-standard);
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}

.color-options button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 10px 16px;
  font: inherit;
}

.color-options button.active {
  background: rgba(17, 19, 24, 0.06);
}

.btn,
.menu-toggle,
.hero-arrow,
.brand-hero-controls button,
.model-tabs button,
.carousel-controls button,
.color-options button {
  transition: border-color 0.15s var(--ease-standard), color 0.15s var(--ease-standard), transform 0.5s var(--ease-standard), background-color 0.15s var(--ease-standard), box-shadow 0.15s var(--ease-standard);
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.carousel-controls button:hover,
.carousel-controls button:focus-visible,
.color-options button:hover,
.color-options button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background-color: rgba(27, 116, 255, 0.08);
}

@media (hover: hover) {
  .btn:hover,
  .menu-toggle:hover,
  .hero-arrow:hover,
  .brand-hero-controls button:hover,
  .model-tabs button:hover,
  .carousel-controls button:hover,
  .color-options button:hover {
    transform: scale(0.96);
  }

  .tab-list button:hover {
    transform: scale(0.96);
  }
}

.color-options span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.72), transparent 32%), var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.08);
}

.booking-hero {
  background: linear-gradient(135deg, #05070b, #162338 58%, #05070b);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  background: #f7f8fb;
}

.booking-form,
.booking-aside {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  font: inherit;
}

.checkbox-line {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500;
}

.checkbox-line input {
  width: auto;
  margin-top: 4px;
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 12px;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .language-switcher {
    width: auto;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .model-grid,
  .feature-grid,
  .feature-grid.three,
  .split-section,
  .showroom-layout,
  .showroom-carousel article,
  .location-grid,
  .stat-row,
  .spec-grid,
  .info-list,
  .contact-strip,
  .brand-about,
  .contact-band,
  .price-grid,
  .enhanced-price-grid article,
  .service-cards,
  .requirement-list,
  .diagnostic-band,
  .value-grid,
  .model-panel,
  .product-intro,
  .product-split,
  .product-feature-grid,
  .interior-carousel article,
  .media-block,
  .variant-grid,
  .booking-layout,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-specs .spec-grid {
    grid-template-columns: 1fr;
  }

  .color-car-stage {
    min-height: 320px;
  }

  .color-car-stage img {
    width: min(960px, 128vw);
  }

  .color-options {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .color-options button {
    flex: 0 0 auto;
  }

  .brand-hero,
  .brand-hero-slide {
    height: 100svh;
    min-height: 0;
  }

  .brand-hero-slide {
    align-items: end;
    padding: 92px 22px 96px;
  }

  .brand-hero-slide::after {
    background: linear-gradient(0deg, rgba(5, 7, 11, 0.9), rgba(5, 7, 11, 0.22) 70%, rgba(5, 7, 11, 0.48));
  }

  .brand-hero-controls {
    left: 50%;
    bottom: 32px;
  }

  .hero-arrow {
    top: auto;
    bottom: 28px;
    width: 44px;
    height: 44px;
    font-size: 34px;
    transform: none;
  }

  .hero-arrow-prev {
    left: 22px;
  }

  .hero-arrow-next {
    right: 22px;
  }

  .enhanced-price-grid img {
    width: min(760px, 124vw);
    justify-self: center;
    margin: -20px 0 -18% 0;
  }

  .model-panel {
    text-align: center;
  }

  .model-panel img {
    width: min(920px, 132vw);
    justify-self: center;
  }

  .model-panel .actions {
    justify-content: center;
  }

  .rich-footer {
    gap: 30px;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-bleed {
    height: 100svh;
    min-height: 0;
    padding-top: 84px;
    padding-bottom: 34px;
    align-content: end;
  }

  .brand-hero-bg,
  .hero-bg {
    object-position: center bottom;
  }

  .hero-bleed::after {
    background: linear-gradient(0deg, rgba(5, 7, 11, 0.88), rgba(5, 7, 11, 0.24) 68%, rgba(5, 7, 11, 0.5));
  }

  .product-hero::after {
    background: linear-gradient(0deg, rgba(5, 7, 11, 0.62), rgba(5, 7, 11, 0.12) 62%, rgba(5, 7, 11, 0.24));
  }

  .hero-bleed .hero-copy,
  .product-hero .hero-copy {
    max-width: none;
    text-align: left;
  }

  .hero-overlay-stats {
    grid-template-columns: 1fr;
  }

  .car-visual {
    min-height: 260px;
  }

  .hero-vehicle {
    height: 240px;
    min-height: 0;
  }

  .site-footer {
    align-items: start;
  }

  .tab-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .section,
  .split-section,
  .page-hero,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .actions,
  .btn {
    width: 100%;
  }

  .brand-hero-controls button {
    padding: 8px 12px;
  }

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

  .pillar-grid article {
    min-height: 180px;
  }
}
