/* ══════════════════════════════════════════════════
   BENTU BTE05 — style.css
   bentu.rs  |  © 2025 Bentu Motors d.o.o.
   ══════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --cream:      #EFF1F7;
  --cream2:     #E4E8F2;
  --white:      #FFFFFF;
  --navy:       #1A1B3E;
  --pink:       #D5BCCA;
  --mint:       #9AD6D5;
  --pearl:      #D3D7E3;
  --blue:       #2196C9;
  --blue-lt:    #E8F6FD;
  --blue-hero:  #C5E8F7;
  --text:       #1A1B3E;
  --muted:      #7B82A0;
  --border:     rgba(26,27,62,0.1);
  --danger:     #E74C3C;
  --success:    #27AE60;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 8px 0;
  transition: left .2s;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ── UTILITY ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue); border: 1.5px solid var(--blue);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

.h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(40px, 8vw, 116px); line-height: .9;
  letter-spacing: -.03em; text-transform: uppercase;
}
.h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(32px, 6vw, 80px); line-height: .92;
  letter-spacing: -.02em; text-transform: uppercase;
}
.break-slogs {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.h3 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(22px, 3vw, 32px); letter-spacing: -.01em;
}
.body {
  font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--muted);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--navy); color: var(--white);
  padding: 16px 32px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,27,62,.2); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ══════════ NAV ══════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  border-bottom: 1px solid transparent;
  transition: transform .3s ease, background .3s, border-color .3s, box-shadow .3s;
}
nav.nav-hidden {
  transform: translateY(-100%);
}
nav.scrolled {
  background: rgba(239,241,247,0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(26,27,62,.08);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; width: 100%;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 26px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy);
  display: flex; align-items: center; gap: 3px;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo span { color: #fff; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  gap: 5px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,.15); }
.nav-hamburger:focus { outline: 2px solid rgba(255,255,255,.5); outline-offset: 2px; }
.nav-hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
nav.scrolled .nav-hamburger-line { background: var(--navy); }
nav.scrolled .nav-hamburger:hover { background: rgba(26,27,62,.08); }

/* Off-canvas drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,27,62,.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw);
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 9999;
  box-shadow: -8px 0 32px rgba(26,27,62,.15);
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer-inner {
  padding: 28px 24px 32px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  min-height: 100%;
}
@media (max-width: 768px) {
  .nav-drawer {
    width: min(320px, 85vw);
    max-width: none;
    left: auto;
    right: 0;
  }
  .nav-drawer-inner {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom, 0));
  }
  .nav-drawer-cta {
    margin-top: auto;
    padding-top: 16px;
  }
}
.nav-drawer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 26px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: flex; align-items: center; gap: 3px;
}
.nav-drawer-logo span { color: var(--blue); }
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}
.nav-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: rgba(26, 27, 62, 0.08);
  color: var(--navy);
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.nav-drawer-close:hover {
  background: rgba(26, 27, 62, 0.12);
  color: var(--blue);
}
.nav-drawer-close:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.nav-drawer-close svg {
  display: block;
}
.nav-drawer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-drawer-links a {
  display: block;
  padding: 12px 14px;
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.nav-drawer-links a:hover { background: var(--blue-lt); color: var(--blue); }
.nav-drawer-links a.active { background: rgba(33,150,201,.18); color: var(--navy); font-weight: 700; }
.nav-drawer-dropdown details summary {
  list-style: none;
  display: block;
  padding: 12px 14px;
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy);
  border-radius: 10px;
  cursor: pointer;
}
.nav-drawer-dropdown details summary::-webkit-details-marker { display: none; }
.nav-drawer-dropdown details[open] summary { background: var(--blue-lt); color: var(--blue); }
.nav-drawer-dropdown-menu {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer-dropdown-menu a {
  font-size: 13px;
  letter-spacing: .05em;
}
.nav-drawer-cta {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 12px;
}
.nav-drawer-cta .btn { padding: 14px 20px; font-size: 13px; }

/* Open state */
nav.menu-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}
nav.menu-open .nav-drawer { transform: translateX(0); }
nav.menu-open .nav-hamburger .nav-hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.menu-open .nav-hamburger .nav-hamburger-line:nth-child(2) {
  opacity: 0;
}
nav.menu-open .nav-hamburger .nav-hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body.nav-drawer-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  touch-action: none;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; transition: color .2s, border-color .2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.nav-links a:hover { color: #fff; border-bottom-color: rgba(255,255,255,.85); }
.nav-links a.active { color: #fff; border-bottom-color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown details { position: relative; }
.nav-dropdown summary {
  list-style: none;
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: '▾';
  font-size: 11px;
  line-height: 1;
}
.nav-dropdown details[open] summary,
.nav-dropdown summary:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.85);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 180px;
  list-style: none;
  padding: 10px;
  margin: 0;
  background: rgba(26,27,62,.95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  z-index: 20;
}
.nav-dropdown details[open] .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  border-radius: 8px;
  padding: 8px 10px;
  border-bottom: none;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(255,255,255,.14);
  border-bottom-color: transparent;
}
.nav-cta { display: flex; gap: 12px; flex-shrink: 0; }
nav .nav-cta .btn-outline {
  color: #fff;
  border-color: #fff;
}
nav .nav-cta .btn-outline:hover {
  background: #fff;
  color: #2196c9;
}
nav .nav-cta .btn-blue,
nav .nav-cta .btn-blue:hover {
  background: #fff;
  color: #2196c9;
}
nav.scrolled .nav-logo span { color: var(--blue); }
nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover { color: var(--navy); border-bottom-color: var(--blue); }
nav.scrolled .nav-links a.active { color: var(--navy); border-bottom-color: var(--blue); }
nav.scrolled .nav-dropdown summary { color: var(--muted); }
nav.scrolled .nav-dropdown details[open] summary,
nav.scrolled .nav-dropdown summary:hover { color: var(--navy); border-bottom-color: var(--blue); }
nav.scrolled .nav-dropdown-menu {
  background: #fff;
  border-color: rgba(26,27,62,.12);
  box-shadow: 0 12px 30px rgba(26,27,62,.14);
}
nav.scrolled .nav-dropdown-menu a:hover,
nav.scrolled .nav-dropdown-menu a.active {
  background: var(--blue-lt);
}
nav.scrolled .nav-cta .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}
nav.scrolled .nav-cta .btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
nav.scrolled .nav-cta .btn-blue,
nav.scrolled .nav-cta .btn-blue:hover {
  background: var(--blue);
  color: #fff;
}

/* ══════════ NEW HERO — MICROLINO-STYLE ══════════ */
.new-hero {
  --hero-slide-color: #2196c9;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  background: var(--hero-slide-color);
  transition: background 1.5s ease;
}
.new-hero.is-dragging {
  cursor: grabbing;
  padding-top: 72px;
}
.new-hero-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #FFFFFF00 60%);
  pointer-events: none; will-change: transform; z-index: 1;
  transition: background 1.5s ease;
}
.new-hero-content {
  position: relative; width: 100%;
  display: flex; align-items: center; justify-content: center;
  min-height: 70vh; z-index: 2;
}
.hero-title-combined {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(44px, 13vw, 190px);
  text-transform: uppercase; color: white;
  letter-spacing: -.04em; line-height: 1;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, var(--hero-title-y, -50%));
  z-index: 2; will-change: transform; user-select: none;
  text-shadow: 0 4px 30px rgba(26,27,62,0.06);
  white-space: nowrap;
  text-align: center;
  max-width: 96vw;
}
.hero-title-combined span {
  display: inline-block;
  margin-left: .14em;
}
.hero-title-combined--model {
  white-space: normal;
}
.hero-title-combined .hero-model-label {
  display: block;
  margin-left: 0;
  margin-top: 0.08em;
  font-size: 1em;
  letter-spacing: -.04em;
  font-weight: 800;
  opacity: 1;
  text-shadow: 0 4px 30px rgba(26,27,62,0.06);
}

.new-hero-car {
  position: relative; z-index: 5;
  width: clamp(260px, 42vw, 560px);
  will-change: transform;
  overflow: visible;
}
.hero-car-slide {
  width: 100%; height: auto;
  filter: drop-shadow(0 40px 60px rgba(26,27,62,0.25));
  position: relative; z-index: 5;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.hero-car-slide.entering {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  transform: translate3d(var(--hero-enter-x, 140%), 0, 0) scale(.3);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(.22,.61,.36,1);
}
.hero-car-slide.entering.active {
  transform: translate3d(0, 0, 0) scale(1);
  animation: heroCarEnterOpacity 1.5s linear forwards;
}
.hero-car-slide.leaving {
  z-index: 7;
  transform: translate3d(var(--hero-leave-x, -140%), 0, 0) scale(.3);
  transition: transform 1.5s cubic-bezier(.22,.61,.36,1);
  animation: heroCarLeaveOpacity 1.5s linear forwards;
}
@keyframes heroCarEnterOpacity {
  0% { opacity: 0; }
  12%, 100% { opacity: 1; }
}
@keyframes heroCarLeaveOpacity {
  0%, 88% { opacity: 1; }
  100% { opacity: 0; }
}
.hero-slide-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: rgba(255,255,255,.2);
  z-index: 12;
  overflow: hidden;
}
.hero-slide-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.95);
  transform-origin: left center;
  transform: scaleX(0);
}
@keyframes heroSlideProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.car-shadow {
  position: absolute; bottom: -16px; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 80px;
  background: radial-gradient(ellipse, rgb(0 0 0 / 48%) 0%, transparent 70%);
  border-radius: 50%; z-index: 4;
}
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  animation: bounceDown 2s ease infinite;
}
.swipe-hint {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,27,62,.5);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
}
.swipe-hint.is-active {
  animation: swipeHintAnim 2.5s ease 2s forwards;
}
.swipe-hint.is-active .swipe-hint-hand {
  animation: swipeHandSlide 1.5s ease 2s 3;
}
.swipe-hint-text {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
@keyframes swipeHintAnim {
  0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
  15% { opacity: 1; transform: translateX(-50%) translateY(0); }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(-6px); }
}
@keyframes swipeHandSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
}
.scroll-hint span {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: #fff;
}
.scroll-hint-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ══════════ HERO (second section) ══════════ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  position: relative; overflow: hidden;
  padding: clamp(24px, 4vw, 56px) 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(154,214,213,.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-circle {
  position: absolute; right: -10%; top: 50%; transform: translateY(-50%);
  width: 70vw; height: 70vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(154,214,213,.15) 0%, rgba(211,215,227,.12) 50%, transparent 70%);
  pointer-events: none;
}
.hero-left {
  padding: clamp(40px, 5vw, 80px) clamp(20px, 4vw, 56px) clamp(40px, 5vw, 80px) clamp(20px, 5vw, 80px);
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  overflow: visible;
  min-width: 0;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--blue); display: block; flex-shrink: 0;
}
.hero-title  { margin-bottom: 28px; }
.hero-title .line2 { color: var(--blue); display: block; }
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: var(--muted); max-width: 420px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-price-teaser {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
  margin-top: 20px;
  margin-bottom: 0;
}
.hero-price-teaser strong {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--navy);
}
.hero-price-teaser-note {
  display: block;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 4px;
}
/* Hero price block — aligned with hero-sub, hero-stats, hero-eyebrow */
.hero-price-block {
  margin-top: 36px;
  padding: 0;
  max-width: 480px;
  min-width: 0;
  overflow: visible;
}
.hero-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--navy);
}
.hero-price-row:first-child { padding-top: 0; }
.hero-price-row--regular,
.hero-price-row--regular .hero-price-label {
  color: var(--muted);
}
.hero-price-row--regular .hero-price-num {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--muted);
  text-decoration: line-through;
}
.hero-price-row--discount .hero-price-label {
  color: var(--navy);
  font-weight: 400;
}
.hero-price-row--discount .hero-price-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
}
.hero-price-row--subvencija .hero-price-label {
  color: var(--navy);
  font-weight: 400;
}
.hero-price-row--subvencija .hero-price-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}
.hero-price-label { flex-shrink: 0; }
.hero-price-num { font-variant-numeric: tabular-nums; }

.hero-price-promo {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 40px 22px 24px;
  margin: 20px 0 22px;
  box-shadow: 0 4px 24px rgba(26,27,62,.08);
  border: 1.5px solid var(--border);
  min-width: 0;
  overflow: visible;
}
.hero-price-promo-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  font-weight: 400;
}
.hero-price-promo-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px);
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--navy);
  padding-right: 12px;
  display: inline-block;
  min-width: 0;
  overflow: visible;
}
.hero-price-promo-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 10px;
}

.hero-price-accordion {
  margin-top: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.hero-price-accordion-summary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
}
.hero-price-accordion-summary::-webkit-details-marker { display: none; }
.hero-price-accordion-summary::after {
  content: '+';
  float: right;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
}
.hero-price-accordion[open] .hero-price-accordion-summary::after { content: '−'; }
.hero-price-accordion-list {
  margin: 0;
  padding: 0 0 6px;
  list-style: none;
}
.hero-price-accordion-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--navy);
  border-top: 1px solid var(--border);
}
.hero-price-accordion-list li .hero-price-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.hero-stats {
  display: flex; margin-top: 32px;
  border: 1.5px solid var(--border); border-radius: 16px;
  overflow: hidden; background: var(--white); flex-wrap: wrap;
}
.hero-stat {
  flex: 1; min-width: 100px; padding: 20px 16px; text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(24px, 3vw, 32px); color: var(--navy); line-height: 1;
}
.stat-num sup { font-size: .5em; color: var(--blue); vertical-align: super; }
.stat-lbl { font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: .06em; text-transform: uppercase; }

.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: flex-end;
  min-height: clamp(360px, 50vw, 700px);
  padding: clamp(16px, 3vw, 40px) clamp(10px, 3vw, 48px) clamp(16px, 3vw, 40px) clamp(6px, 1.2vw, 20px);
  overflow: visible;
}
.hero-car-wrap {
  width: 100%; max-width: 920px;
  position: relative; border-radius: 24px; overflow: visible;
  margin-left: 0;
}
.hero-car-wrap img {
  width: 100%; height: auto; object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(26,27,62,.12));
  transition: transform 8s ease;
}
.hero-car-wrap img.hero-car-entrance {
  max-width: 100%;
  transform: translate3d(var(--hero-car-x, 130%), 0, 0);
  transition: transform .2s linear;
}
.hero-car-wrap:hover img { transform: scale(1.03); }
.hero-car-wrap:hover img.hero-car-entrance {
  transform: translate3d(var(--hero-car-x, 130%), 0, 0) scale(1.03);
}
.hero-pill {
  position: absolute; bottom: 0; left: -20px;
  background: var(--white); border-radius: 14px;
  padding: 18px 24px; box-shadow: 0 12px 40px rgba(26,27,62,.12);
  display: flex; align-items: center; gap: 14px; z-index: 3;
  border: 1.5px solid var(--border);
}
.pill-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-lt); display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.pill-val { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; color: var(--navy); }
.pill-lbl { font-size: 12px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.hero-pill2 {
  position: absolute; top: 80px; right: -10px;
  background: var(--navy); border-radius: 14px;
  padding: 14px 20px; box-shadow: 0 12px 40px rgba(26,27,62,.2);
  color: white; text-align: center; z-index: 3;
}
.pill2-val {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 22px; color: var(--mint); line-height: 1;
}
.pill2-lbl { font-size: 10px; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }

/* ══════════ TICKER ══════════ */
.ticker { background: var(--navy); padding: 14px 0; overflow: hidden; }
.ticker-inner {
  display: flex; gap: 48px; white-space: nowrap;
  animation: tick 22s linear infinite;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mint); display: flex; align-items: center; gap: 24px; flex-shrink: 0;
}
.tick-item::after { content: '✦'; font-size: 9px; color: rgba(154,214,213,.5); }

/* ══════════ COLORS SECTION — SLIDESHOW & LIGHTBOX ══════════ */
.colors-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--white);
}
.colors-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; flex-wrap: wrap; gap: 20px;
}
.color-showcase {
  display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center;
}
.color-main-img {
  height: 380px; border-radius: 24px; overflow: hidden;
  position: relative; background: var(--cream);
  transition: background .4s; cursor: pointer;
}
.color-main-img img {
  width: 100%; height: 100%; object-fit: contain;
  transition: opacity .4s, transform .5s;
}
.color-main-img:hover img { transform: scale(1.03); }

.slideshow-controls {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 20px;
}
.slide-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: all .3s; padding: 0;
}
.slide-dot.active { background: var(--blue); transform: scale(1.2); }
.slide-prev, .slide-next {
  background: var(--cream); border: 1.5px solid var(--border);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--navy); transition: all .3s;
}
.slide-prev:hover, .slide-next:hover { background: var(--blue); color: white; border-color: var(--blue); }

.color-thumbs { display: flex; flex-direction: column; gap: 20px; }
.color-card {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  border: 2px solid transparent; border-radius: 16px;
  cursor: pointer; transition: all .3s; background: var(--cream);
}
.color-card:hover,
.color-card.active {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 8px 32px rgba(33,150,201,.12);
}
.color-swatch {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.color-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; }
.color-sub  { font-size: 13px; color: var(--muted); margin-top: 2px; }
.color-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--border);
  margin-left: auto; flex-shrink: 0; transition: background .3s;
}
.color-card.active .color-dot { background: var(--blue); }

/* ══════════ LIGHTBOX ══════════ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,27,62,0.92);
  backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.lightbox-overlay.active { display: flex; opacity: 1; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 20px; object-fit: contain;
  animation: lbZoom .3s ease;
}
@keyframes lbZoom { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none;
  color: white; font-size: 28px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none;
  color: white; font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ══════════ PARALLAX PHOTO STRIP ══════════ */
.parallax-strip {
  --par-video-scale: 1.2;
  height: 70vh;
  position: relative;
  overflow: hidden;
  background: #000;
}
.parallax-strip .par-bg {
  position: absolute; top: -40%; left: 0; right: 0; height: 180%;
  background: #000;
  will-change: transform;
}
.parallax-strip .par-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.parallax-strip .par-bg iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--par-video-scale));
  transform-origin: center center;
}
@media (max-width: 1400px) {
  .parallax-strip { --par-video-scale: 1.3; }
}
@media (max-width: 1100px) {
  .parallax-strip { --par-video-scale: 1.6; }
}
@media (max-width: 768px) {
  .parallax-strip { --par-video-scale: 2; }
}
@media (max-width: 600px) {
  .parallax-strip { --par-video-scale: 3; }
}
.parallax-strip .par-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(239,241,247,.3) 0%, rgba(26,27,62,.55) 100%);
  display: flex; align-items: flex-end;
  padding: clamp(30px, 5vw, 60px) clamp(20px, 5vw, 80px);
}
.par-text {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(28px, 6vw, 80px); text-transform: uppercase;
  color: white; line-height: .9; letter-spacing: -.02em;
}
.par-text em { color: var(--mint); font-style: normal; }

/* ══════════ FEATURES PHOTO SECTION ══════════ */
.features-photos { padding: 0; }
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 480px;
}
.feat-row.reverse { direction: rtl; }
.feat-row.reverse > * { direction: ltr; }
.feat-photo { overflow: hidden; position: relative; }
.feat-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.feat-photo:hover img { transform: scale(1.04); }
.feat-copy {
  padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.feat-copy.bg-navy  { background: var(--navy); color: white; }
.feat-copy.bg-navy .body { color: rgba(255,255,255,.6); }
.feat-copy.bg-navy .tag  { color: var(--mint); border-color: var(--mint); }
.feat-copy.bg-navy .tag::before { background: var(--mint); }
.feat-copy.bg-pink  { background: #F7EEF3; }
.feat-copy.bg-mint  { background: #EBF9F9; }
.feat-copy.bg-pearl { background: #F0F2F8; }
.feat-icon-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.feat-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(26,27,62,.06); border-radius: 100px;
  padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--navy);
}
.feat-chip .ci { color: var(--blue); font-size: 15px; }

.charge-map-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
  background:
    radial-gradient(120% 80% at 10% 0%, rgba(33,150,201,.08) 0%, rgba(33,150,201,0) 60%),
    radial-gradient(85% 65% at 90% 100%, rgba(154,214,213,.14) 0%, rgba(154,214,213,0) 64%),
    var(--white);
}
.charge-map-header { margin-bottom: clamp(24px, 4vw, 40px); }
.charge-map-frame-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(26,27,62,.1);
  box-shadow: 0 24px 60px rgba(26,27,62,.1);
  background: var(--white);
}
.charge-map-frame {
  width: 100%;
  height: clamp(520px, 68vh, 760px);
  border: 0;
  display: block;
}

/* ══════════ WARRANTY SECTION (Garantni rokovi) ══════════ */
.warranty-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--cream);
}
.warranty-inner { max-width: 1200px; margin: 0 auto; }
.warranty-header { margin-bottom: 48px; }
.warranty-header .h2 { color: var(--navy); }
.warranty-subtitle {
  font-family: 'DM Mono', monospace;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 12px;
}
/* Početna: istaknuti blok 2 / 5 godina (Cargo/Family zadržavaju tabelu) */
.warranty-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: var(--muted); max-width: 520px; margin-top: 16px; margin-bottom: 0;
}
.warranty-highlight {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 40px;
}
.warranty-highlight-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 24px rgba(26,27,62,.06);
}
.warranty-highlight-card--battery {
  border-color: rgba(33,150,201,.25);
  background: linear-gradient(180deg, var(--white) 0%, rgba(232,246,253,.4) 100%);
}
.warranty-highlight-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(48px, 8vw, 72px); line-height: 1;
  letter-spacing: -.03em; color: var(--navy);
  display: block;
}
.warranty-highlight-card--battery .warranty-highlight-num { color: var(--blue); }
.warranty-highlight-unit {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 20px; color: var(--navy);
  display: block; margin-top: 4px;
}
.warranty-highlight-card--battery .warranty-highlight-unit { color: var(--blue); }
.warranty-highlight-whichever {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400;
  color: var(--muted); display: block; margin-top: 4px; font-style: italic;
}
.warranty-highlight-card--battery .warranty-highlight-whichever { color: rgba(33,150,201,.8); }
.warranty-highlight-label {
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 18px; color: var(--navy);
  display: block; margin-top: 16px;
}
.warranty-highlight-desc {
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300;
  line-height: 1.6; color: var(--muted);
  margin-top: 10px; margin-bottom: 0;
}
.warranty-credit {
  font-family: 'DM Mono', monospace;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 32px; margin-bottom: 0;
}
@media (max-width: 700px) {
  .warranty-highlight { grid-template-columns: 1fr; }
  .warranty-highlight-card { padding: 28px 24px; }
}
.warranty-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(26,27,62,.06);
}
.warranty-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.warranty-table thead {
  background: var(--navy);
  color: var(--white);
}
.warranty-table th {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.warranty-table th:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.warranty-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.warranty-table tbody tr:last-child { border-bottom: none; }
.warranty-table tbody tr:hover { background: var(--cream); }
.warranty-table td {
  padding: 14px 20px;
  color: var(--text);
  vertical-align: top;
}
.warranty-table td:first-child,
.warranty-table td:nth-child(3) {
  font-weight: 500;
  color: var(--navy);
}
.warranty-table td:nth-child(2),
.warranty-table td:nth-child(4) {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--muted);
}
.warranty-table td:not(:last-child) { border-right: 1px solid var(--border); }
@media (max-width: 900px) {
  .warranty-table th,
  .warranty-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  .warranty-table td:nth-child(2),
  .warranty-table td:nth-child(4) { font-size: 12px; }
}

/* Warranty table — mobile: kartice, jedna kolona */
@media (max-width: 768px) {
  .warranty-section { padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 24px); }
  .warranty-header { margin-bottom: 32px; }
  .warranty-table-wrap {
    border-radius: 20px;
    overflow-x: visible;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .warranty-table thead { display: none; }
  .warranty-table tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    margin-bottom: 12px;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(26, 27, 62, 0.06);
    border: 1px solid var(--border);
    transition: box-shadow .25s ease, border-color .25s ease;
  }
  .warranty-table tbody tr:last-child { margin-bottom: 0; }
  .warranty-table tbody tr:hover {
    box-shadow: 0 8px 24px rgba(26, 27, 62, 0.08);
    border-color: rgba(33, 150, 201, 0.2);
  }
  .warranty-table td {
    display: block;
    padding: 0;
    border: none !important;
    border-right: none !important;
    font-size: 14px;
  }
  /* Prvi par: kartica unutar reda */
  .warranty-table td:nth-child(1) {
    font-weight: 600;
    color: var(--navy);
    padding: 14px 18px 6px;
    font-size: 14px;
    line-height: 1.4;
  }
  .warranty-table td:nth-child(1)::before {
    content: 'Stavka';
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
    padding: 3px 8px;
    background: rgba(33, 150, 201, 0.1);
    border-radius: 6px;
  }
  .warranty-table td:nth-child(2) {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: var(--muted);
    padding: 0 18px 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border) !important;
    line-height: 1.4;
  }
  .warranty-table td:nth-child(2)::before {
    content: 'Garantni rok';
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  /* Drugi par: kartica unutar reda */
  .warranty-table td:nth-child(3) {
    font-weight: 600;
    color: var(--navy);
    padding: 0 18px 6px;
    font-size: 14px;
    line-height: 1.4;
  }
  .warranty-table td:nth-child(3)::before {
    content: 'Stavka';
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
    padding: 3px 8px;
    background: rgba(33, 150, 201, 0.1);
    border-radius: 6px;
  }
  .warranty-table td:nth-child(4) {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: var(--muted);
    padding: 0 18px 16px;
    margin-bottom: 0;
    border-bottom: none !important;
    line-height: 1.4;
  }
  .warranty-table td:nth-child(4)::before {
    content: 'Garantni rok';
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
}

/* ══════════ SPECS SECTION ══════════ */
.specs-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--navy); position: relative; overflow: hidden;
}
.specs-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(154,214,213,.08) 0%, transparent 70%);
  pointer-events: none;
}
.specs-header { margin-bottom: 72px; }
.specs-header .h2    { color: white; }
.specs-header .h2 em { color: var(--mint); font-style: normal; }
.specs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08); border-radius: 20px; overflow: hidden;
  margin-bottom: 64px;
}
.spec-block {
  background: rgba(255,255,255,.04);
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 32px);
  transition: background .3s;
}
.spec-block:hover { background: rgba(255,255,255,.08); }
.spec-big {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(28px, 5vw, 64px); color: white; line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.spec-big span { font-size: .45em; color: var(--mint); font-weight: 500; }
.spec-desc { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; }
.mini-specs-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mini-table {
  background: rgba(255,255,255,.04); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.mini-table-head {
  padding: 16px 20px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--mint);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mini-table-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,.06);
  gap: 12px; flex-wrap: wrap;
}
.mini-table-row:last-child { border-bottom: none; }
.mtr-key { font-size: 13px; color: rgba(255,255,255,.5); }
.mtr-val { font-family: 'DM Mono', monospace; font-size: 13px; color: white; text-align: right; }

/* ══════════ VERSIONS ══════════ */
.versions-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--cream);
}
.versions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 64px; }
.version-card {
  border-radius: 24px; overflow: hidden;
  border: 2px solid var(--border); background: var(--white);
  transition: transform .3s, box-shadow .3s;
}
.version-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(26,27,62,.12); }
.version-img { height: 320px; overflow: hidden; background: var(--cream); position: relative; }
.version-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.version-body { padding: clamp(24px, 3vw, 36px); }
.version-tag {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 16px;
}
.version-tag.family { background: rgba(154,214,213,.2); color: #2A8B8A; }
.version-tag.cargo  { background: rgba(26,27,62,.08);    color: var(--navy); }
.version-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(28px, 3vw, 36px); text-transform: uppercase; margin-bottom: 8px;
}
.version-sub  { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.version-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.version-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text); font-weight: 400;
}
.version-list li::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: var(--mint); color: #1a5a5a; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ══════════ SAFETY ══════════ */
.safety-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--white);
}
.safety-pillars {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 64px;
}
.safety-pillar {
  text-align: center; padding: 36px 20px;
  border-radius: 20px; background: var(--cream);
  border: 1.5px solid transparent; transition: all .3s;
}
.safety-pillar:hover {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 12px 40px rgba(33,150,201,.1); transform: translateY(-4px);
}
.safety-badge {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 28px; color: var(--navy); line-height: 1; margin-bottom: 10px;
}
.safety-lbl {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.safety-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
.safety-cta {
  margin-top: 64px; padding: clamp(28px, 4vw, 48px);
  background: var(--navy); border-radius: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.safety-cta-text {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(20px, 3.5vw, 44px); text-transform: uppercase;
  color: white; line-height: .95; text-align: left;
}
.safety-cta-text em { color: var(--mint); font-style: normal; display: block; }

/* ══════════ GALLERY ══════════ */
.gallery-section {
  padding: 0 clamp(20px, 5vw, 80px) clamp(60px, 8vw, 120px);
  background: var(--cream);
}
.gallery-title-row {
  padding: 80px 0 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.g-cell { border-radius: 16px; overflow: hidden; background: var(--white); }
.g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g-cell:hover img { transform: scale(1.06); }
.g-cell:nth-child(1) { grid-column: span 5; }
.g-cell:nth-child(2) { grid-column: span 3; }
.g-cell:nth-child(3) { grid-column: span 4; }
.g-cell:nth-child(4) { grid-column: span 4; }
.g-cell:nth-child(5) { grid-column: span 5; }
.g-cell:nth-child(6) { grid-column: span 3; }

/* ══════════ PARALLAX MID ══════════ */
.parallax-mid { height: 65vh; position: relative; overflow: hidden; }
.parallax-mid .par-img {
  position: absolute; top: -30%; left: 0; right: 0; height: 160%;
  will-change: transform;
}
.parallax-mid .par-img picture { width: 100%; height: 100%; display: block; }
.parallax-mid .par-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.parallax-mid .par-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,27,62,.7) 0%, rgba(26,27,62,.2) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(20px, 5vw, 80px);
}
.par-title {
  font-family: 'Syne', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: clamp(32px, 7vw, 100px); color: white; line-height: .9;
  letter-spacing: -.03em; margin-bottom: 24px;
}
.par-title em { color: var(--mint); font-style: normal; }
.par-sub { font-size: 18px; color: rgba(255,255,255,.7); max-width: 420px; line-height: 1.6; }

/* ══════════ FAQ ══════════ */
.faq-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--white);
}
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(32px, 5vw, 80px); margin-top: 64px; }
.faq-sticky { position: sticky; top: 96px; height: fit-content; }
.faq-sticky-img { height: 280px; border-radius: 20px; overflow: hidden; margin-bottom: 32px; }
.faq-sticky-img img { width: 100%; height: 100%; object-fit: contain; background: var(--cream); padding: 16px; }
.sub-box {
  background: var(--navy); border-radius: 20px; padding: 28px;
  color: white; margin-top: 24px;
}
.sub-box-tag { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--mint); margin-bottom: 8px; }
.sub-box-val { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 48px; color: var(--mint); line-height: 1; }
.sub-box-lbl { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.5; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; gap: 20px;
  font-weight: 500; font-size: 16px; color: var(--text); transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--navy); transition: all .3s;
}
.faq-item.open .faq-icon { background: var(--blue); color: white; border-color: var(--blue); transform: rotate(45deg); }
.faq-a {
  font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.75;
  padding-bottom: 22px; display: none;
}
.faq-item.open .faq-a { display: block; }

/* ══════════ REVIEWS ══════════ */
.reserve-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--cream);
}
.reserve-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.reserve-left .tag { margin-bottom: 8px; }
.reserve-left .h2 { margin-bottom: 16px; }
.reserve-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.reserve-right {
  background: var(--white);
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 36px);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(26,27,62,.08);
  border: 1px solid var(--border);
}
.reserve-right .reserve-form .f-input,
.reserve-right .reserve-form .f-textarea {
  background: var(--cream);
  border-color: var(--border);
  color: var(--navy);
}
.reserve-right .reserve-form .f-input::placeholder,
.reserve-right .reserve-form .f-textarea::placeholder { color: var(--muted); }
.reserve-right .reserve-form .f-input:focus,
.reserve-right .reserve-form .f-textarea:focus {
  border-color: var(--blue);
  background: #fff;
}
.reserve-right .reserve-tab {
  background: var(--cream);
  border-color: var(--border);
  color: var(--muted);
}
.reserve-right .reserve-tab:hover { border-color: var(--blue); color: var(--navy); }
.reserve-right .reserve-tab.active {
  border-color: var(--blue);
  background: var(--blue-lt);
  color: var(--blue);
}
.reserve-right .reserve-color-label { color: var(--navy); }
.reserve-right .reserve-color-opt { color: var(--navy); }
@media (max-width: 960px) {
  .reserve-inner { grid-template-columns: 1fr; }
}

.reviews-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--cream2); overflow: hidden;
}
.reviews-scroll {
  display: flex; gap: 24px; margin-top: 60px;
  overflow-x: auto; padding-bottom: 16px;
  scrollbar-width: thin; scrollbar-color: var(--blue) var(--cream);
  -webkit-overflow-scrolling: touch;
}
.review-card {
  flex-shrink: 0; width: clamp(260px, 75vw, 320px); background: var(--white);
  border-radius: 20px; padding: 32px 28px;
  border: 1.5px solid var(--border); transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,27,62,.1); }
.review-stars { color: #F59E0B; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.review-author { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); }
.review-author strong {
  color: var(--navy); display: block; margin-bottom: 2px;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
}

/* ══════════ CTA / CONTACT ══════════ */
.cta-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
.cta-left {
  background: var(--mint);
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 64px);
  display: flex; flex-direction: column; justify-content: space-between;
}
.cta-left-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(32px, 5vw, 64px); text-transform: uppercase;
  color: var(--navy); letter-spacing: -.02em; line-height: .9; margin-bottom: 20px;
}
.cta-left-sub { font-size: 16px; color: rgba(26,27,62,.65); line-height: 1.6; max-width: 360px; margin-bottom: 36px; }
.cta-left-img {
  width: 100%; height: 200px; object-fit: contain;
  border-radius: 16px; background: rgba(26,27,62,.06);
}
.btn-navy { background: var(--navy); color: white; }
.cta-right {
  background: var(--navy);
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 64px);
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.cta-right .h3  { color: white; margin-bottom: 8px; }
.cta-right .body { color: rgba(255,255,255,.5); margin-bottom: 20px; }
.contact-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-bottom: 32px;
}
.contact-col { display: flex; flex-direction: column; gap: 14px; }
.c-line {
  display: flex; align-items: center; gap: 14px;
  font-family: 'DM Mono', monospace; font-size: 13px;
  color: rgba(255,255,255,.7); word-break: break-word;
}
.c-line .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(154,214,213,.15); border: 1px solid rgba(154,214,213,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.c-line a {
  color: inherit; text-decoration: none;
  transition: color .2s;
}
.c-line a:hover { color: rgba(154,214,213,.95); }
@media (max-width: 720px) {
  .contact-lines { grid-template-columns: 1fr; }
}

/* ── CONTACT FORM ── */
.form-rows { display: flex; flex-direction: column; gap: 12px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.f-input,
.f-textarea {
  width: 100%; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  padding: 0 16px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: rgba(255,255,255,.9); letter-spacing: .02em;
  transition: border-color .2s, background .2s;
  outline: none;
}
.f-input::placeholder,
.f-textarea::placeholder {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,.3); letter-spacing: .08em;
}
.f-input:focus,
.f-textarea:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,.1);
}
.f-input.error,
.f-textarea.error {
  border-color: var(--danger);
  background: rgba(231,76,60,.08);
}
.f-textarea {
  height: 100px; padding: 14px 16px;
  resize: vertical; min-height: 70px;
  font-family: 'DM Sans', sans-serif;
}

/* Phone field with country code */
.phone-group {
  display: flex; gap: 0; width: 100%;
}
.country-select-wrap {
  position: relative; flex-shrink: 0;
}
.country-select {
  height: 48px; width: 90px;
  border-radius: 12px 0 0 12px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.1);
  border-right: none;
  padding: 0 8px 0 12px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: rgba(255,255,255,.9);
  cursor: pointer; outline: none;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}
.country-select:focus { border-color: var(--blue); }
.country-select option { background: var(--navy); color: white; }
.phone-input {
  flex: 1;
  border-radius: 0 12px 12px 0 !important;
}

/* Honeypot — invisible to humans */
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none; tab-index: -1;
}

/* Form submit button */
.form-submit-btn {
  width: 100%; justify-content: center; border-radius: 12px;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.form-submit-btn:disabled {
  opacity: .6; cursor: not-allowed;
  transform: none !important;
}
.form-submit-btn .btn-text { transition: opacity .2s; }
.form-submit-btn .btn-spinner {
  display: none;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
.form-submit-btn.loading .btn-text   { opacity: 0; }
.form-submit-btn.loading .btn-spinner { display: block; position: absolute; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Toast messages */
.form-toast {
  padding: 14px 20px; border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  font-weight: 500; display: none; align-items: center; gap: 10px;
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.form-toast.success {
  display: flex;
  background: rgba(39,174,96,.15); color: #27AE60;
  border: 1px solid rgba(39,174,96,.25);
}
.form-toast.error-toast {
  display: flex;
  background: rgba(231,76,60,.15); color: #E74C3C;
  border: 1px solid rgba(231,76,60,.25);
}

/* Field error messages */
.field-error {
  font-size: 11px; color: var(--danger); margin-top: 4px;
  font-family: 'DM Mono', monospace; letter-spacing: .04em;
  display: none;
}
.field-error.visible { display: block; animation: fadeIn .2s ease; }
.field-wrap { position: relative; }
.recaptcha-wrap { margin: 4px 0 0; }
.recaptcha-wrap .g-recaptcha { display: inline-block; }

/* ══════════ RESERVE VEHICLE MODAL ══════════ */
.reserve-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; box-sizing: border-box;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.reserve-modal.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.reserve-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(26,27,62,.6);
  cursor: pointer;
}
.reserve-modal-box {
  position: relative; z-index: 1;
  width: 100%; max-width: 520px; max-height: 90vh;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(26,27,62,.25);
  overflow-y: auto;
  padding: 28px 24px 32px;
}
.reserve-modal-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 20px;
}
.reserve-modal-title {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--navy); margin: 0; letter-spacing: .04em;
}
.reserve-modal-close {
  width: 40px; height: 40px; padding: 0; border: none;
  background: rgba(26,27,62,.08); color: var(--navy);
  border-radius: 12px; font-size: 22px; line-height: 1;
  cursor: pointer; transition: background .2s;
}
.reserve-modal-close:hover { background: rgba(26,27,62,.14); }
.reserve-form .f-input,
.reserve-form .f-textarea {
  background: #fff; border-color: var(--border);
  color: var(--navy);
}
.reserve-form .f-input::placeholder,
.reserve-form .f-textarea::placeholder { color: var(--muted); }
.reserve-form .f-input:focus,
.reserve-form .f-textarea:focus {
  background: #fff; border-color: var(--blue);
}
.reserve-tabs {
  display: flex; gap: 8px; margin-bottom: 20px;
}
.reserve-tab {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--border);
  background: #fff; color: var(--muted);
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: .04em; border-radius: 10px; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.reserve-tab:hover { border-color: var(--blue); color: var(--navy); }
.reserve-tab.active {
  border-color: var(--blue); background: var(--blue-lt); color: var(--blue);
}
.reserve-fields { margin-bottom: 4px; }
.reserve-form .form-row { margin-bottom: 0; }
.reserve-form .field-wrap { margin-bottom: 12px; }
.reserve-color-label {
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 13px;
  color: var(--navy); margin: 16px 0 10px; letter-spacing: .04em;
}
.reserve-colors {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  margin-bottom: 16px;
}
.reserve-color-opt {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--navy);
  cursor: pointer; padding: 6px 0;
}
.reserve-color-opt input { margin: 0; accent-color: var(--blue); }
.reserve-color-swatch {
  display: inline-block; width: 20px; height: 20px;
  border-radius: 6px; flex-shrink: 0;
}

/* ══════════ FOOTER ══════════ */
footer {
  background: var(--navy);
  padding: 40px clamp(20px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 22px; text-transform: uppercase; color: white; letter-spacing: .06em;
}
.footer-logo span { color: var(--mint); }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Syne', sans-serif; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.4); transition: color .2s;
}
.footer-links a:hover { color: var(--mint); }
.footer-dropdown { position: relative; }
.footer-dropdown details summary {
  list-style: none;
  font-family: 'Syne', sans-serif; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-dropdown details summary::-webkit-details-marker { display: none; }
.footer-dropdown details summary::after {
  content: '▾';
  font-size: 10px;
  line-height: 1;
}
.footer-dropdown details[open] summary,
.footer-dropdown details summary:hover { color: var(--mint); }
.footer-dropdown-menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: 10px;
  min-width: 170px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(14,15,37,.98);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.footer-dropdown details[open] .footer-dropdown-menu { display: block; }
.footer-dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
}
.footer-dropdown-menu a:hover { background: rgba(154,214,213,.12); }
.footer-copy {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: rgba(255,255,255,.3); letter-spacing: .06em;
}

/* ══════════ RANGE / DOMET SECTION ══════════ */
.range-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.calculator-distance {
  background:
    radial-gradient(120% 80% at 85% 10%, rgba(33,150,201,.08) 0%, rgba(33,150,201,0) 55%),
    radial-gradient(85% 70% at 5% 95%, rgba(154,214,213,.14) 0%, rgba(154,214,213,0) 60%),
    var(--white);
}
.range-inner { position: relative; }
.range-header { position: relative; z-index: 1; margin-bottom: 48px; }
.range-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.range-map-wrap { position: relative; }
/* Mapa dizajnirana za 190 km; interaktivni krug skaliran na 170 km */
.range-map {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  --range-scale: 1;
  --range-opacity: .9;
  --range-circle-scale: 0.8947; /* 170/190 — krug predstavlja 170 km od BG */
  transform: scale(var(--range-circle-scale));
  transform-origin: center center;
  background: radial-gradient(circle at center, rgba(247,245,233,.22) 0%, rgba(247,245,233,0) 74%);
  overflow: visible;
}
.range-map::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--range-scale) * 100%);
  height: calc(var(--range-scale) * 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(33, 150, 201, 0.2) 60%, transparent 72%);
  opacity: var(--range-opacity);
  transition: width .35s ease, height .35s ease, opacity .35s ease;
  z-index: 1;
}
.range-serbia-shape {
  position: absolute;
  inset: 0;
  width: 62%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-31%, -7%) scale(3.3);
  transform-origin: center center;
  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.range-map-serbia .range-circle,
.range-map-serbia .range-center-pin,
.range-map-serbia .range-city {
  position: relative;
}

.range-map-serbia .range-circle { z-index: 2; }
.range-map-serbia .range-city { z-index: 3; }
.range-map-serbia .range-center-pin { z-index: 5; }
.range-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(33,150,201,0.2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s ease;
  z-index: 2;
}
.range-circle-outer { width: 100%; height: 100%; }
.range-circle-mid { width: 66%; height: 66%; border-color: rgba(33,150,201,0.3); }
.range-circle-inner { width: 33%; height: 33%; border-color: rgba(33,150,201,0.5); }
.range-center-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 5;
}
.pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(33,150,201,0.2);
}
.pin-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  white-space: nowrap;
  background: var(--white);
  padding: 2px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(26,27,62,0.1);
}
.range-city {
  position: absolute;
  z-index: 3;
  left: calc(50% + cos(var(--angle)) * var(--dist));
  top: calc(50% - sin(var(--angle)) * var(--dist));
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: opacity .4s, transform .4s;
}
.range-city.out-of-range { opacity: .25; }
.city-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background .3s;
}
.range-city.out-of-range .city-dot { background: var(--muted); }
.city-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--navy);
  white-space: nowrap;
}
.city-km {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  line-height: 5px;
  color: var(--muted);
  white-space: nowrap;
}
.range-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(14px, 2vw, 24px);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(33,150,201,.12);
}
.range-display {
  text-align: center;
  padding: 32px;
  background: linear-gradient(145deg, #f5f8fd 0%, #f7fafc 100%);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(26,27,62,.08);
}
.range-km-big {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 96px);
  color: var(--navy);
  line-height: 1;
  transition: all .3s;
}
.range-km-unit {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--blue);
  margin-top: -4px;
}
.range-km-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 8px;
}
.range-controls { display: flex; flex-direction: column; gap: 20px; }
.range-control-group { display: flex; flex-direction: column; gap: 8px; }
.range-ctrl-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
}
/* ── BATTERY SLIDER ── */
.battery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  cursor: pointer;
  user-select: none;
}
.battery-body {
  position: relative;
  flex: 1;
  height: 48px;
  border-radius: 10px;
  border: 2.5px solid var(--navy);
  background: var(--cream2);
  overflow: hidden;
  pointer-events: none;
}
.battery-tip {
  width: 8px;
  height: 22px;
  background: var(--navy);
  border-radius: 0 4px 4px 0;
  flex-shrink: 0;
  pointer-events: none;
}
.battery-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, #44c1e8 50%, var(--mint) 100%);
  border-radius: 7px 0 0 7px;
  transition: width .18s ease;
  pointer-events: none;
}
.battery-fill-shimmer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.18) 40%, rgba(255,255,255,.25) 50%, rgba(255,255,255,.18) 60%, transparent 80%);
  animation: batteryShimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes batteryShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.battery-segments {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  pointer-events: none;
}
.battery-segments span {
  flex: 1;
  border-right: 1.5px solid rgba(26,27,62,.08);
}
.battery-segments span:last-child { border-right: none; }
.battery-percent {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 1px 4px var(--navy);
  pointer-events: none;
  letter-spacing: .04em;
  transition: opacity .2s;
}
.battery-percent.low-battery {
  color: var(--navy);
  text-shadow: none;
}
.battery-bolt {
  position: absolute;
  top: 50%; right: 10px;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: .7;
  pointer-events: none;
  transition: opacity .2s;
}
.battery-bolt.hidden { opacity: 0; }
.battery-slider-input {
  position: absolute;
  top: 0; left: 0;
  width: calc(100% - 8px);
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  -webkit-appearance: none;
  appearance: none;
}
.battery-body.low-battery {
  border-color: var(--danger);
  box-shadow: 0 0 12px rgba(231,76,60,.25);
}
.battery-body.low-battery + .battery-tip {
  background: var(--danger);
}
.battery-body.low-battery .battery-fill {
  background: linear-gradient(135deg, #E74C3C 0%, #e88a7f 100%);
}
.range-slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) 100%);
  outline: none;
  cursor: pointer;
}
.range-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 2px 10px rgba(33,150,201,0.4);
  cursor: pointer;
}
.range-slider-input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 2px 10px rgba(33,150,201,0.4);
  cursor: pointer;
}
.range-slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}
.range-mode-btns { display: flex; gap: 8px; }
.range-mode-btn, .range-season-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.range-mode-btn.active, .range-season-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.range-mode-btn:hover:not(.active), .range-season-btn:hover:not(.active) {
  border-color: var(--blue);
  color: var(--blue);
}
.range-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.range-mini-stat {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rms-val {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.rms-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.sustainability-section {
  padding: clamp(64px, 8vw, 124px) clamp(20px, 5vw, 80px);
  background:
    radial-gradient(120% 85% at 10% 12%, rgba(154,214,213,.2) 0%, rgba(154,214,213,0) 56%),
    radial-gradient(95% 85% at 95% 90%, rgba(33,150,201,.08) 0%, rgba(33,150,201,0) 60%),
    linear-gradient(180deg, #F8FFFE 0%, #F3FBFA 100%);
  position: relative;
  overflow: hidden;
}
.sustainability-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 44px);
}
.sustainability-header { max-width: 100%; }
.sustainability-content {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}
.sustainability-visual {
  border-radius: 28px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(154,214,213,.45);
  box-shadow: 0 24px 60px rgba(26,27,62,.08);
  padding: clamp(20px, 4vw, 36px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 35vw, 440px);
}
.sustainability-car-img img {
  width: min(520px, 92%);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 26px 36px rgba(26,27,62,.2));
}
.sustainability-leaf {
  position: absolute;
  right: clamp(14px, 2vw, 26px);
  top: clamp(14px, 2vw, 24px);
  width: clamp(44px, 5vw, 64px);
  height: clamp(44px, 5vw, 64px);
  border-radius: 50%;
  background: rgba(154,214,213,.25);
  border: 1px solid rgba(154,214,213,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 2.2vw, 30px);
}
.sustainability-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sustainability-stat-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(33,150,201,.18);
  border-radius: 18px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  min-height: 118px;
}
.sustainability-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(154,214,213,.26);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.sustainability-stat-data { display: flex; flex-direction: column; gap: 2px; }
.sustainability-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: .95;
  font-weight: 800;
  color: var(--navy);
}
.sustainability-stat-unit {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
}
.sustainability-stat-sub {
  font-size: 13px;
  line-height: 1.3;
  color: var(--muted);
}
.sustainability-controls {
  border-radius: 24px;
  border: 1px solid rgba(26,27,62,.08);
  background: rgba(255,255,255,.88);
  padding: clamp(16px, 2.4vw, 28px);
}
.sustainability-control-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr .55fr;
  gap: 14px;
  align-items: start;
}
.sustainability-control-item {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sustainability-ctrl-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
  letter-spacing: .03em;
}
.sustainability-highlight { color: var(--blue); }
.sustainability-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: linear-gradient(to right, var(--mint) 0%, var(--mint) 24%, rgba(26,27,62,.12) 24%, rgba(26,27,62,.12) 100%);
}
.sustainability-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid white;
  background: var(--blue);
  box-shadow: 0 4px 14px rgba(26,27,62,.22);
  cursor: pointer;
}
.sustainability-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid white;
  background: var(--blue);
  box-shadow: 0 4px 14px rgba(26,27,62,.22);
  cursor: pointer;
}
/* ── ODOMETER SLIDER ── */
.odometer-slider {
  position: relative;
  width: 100%;
  user-select: none;
}
.odometer-track {
  position: relative;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
}
.odometer-track-bg {
  position: absolute;
  inset: 0;
  background: var(--cream2);
  border: 2px solid rgba(26,27,62,.12);
  border-radius: 10px;
}
.odometer-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 24.5%;
  background: linear-gradient(135deg, var(--mint) 0%, #72c5c4 60%, var(--blue) 100%);
  border-radius: 10px 0 0 10px;
  transition: width .15s ease;
}
.odometer-ticks {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.odometer-ticks .odo-tick {
  position: absolute;
  bottom: 0;
  width: 1px;
  background: rgba(26,27,62,.1);
}
.odometer-ticks .odo-tick.major {
  height: 38px;
  width: 1.5px;
  background: rgba(26,27,62,.15);
}
.odometer-ticks .odo-tick.minor {
  height: 14px;
}
.odometer-ticks .odo-tick-label {
  position: absolute;
  top: 4px;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  white-space: nowrap;
  pointer-events: none;
}
.odometer-needle {
  position: absolute;
  top: -2px;
  width: 3px;
  height: calc(100% + 4px);
  background: var(--navy);
  border-radius: 2px;
  left: 24.5%;
  transform: translateX(-50%);
  transition: left .15s ease;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(26,27,62,.3);
}
.odometer-needle::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: var(--navy);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.odometer-slider-input {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 38px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  -webkit-appearance: none;
  appearance: none;
}
.sustainability-slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}
.sustainability-fuel-btns { display: flex; gap: 8px; }
.sustainability-fuel-btn {
  flex: 1;
  border: 1.5px solid rgba(26,27,62,.16);
  border-radius: 12px;
  background: white;
  color: var(--muted);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 10px 12px;
  cursor: pointer;
  transition: .2s;
}
.sustainability-fuel-btn.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.sustainability-fuel-btn:hover:not(.active) {
  border-color: var(--blue);
  color: var(--blue);
}
.sustainability-consumption-input {
  width: 100%;
  min-width: 0;
  height: 44px;
  line-height: 44px;
  border-radius: 12px;
  border: 1.5px solid rgba(26,27,62,.14);
  padding: 0 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
  background: #fff;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}
.sustainability-consumption-input::-webkit-outer-spin-button,
.sustainability-consumption-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sustainability-consumption-wrap {
  display: grid;
  grid-template-columns: 44px minmax(72px, 1fr) 44px;
  gap: 8px;
  align-items: center;
}
.sustainability-consumption-step {
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid rgba(26,27,62,.16);
  background: #fff;
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: .2s;
}
.sustainability-consumption-step:hover {
  border-color: var(--blue);
  background: rgba(33,150,201,.06);
}
.sustainability-consumption-step:active {
  transform: translateY(1px);
}
/* ── Range hint ── */
.range-hint {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.5;
}
.sustainability-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

/* ══════════ SCROLL REVEAL ══════════ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .color-showcase { grid-template-columns: 1fr; }
  .color-main-img { height: 380px; }
  .safety-pillars { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; min-height: 280px; }
  .hero-car-wrap {
    width: 100%;
    max-height: 50vh;
    overflow: visible;
    margin-left: 0;
  }
  .hero-car-wrap img { filter: none; }
  .hero-car-wrap img.hero-car-entrance { max-width: 100%; }
  .hero-pill  { bottom: 30px; right: 10px; left: auto; }
  .hero-pill2 { top: 20px; left: 10px; right: auto; }

  .feat-row, .feat-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feat-row.reverse > * { direction: ltr; }
  .feat-photo { height: 300px; }

  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-specs-wrap { grid-template-columns: 1fr; }
  .versions-grid  { grid-template-columns: 1fr; }
  .range-content { grid-template-columns: 1fr; gap: 34px; }
  .sustainability-content { grid-template-columns: 1fr; }
  .sustainability-stat-card { min-height: 0; }
  .sustainability-control-row { grid-template-columns: 1fr; }
  .range-map-wrap { max-width: 560px; margin: 0 auto; width: 100%; }
  .range-panel { max-width: 640px; margin: 0 auto; width: 100%; }
  .range-stats-row { grid-template-columns: 1fr; }
  .faq-layout     { grid-template-columns: 1fr; }
  .faq-sticky     { position: relative; top: 0; }
  .cta-section    { grid-template-columns: 1fr; }

  .gallery-grid { display: flex; flex-direction: column; }
  .g-cell     { height: 200px; }
  .g-cell img { height: 200px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .safety-pillars { grid-template-columns: repeat(2, 1fr); }
  .safety-cta { flex-direction: column; text-align: center; }
  .safety-cta-text { text-align: center; }
}

@media (min-width: 961px) and (max-width: 1200px) {
  .hero { grid-template-columns: .9fr 1.1fr; }
  .hero-right { padding-right: clamp(18px, 3.2vw, 40px); }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; }
  .hero-stat  { border-right: none; border-bottom: 1px solid var(--border); padding: 16px; }
  .range-section { padding: 56px 16px 72px; }
  .range-panel { padding: 14px; }
  .range-display { padding: 24px 16px; }
  .range-km-big { font-size: clamp(44px, 16vw, 70px); }
  .pin-label {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 9px;
    color: var(--navy);
    white-space: nowrap;
    background: var(--white);
    padding: 1px 4px;
    border-radius: 100px;
    box-shadow: 0 2px 12px rgba(26, 27, 62, 0.1);
  }
  .city-name { font-size: 9px; }
  .city-km {
    font-size: 7px;
    line-height: 5px;
  }
  .range-city { gap: 0px; }
  .sustainability-section { padding: 56px 16px 72px; }
  .sustainability-stats { grid-template-columns: 1fr; }
  .sustainability-stat-val { font-size: clamp(26px, 11vw, 40px); }
  .hero-stat:last-child { border-bottom: none; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; width: 100%; }

  .nav-cta .btn-outline { display: none; }
  .nav-cta .btn-blue { padding: 10px 16px; font-size: 11px; }
  /* nav-cta already hidden in bar at 768px; drawer has its own CTA */
  .sustainability-consumption-wrap {
    grid-template-columns: 40px minmax(64px, 1fr) 40px;
    gap: 6px;
  }
  .sustainability-consumption-step {
    height: 40px;
    font-size: 22px;
  }
  .sustainability-consumption-input { height: 40px; }

  .specs-grid { grid-template-columns: 1fr 1fr; }
  .safety-pillars { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .hero-title-combined { font-size: clamp(56px, 16vw, 120px); }
  .new-hero-car { width: clamp(200px, 55vw, 320px); }

  .color-main-img { height: 380px; }
  .version-img    { height: 220px; }
  .footer-links   { gap: 16px; }
  .parallax-strip, .parallax-mid { height: 50vh; }

  .country-select { width: 82px; font-size: 13px; }

}

@media (max-width: 460px) {
  .charge-map-frame { height: 540px; }
  .specs-header .h2 { font-size: clamp(26px, 10vw, 38px); }
}

@media (max-width: 380px) {
  .hero-title-combined { font-size: 50px; }
  .new-hero-car { width: 190px; }
}
