/* ===========================================================
   오토프로 모터스 / AutoPro — Template #4
   "시네마틱 패럴럭스 드라이빙"
   Pure static: system fonts only, no libs, file:// safe
   Copyright 2026
   =========================================================== */

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Malgun Gothic",
    "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  background: #0a0a0c;
  color: #e6e9ef;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }

p { margin: 0 0 1em; }

:root {
  --bg: #0a0a0c;
  --bg2: #111318;
  --bg3: #171a21;
  --panel: #14171e;
  --ink: #e6e9ef;
  --ink-dim: #a7afbe;
  --ink-faint: #6b7280;
  --cyan: #22d3ee;
  --cyan-2: #06b6d4;
  --cyan-deep: #0e7490;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.16);
  --wrap: 1180px;
  --radius: 16px;
  --shadow: 0 24px 60px rgba(0,0,0,.55);
}

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.accent { color: var(--cyan); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin: 0 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-weight: 800;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #04121a;              /* dark text on light cyan — contrast OK */
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(34,211,238,.32); }

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ===========================================================
   Scroll progress bar
   =========================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  z-index: 200;
  will-change: transform;
}

/* Side navigation dots */
.scene-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 150;
}
.scene-dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .3s, border-color .3s, transform .3s;
}
.scene-dots button.is-active {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(34,211,238,.7);
}

/* ===========================================================
   Header (slim overlay bar)
   =========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 180;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(10,10,12,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand svg { flex: 0 0 auto; }
.brand-name { font-size: 1.06rem; line-height: 1; }
.brand-slogan { display: block; font-size: .64rem; letter-spacing: .16em; color: var(--ink-dim); font-weight: 600; margin-top: 3px; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-dim);
  position: relative;
  transition: color .25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .3s ease;
}
.nav a:hover, .nav a.is-current { color: var(--ink); }
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); }

.header-cta { padding: 10px 20px; font-size: .9rem; }

.drawer-cta { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(10,10,12,.4);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer (mobile) */
.drawer {
  position: fixed;
  inset: 0;
  height: 100dvh;
  width: 100%;
  background: #0a0a0c;      /* fully opaque */
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  overflow-y: auto;
  padding: 92px 26px 48px;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer nav { display: flex; flex-direction: column; gap: 6px; }
.drawer nav a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  padding: 16px 6px;
  border-bottom: 1px solid var(--line);
}
.drawer nav a .accent { color: var(--cyan); }
.drawer .drawer-cta {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px;
}

/* ===========================================================
   Scenes (full height cinematic)
   =========================================================== */
.scene {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.scene-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 120px 24px;
}

/* Parallax layers */
.layer {
  position: absolute;
  left: 0;
  width: 100%;
  will-change: transform;
  pointer-events: none;
}
.layer svg, .layer img { width: 100%; height: auto; display: block; }

.layer-sky   { top: -10%;  z-index: 1; }
.layer-far   { bottom: 0;  z-index: 2; }
.layer-mid   { bottom: 0;  z-index: 3; }
.layer-road  { bottom: 0;  z-index: 3; }
.layer-fore  { bottom: 4%; z-index: 4; }

/* dark scrim on image backdrops */
.scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.25) 40%, rgba(10,10,12,.9) 100%);
}
.scrim.left {
  background:
    linear-gradient(90deg, rgba(10,10,12,.92) 0%, rgba(10,10,12,.55) 45%, rgba(10,10,12,.2) 100%),
    linear-gradient(180deg, rgba(10,10,12,.4), rgba(10,10,12,.85));
}
.bg-img {
  position: absolute;
  left: 0;
  top: -10%;
  z-index: 1;
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

/* ---------- Hero scene ---------- */
.hero { background: radial-gradient(120% 80% at 50% 10%, #171a21 0%, #0a0a0c 60%); }
.hero .scene-inner { text-align: center; padding-top: 130px; }
.hero h1 {
  font-size: clamp(2.3rem, 8vw, 5.6rem);
  letter-spacing: -.03em;
  margin-bottom: .3em;
  text-wrap: balance;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--cyan), #7ff0ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede {
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto 34px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 6;
  color: var(--ink-faint);
  font-size: .72rem;
  letter-spacing: .3em;
  text-align: center;
}
.scroll-hint .mouse {
  display: block;
  width: 24px; height: 38px;
  border: 2px solid var(--line-strong);
  border-radius: 14px;
  margin: 0 auto 10px;
  position: relative;
}
.scroll-hint .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 7px;
  background: var(--cyan);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: wheel 1.6s ease infinite;
}
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,12px)} }

/* Animated road lane lines */
.lane-dash { animation: laneMove 1.4s linear infinite; }
@keyframes laneMove { to { stroke-dashoffset: -120; } }

/* Headlight glow */
.headlight-glow { animation: glow 2.6s ease-in-out infinite; transform-origin: center; }
@keyframes glow { 0%,100%{opacity:.55} 50%{opacity:1} }

/* ---------- Statement scene ---------- */
.statement { background: linear-gradient(180deg, #0a0a0c, #0d0f14); }
.statement .big {
  font-size: clamp(1.9rem, 6.5vw, 4.2rem);
  max-width: 15ch;
  text-wrap: balance;
}
.statement .big .accent { display: inline; }
.statement .support {
  margin-top: 26px;
  max-width: 560px;
  color: var(--ink-dim);
  font-size: 1.05rem;
}

/* ---------- Experience scene (city->highway->nature) ---------- */
.experience { background: linear-gradient(180deg, #0d0f14 0%, #0a1418 100%); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.exp-card {
  position: relative;
  min-width: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  overflow: hidden;
}
.exp-card .ic { color: var(--cyan); margin-bottom: 16px; }
.exp-card h3 { font-size: 1.28rem; }
.exp-card p { color: var(--ink-dim); margin: 0; font-size: .96rem; }
.exp-card .n {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(34,211,238,.12);
  line-height: 1;
}

/* ---------- Lineup teaser ---------- */
.lineup { background: linear-gradient(180deg, #0a1418, #0a0a0c); }
.lineup-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.car-card {
  position: relative;
  min-width: 0;
  background: linear-gradient(180deg, #14171e, #0f1218);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s;
}
.car-card:hover { transform: translateY(-6px); border-color: rgba(34,211,238,.4); }
.car-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0c0e13;
  overflow: hidden;
}
.car-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.car-media .car-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.1), rgba(10,10,12,.75));
}
.car-media .tag {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(34,211,238,.16);
  color: var(--cyan);
  border: 1px solid rgba(34,211,238,.35);
}
.car-body { padding: 20px 22px 24px; }
.car-body h3 { font-size: 1.24rem; margin-bottom: 4px; }
.car-body .cls { color: var(--ink-faint); font-size: .84rem; margin-bottom: 14px; }
.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
  color: var(--ink-dim);
  font-size: .84rem;
}
.car-specs span { display: inline-flex; align-items: center; gap: 6px; }
.car-specs .accent { color: var(--cyan); }
.car-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.car-price .amt { font-size: 1.35rem; font-weight: 900; color: var(--ink); }
.car-price .amt small { font-size: .8rem; color: var(--ink-faint); font-weight: 600; }

/* ---------- Network / CTA scene ---------- */
.network { background: linear-gradient(180deg, #0a0a0c, #0c1417); }
.net-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}
.net-grid > * { min-width: 0; }
.branch-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.branch {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 20px;
  background: rgba(255,255,255,.02);
  min-width: 0;
}
.branch h4 { font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.branch h4 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.branch p { margin: 6px 0 0; color: var(--ink-dim); font-size: .88rem; }

.cta-card {
  background: linear-gradient(150deg, rgba(34,211,238,.14), rgba(6,182,212,.05));
  border: 1px solid rgba(34,211,238,.3);
  border-radius: 20px;
  padding: 40px 34px;
}
.cta-card h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
.cta-card p { color: var(--ink-dim); }
.cta-card .btn { margin-top: 12px; }

/* ===========================================================
   Reveal animations
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* drive-in for cars */
.drive-in { transform: translateX(-60px); opacity: 0; transition: opacity .8s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.drive-in.in { transform: none; opacity: 1; }

/* ===========================================================
   Sub-page (drive / cars / inquiry) common
   =========================================================== */
.page-hero {
  position: relative;
  min-height: 60svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 56px;
}
.page-hero .scene-inner { padding-top: 150px; }
.page-hero h1 { font-size: clamp(2.1rem, 6.5vw, 4rem); text-wrap: balance; }
.page-hero p { color: var(--ink-dim); max-width: 560px; font-size: 1.08rem; margin: 0; }

.section { padding: 92px 0; position: relative; }
.section.alt { background: #0d0f14; }
.section-head { max-width: 680px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(1.7rem, 4.5vw, 2.8rem); text-wrap: balance; }
.section-head p { color: var(--ink-dim); font-size: 1.05rem; margin: 0; }

/* driving story scenes reuse .scene */

/* stat strip */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px;
  background: rgba(255,255,255,.02);
  min-width: 0;
}
.stat .num { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 900; color: var(--cyan); line-height: 1; }
.stat .lbl { color: var(--ink-dim); font-size: .92rem; margin-top: 8px; }

/* ---------- cars page filters ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-bar button {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-dim);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
}
.filter-bar button:hover { border-color: var(--cyan); color: var(--ink); }
.filter-bar button.is-active { background: var(--cyan); border-color: var(--cyan); color: #04121a; }

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ---------- inquiry form ---------- */
.inquiry-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
}
.inquiry-wrap > * { min-width: 0; }
.info-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px;
  background: linear-gradient(180deg, rgba(34,211,238,.06), rgba(255,255,255,.02));
}
.info-panel h3 { font-size: 1.4rem; }
.info-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 14px; }
.info-list .ic { color: var(--cyan); flex: 0 0 auto; margin-top: 2px; }
.info-list strong { display: block; font-size: .96rem; }
.info-list span { color: var(--ink-dim); font-size: .9rem; }

.form-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px;
  background: var(--panel);
}
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.field { margin-bottom: 20px; min-width: 0; }
.field label { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--cyan); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #0c0e13;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  font: inherit;
  padding: 13px 15px;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,.18);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%); background-position: calc(100% - 20px) 20px, calc(100% - 15px) 20px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.check-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.check-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--cyan); flex: 0 0 auto; }
.check-row label { font-size: .88rem; color: var(--ink-dim); }
.form-note {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(34,211,238,.12);
  border: 1px solid rgba(34,211,238,.4);
  color: var(--cyan);
  font-size: .92rem;
}
.form-note.show { display: block; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: #08080a;
  border-top: 1px solid var(--line);
  padding: 60px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.footer-grid > * { min-width: 0; }
.footer-brand p { color: var(--ink-dim); font-size: .92rem; max-width: 30ch; margin-top: 16px; }
.footer-col h4 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--ink-dim); font-size: .92rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--ink-faint);
  font-size: .84rem;
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .net-grid { grid-template-columns: 1fr; gap: 30px; }
  .inquiry-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .drawer-cta { display: inline-flex; }   /* shown only in drawer on mobile */

  .scene-inner { padding: 100px 20px; }
  .hero .scene-inner { padding-top: 110px; }
  .section { padding: 66px 0; }

  /* reduce parallax translate range on mobile via JS; layers stay full width */
  .layer-fore { bottom: 8%; }

  .net-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }

  /* reset absolute children if needed */
  .exp-card .n { font-size: 2.4rem; }
}

@media (max-width: 420px) {
  .wrap, .scene-inner { padding-left: 16px; padding-right: 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .filter-bar button { padding: 9px 15px; font-size: .84rem; }
}

/* ===========================================================
   Reduced motion — kill parallax + animations
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  .layer { transform: none !important; }
  .reveal, .drive-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .lane-dash, .headlight-glow, .scroll-hint .mouse::after { animation: none !important; }
  .btn:hover, .car-card:hover { transform: none; }
  .scroll-progress { transition: none; }
}
