:root {
  --accent: #ED1C24;
  --accent-dark: #b21218;
  --accent-soft: rgba(237,28,36,.18);
  --bg-dark: #0a0a0a;
  --bg-soft: #1a1a1a;
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --header-bg: rgba(13,13,13,.96);
  --ink-900: #ffffff;
  --ink-700: #e5e5e5;
  --ink-500: #9a9a9a;
  --ink-400: #6a6a6a;
  --ink-100: #262626;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-md: 0 8px 28px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 60px rgba(237,28,36,.2);
  --font-sans: 'Pretendard Variable', Pretendard, -apple-system, sans-serif;
  --fs-body: 15px;
  --header-h: 60px;
  --section-pad: 48px;
  --container-max: 720px;
  --container-pad: 20px;
}


*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; margin: 0; }
p { margin: 0; }
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: #000; color: #fff; padding: 8px 14px; z-index: 100;
}
.skip-link:focus { top: 0; }
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}


/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(1.2) blur(8px);
}
.site-header__inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
  color: var(--accent);
}
.brand__mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 900; font-size: 14px;
}
.nav-list {
  display: flex; gap: 4px; margin-left: 16px;
}
.nav-list a {
  padding: 10px 14px;
  font-size: 15px; font-weight: 500;
  color: var(--ink-700);
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav-list a:hover { background: var(--ink-100); color: var(--accent); }
.nav-list a.is-active { color: var(--accent); }
.header-search {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  background: var(--ink-100); color: var(--ink-700);
  padding: 8px 14px; border-radius: 999px;
  width: 220px; transition: width .2s;
}
.header-search:focus-within { width: 280px; outline: 2px solid var(--accent); outline-offset: -1px; }
.header-search__icon { font-size: 14px; color: var(--ink-500); }
.header-search input { flex: 1; border: 0; background: transparent; outline: 0; font-size: 13.5px; color: inherit; }
.header-search input::placeholder { color: var(--ink-400); }
@media (max-width: 1080px) { .header-search { display: none; } }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 14px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-dark); }
.hamburger {
  display: none;
  flex-direction: column; gap: 4px; padding: 10px;
  margin-left: auto;
}
.hamburger span { width: 22px; height: 2px; background: currentColor; display: block; }

@media (max-width: 860px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* === Section utilities === */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-soft); }
.section__head { text-align: center; margin-bottom: 32px; }
.section__eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 8px;
}
.section__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--ink-900); margin: 0;
}
.section__sub {
  margin-top: 10px; font-size: 15px; color: var(--ink-500);
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  transition: background .15s, transform .1s, color .15s, border-color .15s;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--ink-700); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { background: var(--ink-700); }
.btn--cta {
  padding: 14px 28px; font-size: 16px;
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* === Card primitives === */
.card-base {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card-base:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* === Mobile drawer === */
.drawer {
  position: fixed; top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--surface);
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
  transition: right .3s;
  z-index: 100;
  padding: 72px 24px 24px;
  overflow-y: auto;
}
.drawer.is-open { right: 0; }
.drawer__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  font-size: 24px; line-height: 1;
}
.drawer ul { display: flex; flex-direction: column; gap: 4px; }
.drawer ul a {
  display: block; padding: 14px 12px;
  font-size: 16px; font-weight: 600;
  border-radius: 8px;
}
.drawer ul a:hover { background: var(--ink-100); color: var(--accent); }
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  z-index: 90;
}
.drawer-backdrop.is-on { opacity: 1; pointer-events: auto; }



/* ================================================================
   HERO
   ============================================================== */
.hero { padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 88px); position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; opacity: .9; }
.hero__bg svg { width: 100%; height: 100%; }
.hero__inner { display: grid; gap: 36px; position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-dark);
  font-size: 13px; font-weight: 700; letter-spacing: -0.01em;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero__title {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.18;
  color: var(--ink-900);
}
.hero__accent {
  background: linear-gradient(transparent 60%, var(--accent-soft) 60%);
  padding: 0 6px;
  display: inline-block;
}
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-500); max-width: 580px; line-height: 1.65;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hero__chips span {
  background: var(--ink-100); color: var(--ink-700);
  font-size: 12.5px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--border);
}
.hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__perks { display: flex; flex-direction: column; gap: 6px; padding-top: 8px; }
.hero__perks li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-700); }
.hero__perk-mark { width: 18px; height: 18px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-size: 11px; font-weight: 800; display: grid; place-items: center; }

/* split-image */
.hero--split .hero__inner {
  grid-template-columns: 1.1fr 1fr; align-items: center;
}
.hero__art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero__art-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 520px;
  position: relative;
}
.hero__art-card svg { width: 100%; height: auto; max-height: 240px; }
.hero__art-meta {
  display: flex; align-items: center; gap: 10px;
  padding-top: 16px; border-top: 1px dashed var(--border); margin-top: 12px;
}
.hero__art-tag { background: var(--accent); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.04em; }
.hero__art-meta strong { font-weight: 800; font-size: 15px; }
.hero__art-meta small { color: var(--ink-500); font-size: 13px; margin-left: auto; font-weight: 600; }
.hero__art-dots { display: flex; gap: 6px; justify-content: center; margin-top: 14px; }
.hero__art-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-100); }
.hero__art-dots span.is-active { background: var(--accent); width: 24px; border-radius: 4px; }
@media (max-width: 860px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; }
}

/* center-stack */
.hero--center .hero__inner { text-align: center; max-width: 820px; margin: 0 auto; align-items: center; justify-items: center; }
.hero--center .hero__sub { margin: 0 auto; }
.hero--center .hero__ctas { justify-content: center; }
.hero--center .hero__chips { justify-content: center; }
.hero__art--wide { width: 100%; max-width: 640px; padding: 24px; background: var(--accent-soft); border-radius: var(--radius-lg); }
.hero__art--wide svg { width: 100%; }

/* video-feature (dark) */
.hero--video {
  background: radial-gradient(ellipse at 50% 30%, #1a1a1a, var(--bg-dark) 70%);
  color: #fff; padding-bottom: 56px;
}
.hero--video .hero__inner { text-align: center; align-items: center; justify-items: center; gap: 28px; }
.hero--video .hero__title { color: #fff; }
.hero--video .hero__eyebrow { background: rgba(255,255,255,.14); color: #fff; }
.hero--video .hero__eyebrow .dot { background: var(--accent); }
.hero--video .hero__sub { color: rgba(255,255,255,.78); margin: 0 auto; }
.hero--video .hero__lines { position: absolute; inset: 0; pointer-events: none; }
.hero--video .hero__line {
  position: absolute; width: 2px; height: 380px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  opacity: 0.65;
}
.hero--video .hero__line--l { top: 8%; left: 8%; transform: rotate(22deg); }
.hero--video .hero__line--r { top: 14%; right: 9%; transform: rotate(-22deg); }
.hero--video .hero__stage {
  display: grid; grid-template-columns: 1fr 2.2fr 1fr; gap: 18px;
  width: 100%; max-width: 1040px; align-items: center;
}
.hero--video .hero__side {
  aspect-ratio: 3/4; border-radius: var(--radius-md); overflow: hidden;
  background: rgba(255,255,255,.06); padding: 18px; display: grid; place-items: center;
}
.hero--video .hero__side svg { width: 100%; }
.hero--video .hero__video {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-md);
  background: #000; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.hero--video .hero__video-thumb { width: 100%; height: 100%; opacity: 0.55; display: grid; place-items: center; }
.hero--video .hero__video-thumb svg { width: 100%; max-width: 480px; }
.hero--video .hero__play {
  position: absolute; inset: 0; margin: auto;
  width: 80px; height: 80px;
  display: grid; place-items: center;
}
.hero--video .hero__play svg { width: 100%; height: 100%; }
.hero--video .hero__video-meta {
  position: absolute; left: 14px; bottom: 12px;
  display: flex; flex-direction: column; gap: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,.7); text-align: left;
}
.hero--video .hero__video-meta strong { font-size: 14px; }
.hero--video .hero__video-meta small { font-size: 11px; opacity: .8; }
.hero--video .hero__video-chrome {
  position: absolute; right: 12px; bottom: 12px;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: 11px; padding: 4px 8px; border-radius: 4px;
  font-family: ui-monospace, monospace;
}
.hero--video .hero__dots { display: flex; gap: 6px; }
.hero--video .hero__dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); }
.hero--video .hero__dots span.is-active { background: var(--accent); width: 22px; border-radius: 4px; }
.hero--video .btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.3); }
.hero--video .btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: var(--accent); color: var(--accent); }
@media (max-width: 720px) {
  .hero--video .hero__stage { grid-template-columns: 1fr; }
  .hero--video .hero__side { display: none; }
}

/* banner */
.hero--banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; text-align: center;
}
.hero--banner .hero__title { color: #fff; }
.hero--banner .hero__eyebrow { background: rgba(255,255,255,.2); color: #fff; }
.hero--banner .hero__title em { font-style: normal; background: #ffe200; color: #111; padding: 0 10px; border-radius: var(--radius-sm); }
.hero--banner .hero__sub { color: rgba(255,255,255,.92); margin: 0 auto; }
.hero--banner .hero__inner { align-items: center; justify-items: center; max-width: 800px; margin: 0 auto; }
.hero--banner .hero__chips span { background: rgba(255,255,255,.18); color: #fff; border: 0; }

/* ================================================================
   TRUST BAR
   ============================================================== */
.trust-bar { padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.trust-bar__inner { display: flex; gap: 12px 28px; flex-wrap: wrap; align-items: center; justify-content: center; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-700);
  padding: 6px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
}
.trust-chip__icon { width: 16px; height: 16px; color: var(--accent); display: inline-block; }
.trust-chip__icon svg { width: 100%; height: 100%; }
.trust-strip__item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink-700); }
.trust-strip__icon { width: 18px; height: 18px; color: var(--accent); }
.trust-strip__icon svg { width: 100%; height: 100%; }
.trust-strip__sep { width: 1px; height: 16px; background: var(--border); }

/* ================================================================
   STATS COUNTER
   ============================================================== */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px 22px; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin: 0 auto 14px;
}
.stat__icon svg { width: 22px; height: 22px; }
.stat__value { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat__value strong { font-size: clamp(32px, 4vw, 44px); font-weight: 800; color: var(--ink-900); letter-spacing: -0.025em; }
.stat__suffix { color: var(--ink-500); font-size: 16px; font-weight: 700; }
.stat__label { margin-top: 6px; font-size: 13px; color: var(--ink-500); }
@media (max-width: 760px) { .stats__grid { grid-template-columns: 1fr 1fr; } }
.stats--band { background: var(--accent); color: #fff; padding: 20px 0; }
.stats__band { display: flex; gap: 24px; justify-content: space-around; align-items: center; flex-wrap: wrap; }
.stat-band { font-size: 24px; font-weight: 800; }
.stat-band small { display: block; font-size: 12px; font-weight: 500; opacity: .8; margin-top: 2px; }

/* ================================================================
   CARS
   ============================================================== */
.cars__grid { display: grid; gap: 20px; }
.cars--g3 .cars__grid { grid-template-columns: repeat(3, 1fr); }
.cars--g4 .cars__grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .cars--g3 .cars__grid { grid-template-columns: 1fr; }
  .cars--g4 .cars__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cars--g4 .cars__grid { grid-template-columns: 1fr; }
}
.cars__cta { text-align: center; margin-top: 32px; }
.car-card { display: flex; flex-direction: column; }
.car-card__media {
  aspect-ratio: 16/10; background: var(--bg-soft);
  display: grid; place-items: center; padding: 18px; position: relative;
  overflow: hidden;
}
.car-card__media svg { width: 100%; height: auto; max-height: 100%; }
.car-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 4px; z-index: 2;
}
.car-card__seg {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.92); color: var(--ink-700);
  font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 4px;
  border: 1px solid var(--border);
}
.car-card__body { padding: 18px 20px 22px; }
.car-card__brand { font-size: 12px; color: var(--ink-500); font-weight: 700; letter-spacing: 0.06em; }
.car-card__name { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; }
.car-card__trim { font-size: 13px; color: var(--ink-500); margin-top: 4px; }
.car-card__meta { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.car-card__meta li {
  font-size: 11.5px; color: var(--ink-500);
  background: var(--ink-100); padding: 3px 8px; border-radius: 4px; font-weight: 600;
}
.car-card__price { font-size: 16px; font-weight: 700; color: var(--ink-700); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.car-card__price strong { color: var(--accent-dark); font-size: 22px; margin: 0 4px; font-weight: 800; }

.car-card--ranked { position: relative; }
.car-card--ranked .car-card__rank {
  position: absolute; left: 14px; top: 14px; z-index: 3;
  background: rgba(0,0,0,.85); color: #fff;
  font-weight: 800; font-size: 13px;
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
}

.cars--carousel .cars__scroll {
  display: flex; gap: 16px; overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--accent) var(--ink-100);
}
.cars--carousel .cars__scroll .car-card { flex: 0 0 280px; scroll-snap-align: start; }
.cars--carousel .cars__nav { display: flex; gap: 6px; }
.cars--carousel .cars__nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 20px; color: var(--ink-700);
  display: grid; place-items: center;
  transition: all .15s;
}
.cars--carousel .cars__nav-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.cars--carousel .cars__tabs { display: flex; gap: 6px; }
.cars--carousel .cars__tabs button {
  padding: 8px 16px; border-radius: 999px;
  background: var(--ink-100); color: var(--ink-500); font-weight: 600; font-size: 13px;
}
.cars--carousel .cars__tabs button.is-active { background: var(--ink-900); color: #fff; }

.cars--tv { background: var(--bg); }
.cars--tv .car-card--tv {
  background: #1a1a1a; color: #fff; border: 0; border-radius: var(--radius-md);
  overflow: hidden; transition: transform .25s;
}
.cars--tv .car-card--tv:hover { transform: translateY(-3px); }
.cars--tv .car-card--tv .car-card__media { background: #000; }
.cars--tv .car-card--tv .car-card__brand { color: rgba(255,255,255,.6); }
.cars--tv .car-card--tv .car-card__price { color: #fff; border-color: rgba(255,255,255,.12); }
.cars--tv .car-card--tv .car-card__price strong { color: var(--accent); }
.cars--tv .car-card--tv .car-card__cta { margin-top: 14px; width: 100%; }

.section__head--center { text-align: center; }
.section__head--row { display: flex; align-items: end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.section__title em { color: var(--accent); font-style: normal; }

/* ================================================================
   PROMO
   ============================================================== */
.promo--dark .promo__card {
  display: grid; grid-template-columns: 360px 1fr;
  background: #15171b; color: #fff;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.promo--dark .promo__copy { padding: 36px 32px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.promo--dark .promo__brand { font-size: 12px; letter-spacing: 0.14em; color: rgba(255,255,255,.55); font-weight: 700; }
.promo--dark .promo__name { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.promo--dark .promo__name small { display: block; font-size: 13px; color: rgba(255,255,255,.6); font-weight: 600; margin-top: 4px; }
.promo--dark .promo__chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0; }
.promo--dark .promo__chips li { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); padding: 4px 10px; border-radius: 4px; font-size: 11.5px; font-weight: 600; }
.promo--dark .promo__price-line { font-size: 13px; color: rgba(255,255,255,.6); }
.promo--dark .promo__monthly {
  background: #ffe200; color: #111;
  padding: 14px 18px; border-radius: 10px;
  font-weight: 800; display: flex; align-items: baseline; gap: 8px;
}
.promo--dark .promo__monthly strong { font-size: 24px; }
.promo--dark .promo__note { font-size: 12px; color: rgba(255,255,255,.5); }
.promo--dark .promo__countdown { font-size: 12px; color: rgba(255,210,80,.95); margin-top: 4px; }
.promo--dark .promo__countdown strong { color: #ffe200; }
.promo--dark .promo__art { background: linear-gradient(135deg, #2a2d33, #15171b); padding: 32px; position: relative; }
.promo--dark .promo__art-frame { background: rgba(255,255,255,.05); border-radius: var(--radius-md); padding: 16px; }
.promo--dark .promo__art-frame svg { width: 100%; }
.promo--dark .promo__swatches {
  display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap;
}
.promo--dark .promo__swatch {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: 6px 12px 6px 6px;
  font-size: 12px; color: rgba(255,255,255,.85);
}
.promo--dark .promo__swatch span { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); }
.promo--dark .promo__swatch.is-on { background: rgba(255,255,255,.18); border-color: var(--accent); color: #fff; }
@media (max-width: 720px) {
  .promo--dark .promo__card { grid-template-columns: 1fr; }
}

.promo--band {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; padding: 64px 0;
}
.promo--band .promo__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: center; }
.promo--band .promo__chip { background: rgba(255,255,255,.18); padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; display: inline-block; }
.promo--band .promo__title { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; margin: 10px 0; }
.promo--band .promo__price-line { font-size: 14px; opacity: .9; margin-bottom: 14px; }
.promo--band .promo__price-line strong { font-size: 22px; }
.promo--band .promo__chips--light { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.promo--band .promo__chips--light li { background: rgba(255,255,255,.18); padding: 5px 11px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.promo--band .btn--cta { background: #fff; color: var(--accent-dark); }
.promo--band .promo__art svg { max-width: 440px; width: 100%; }
@media (max-width: 720px) {
  .promo--band .promo__inner { grid-template-columns: 1fr; }
}

/* ================================================================
   FEATURES
   ============================================================== */
.features--numbered .features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .features--numbered .features__grid { grid-template-columns: 1fr; } }
.feature-card { padding: 22px; display: grid; grid-template-columns: auto 1fr; gap: 16px; }
.feature-card__num {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 14px; color: var(--accent); padding-top: 4px; min-width: 36px;
}
.feature-card__title { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.feature-card__desc { font-size: 13px; color: var(--ink-500); line-height: 1.65; padding-left: 12px; border-left: 2px solid var(--border); }
.features--dark { background: var(--bg-dark); color: #fff; padding: 64px 0; }
.features--dark .section__title { color: #fff; }
.features--dark .features__boxes {
  display: grid; grid-template-columns: repeat(4, minmax(0, 200px));
  justify-content: center; gap: 18px; margin-top: 32px;
}
.feature-box {
  aspect-ratio: 1/1; border: 2.5px solid var(--accent); border-radius: 14px;
  display: grid; place-items: center; padding: 16px;
  font-weight: 700; font-size: 17px; text-align: center; line-height: 1.4;
  color: #fff;
}
@media (max-width: 720px) { .features--dark .features__boxes { grid-template-columns: repeat(2, minmax(0, 200px)); } }
.features--icons .features__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-icon { text-align: center; }
.feature-icon__ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin: 0 auto 14px;
}
.feature-icon__ico svg { width: 28px; height: 28px; }
.feature-icon h3 { font-size: 18px; margin-bottom: 8px; }
.feature-icon p { font-size: 14px; color: var(--ink-500); line-height: 1.65; }
@media (max-width: 720px) { .features--icons .features__row { grid-template-columns: 1fr; } }

/* ================================================================
   PROCESS
   ============================================================== */
.process { background: var(--accent-dark); color: #fff; padding: 64px 0; }
.process .section__title { color: #fff; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.process-card {
  background: #fff; color: var(--ink-900);
  border-radius: var(--radius-md); padding: 32px 16px 22px;
  text-align: center; position: relative;
}
.process-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 999px;
}
.process-card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin: 0 auto 12px; }
.process-card__icon svg { width: 22px; height: 22px; }
.process-card__title { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.process-card__desc { font-size: 12.5px; color: var(--ink-500); line-height: 1.6; }
@media (max-width: 760px) { .process__grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; } }
.process--flow { background: var(--bg-soft); color: var(--ink-900); }
.process--flow .section__title { color: var(--ink-900); }
.process__flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process__flow li { background: #fff; border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--border); }
.process__num {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; margin-bottom: 12px;
}
.process--flow li h3 { font-size: 17px; margin-bottom: 6px; }
.process--flow li p { font-size: 13px; color: var(--ink-500); line-height: 1.65; }
@media (max-width: 760px) { .process__flow { grid-template-columns: 1fr 1fr; } }

/* ================================================================
   COST COMPARISON
   ============================================================== */
.costs__cars {
  position: relative; margin: 36px auto 0; max-width: 880px;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center;
}
.costs__car {
  aspect-ratio: 5/3; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px; position: relative;
  display: grid; place-items: center;
}
.costs__car svg { width: 100%; height: auto; }
.costs__car-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 700;
}
.costs__car-tag--alt { background: var(--ink-900); }
.costs__save {
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(15,18,21,.18);
  font-weight: 800;
}
.costs__save strong { font-size: 36px; line-height: 1; display: flex; align-items: baseline; }
.costs__save strong em { font-size: 18px; font-style: normal; }
.costs__save span { font-size: 12px; margin-top: 4px; opacity: .9; }
.costs__table {
  margin: 32px auto 0; max-width: 880px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  font-size: 14px;
}
.costs__row { display: grid; grid-template-columns: 1fr 110px 1fr; }
.costs__row > div { padding: 14px 22px; border-bottom: 1px solid var(--border); }
.costs__row:last-child > div { border-bottom: 0; }
.costs__row--head > div { background: var(--bg-soft); font-weight: 700; font-size: 12px; color: var(--ink-500); padding: 10px 22px; letter-spacing: 0.06em; }
.costs__row--head > div:first-child { text-align: right; }
.costs__cell--left { text-align: right; color: var(--accent-dark); font-weight: 700; }
.costs__cell--label { background: var(--bg-soft); text-align: center; color: var(--ink-500); font-size: 13px; }
.costs__cell--right { color: var(--ink-700); }
.costs__row--big .costs__cell--left, .costs__row--big .costs__cell--right { font-size: 18px; font-weight: 800; }
.costs__footer {
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 110px 1fr;
}
.costs__footer-left, .costs__footer-mid, .costs__footer-right {
  padding: 14px 22px; text-align: center; font-weight: 800;
}
.costs__footer-left  { background: var(--accent); color: #fff; border-bottom-left-radius: var(--radius-md); }
.costs__footer-mid   { background: var(--bg-soft); color: var(--ink-500); }
.costs__footer-right { background: var(--ink-900); color: #fff; border-bottom-right-radius: var(--radius-md); }
@media (max-width: 720px) {
  .costs__cars { grid-template-columns: 1fr; gap: 16px; }
  .costs__save { margin: 0 auto; }
  .costs__row, .costs__footer { grid-template-columns: 1fr 80px 1fr; }
  .costs__row > div { padding: 12px 14px; font-size: 13px; }
}

/* ================================================================
   PRICE FILTER
   ============================================================== */
.pfilter__tabs, .pfilter__makers {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin: 24px 0 32px;
}
.pfilter__tabs button, .pfilter__makers button {
  padding: 10px 18px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--ink-700); font-weight: 600; font-size: 13.5px;
  transition: all .15s;
}
.pfilter__tabs button.is-active, .pfilter__makers button.is-active {
  background: var(--ink-900); color: #fff; border-color: var(--ink-900);
}
.pfilter__tabs button:hover, .pfilter__makers button:hover {
  border-color: var(--accent); color: var(--accent-dark);
}
.pfilter__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.pfilter-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.pfilter-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pfilter-card__media { aspect-ratio: 4/3; background: var(--bg-soft); border-radius: 8px; margin-bottom: 10px; display: grid; place-items: center; padding: 8px; }
.pfilter-card__media svg { width: 100%; }
.pfilter-card__name { font-size: 13.5px; font-weight: 700; margin-bottom: 2px; }
.pfilter-card__seg { font-size: 11.5px; color: var(--ink-500); }
.pfilter-card__price { font-size: 13px; font-weight: 700; color: var(--accent-dark); margin-top: 6px; }
@media (max-width: 900px) { .pfilter__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .pfilter__grid { grid-template-columns: 1fr 1fr; } }

/* ================================================================
   CONSULT-CTA
   ============================================================== */
.consult__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.consult-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.consult-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.consult-card__tag { font-size: 11px; letter-spacing: 0.12em; color: var(--ink-500); font-weight: 700; }
.consult-card__title { font-size: 18px; font-weight: 800; }
.consult-card__sub { font-size: 13px; color: var(--ink-500); }
.consult-card__cta { color: var(--accent-dark); font-weight: 800; font-size: 16px; margin-top: 8px; }
.consult-card__icon {
  position: absolute; right: 18px; bottom: 18px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.consult-card__icon svg { width: 22px; height: 22px; }
.consult-card--kakao { background: linear-gradient(135deg, #fff7d6, #ffeb33); border-color: #ffe873; }
.consult-card--phone { border-color: var(--accent); }
@media (max-width: 720px) { .consult__grid { grid-template-columns: 1fr; } }

.consult--illu { padding: 48px 0 24px; }
.consult--illu .consult__inner { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: end; }
.consult--illu .consult__illustration { display: grid; place-items: end; }
.consult--illu .consult__illustration svg { width: 100%; max-width: 240px; }
.consult--illu .consult__hours { color: var(--ink-500); font-size: 13px; margin-bottom: 12px; }
.consult--illu .consult__phone { display: inline-block; font-size: clamp(36px, 4.4vw, 52px); font-weight: 800; color: var(--ink-900); letter-spacing: -0.02em; }
.consult--illu .consult__note { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; }
.consult--illu .consult__row { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.consult-mini { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 16px; font-size: 13px; display: flex; flex-direction: column; gap: 2px; }
.consult-mini strong { color: var(--accent-dark); }
@media (max-width: 760px) { .consult--illu .consult__inner { grid-template-columns: 1fr; } .consult--illu .consult__illustration { display: none; } }

/* ================================================================
   QUOTE-FORM
   ============================================================== */
.quote { padding: clamp(48px, 6vw, 80px) 0; }
.quote__inner { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.quote__copy .section__title { text-align: left; }
.quote__perks { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.quote__perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-700); }
.quote__perks li span {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
}
.quote__form { padding: 0; }
.quote__form-head {
  padding: 18px 22px; background: var(--ink-900); color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 800;
}
.quote__form-tag { background: var(--accent); color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 999px; font-weight: 700; }
.quote__form-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.quote__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quote__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.quote__row--4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.quote-field { display: flex; flex-direction: column; gap: 4px; }
.quote-field__label { font-size: 11px; color: var(--ink-500); font-weight: 700; letter-spacing: 0.04em; }
.quote-field__select {
  appearance: none;
  width: 100%; padding: 11px 32px 11px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; background: var(--surface) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.5'/></svg>") right 12px center no-repeat;
}
.quote__prices { padding: 18px 22px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.quote__line { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-500); }
.quote__line strong { color: var(--ink-900); font-weight: 800; font-size: 15px; }
.quote__line strong small { font-size: 11px; font-weight: 600; color: var(--ink-500); }
.quote__line--total { padding-top: 8px; border-top: 1px dashed var(--border); }
.quote__line--total strong { color: var(--accent-dark); font-size: 22px; }
.quote__vat { font-size: 11px; color: var(--ink-400); margin-top: 4px; }
.quote__cta { width: calc(100% - 44px); margin: 12px 22px 22px; padding: 14px; }
.quote__form--wide { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.quote__summary { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); gap: 16px; flex-wrap: wrap; }
.quote__summary-label { font-size: 13px; color: var(--ink-500); margin-bottom: 4px; }
.quote__summary-value { font-size: 32px; font-weight: 800; color: var(--accent-dark); display: inline-flex; align-items: baseline; gap: 4px; }
.quote__summary-value small { font-size: 14px; font-weight: 700; color: var(--ink-700); }
@media (max-width: 900px) {
  .quote__inner { grid-template-columns: 1fr; }
  .quote__row--3, .quote__row--4 { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   REVIEWS
   ============================================================== */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }
.review { display: flex; flex-direction: column; }
.review__media { aspect-ratio: 16/9; background: var(--bg-soft); display: grid; place-items: center; padding: 16px; }
.review__media svg { width: 80%; }
.review__body-wrap { padding: 18px 20px 22px; }
.review__head { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.review__avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft);
  display: grid; place-items: center; color: var(--accent);
  flex: 0 0 40px;
}
.review__avatar svg { width: 30px; height: 30px; }
.review__author { font-size: 13px; font-weight: 700; }
.review__region { font-size: 12px; color: var(--ink-500); margin-top: 1px; }
.review__car { font-size: 16px; font-weight: 800; margin-top: 4px; }
.review__stars { color: #ffb800; font-size: 13px; letter-spacing: 2px; margin-top: 6px; }
.review__stars small { color: var(--ink-500); margin-left: 6px; font-size: 11.5px; letter-spacing: 0; font-weight: 700; }
.review__body {
  margin-top: 8px; font-size: 13.5px; color: var(--ink-700); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.review__date { margin-top: 10px; font-size: 11.5px; color: var(--ink-400); }
.reviews__cta { margin-top: 28px; text-align: center; }

.reviews--quotes .reviews__quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-quote { padding: 24px; border-left: 3px solid var(--accent); background: var(--surface); border-radius: var(--radius-md); }
.review-quote__stars { color: #ffb800; font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
.review-quote__body { font-size: 14px; color: var(--ink-700); line-height: 1.7; font-style: italic; }
.review-quote__meta { margin-top: 10px; font-size: 12.5px; color: var(--ink-500); }
.review-quote__meta span { color: var(--ink-400); }
@media (max-width: 900px) { .reviews--quotes .reviews__quotes { grid-template-columns: 1fr; } }

.reviews__masonry { columns: 3; column-gap: 16px; }
.review-masonry {
  break-inside: avoid; margin-bottom: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px;
}
.review-masonry__stars { color: #ffb800; font-size: 13px; letter-spacing: 2px; margin-bottom: 6px; }
.review-masonry__stars small { color: var(--ink-500); margin-left: 6px; font-size: 11.5px; letter-spacing: 0; font-weight: 700; }
.review-masonry__car { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.review-masonry__body { font-size: 13px; color: var(--ink-700); line-height: 1.7; }
.review-masonry__meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-500); margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--border); }
@media (max-width: 900px) { .reviews__masonry { columns: 2; } }
@media (max-width: 540px) { .reviews__masonry { columns: 1; } }

/* ================================================================
   PARTNERS
   ============================================================== */
.partners__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px;
}
.partner-cell {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 10px; text-align: center;
  font-weight: 700; font-size: 13px; color: var(--ink-500); min-height: 64px;
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  transition: all .2s;
}
.partner-cell__name { color: var(--ink-900); }
.partner-cell__cat { font-size: 10.5px; color: var(--ink-400); font-weight: 600; letter-spacing: 0.04em; }
.partner-cell:hover { border-color: var(--accent); }
.partner-cell:hover .partner-cell__name { color: var(--accent-dark); }
@media (max-width: 900px) { .partners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .partners__grid { grid-template-columns: repeat(2, 1fr); } }
.partners--pills .partners__pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.partner-pill { padding: 8px 16px; border-radius: 999px; background: var(--ink-100); color: var(--ink-700); font-size: 13px; font-weight: 600; }
.partners--strip .partners__strip { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; font-size: 13px; color: var(--ink-500); padding: 24px 0; }

/* ================================================================
   NEWS BLOG
   ============================================================== */
.news__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.news-card { display: flex; flex-direction: column; cursor: pointer; }
.news-card__media { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.news-card__pattern {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(15,18,21,.04) 0 8px, rgba(15,18,21,.02) 8px 16px),
    var(--accent-soft);
}
.news-card--promo .news-card__pattern { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.news-card--review .news-card__pattern { background: linear-gradient(135deg, #4F46E5, #3730A3); }
.news-card--guide .news-card__pattern { background: linear-gradient(135deg, #F59E0B, #B45309); }
.news-card--news .news-card__pattern { background: linear-gradient(135deg, #475569, #1E293B); }
.news-card__body { padding: 16px 18px 20px; }
.news-card__tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 4px; background: var(--accent-soft); color: var(--accent-dark); margin-bottom: 8px; }
.news-card__title { font-size: 15.5px; font-weight: 800; line-height: 1.4; letter-spacing: -0.015em; }
.news-card__meta { font-size: 12px; color: var(--ink-500); margin-top: 8px; }
@media (max-width: 900px) { .news__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .news__grid { grid-template-columns: 1fr; } }
.news--list .news__list { display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin: 0 auto; }
.news-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.news-item__tag { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; }
.news-item__title { font-size: 18px; font-weight: 800; margin-top: 4px; line-height: 1.4; }
.news-item__meta { font-size: 12.5px; color: var(--ink-500); margin-top: 6px; }

/* ================================================================
   FAQ
   ============================================================== */
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; text-align: left;
  font-size: 15px; font-weight: 700; color: var(--ink-900);
}
.faq-item__icon { font-size: 22px; color: var(--accent); transition: transform .2s; line-height: 1; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__body { display: none; padding: 0 22px 18px; }
.faq-item.is-open .faq-item__body { display: block; }
.faq-item__body p { font-size: 14px; color: var(--ink-500); line-height: 1.7; }
.faq__inner { max-width: 880px; margin: 0 auto; }
.faq--split .faq__split { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
@media (max-width: 760px) { .faq--split .faq__split { grid-template-columns: 1fr; } }

/* ================================================================
   FOOTER
   ============================================================== */
.site-footer { padding: 56px 0 36px; margin-top: 32px; position: relative; overflow: hidden; }
.site-footer__brand { color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.site-footer__brand small { color: rgba(255,255,255,.45); font-weight: 500; font-size: 12px; margin-left: 4px; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: 13px; align-items: center; margin-bottom: 16px; }
.site-footer__links a { color: rgba(255,255,255,.6); }
.site-footer__links a:hover { color: var(--accent); }
.site-footer__links span { color: rgba(255,255,255,.2); font-size: 11px; }
.site-footer__meta { font-size: 12.5px; line-height: 1.8; color: rgba(255,255,255,.5); }
.site-footer__copy { font-size: 12px; margin-top: 12px; color: rgba(255,255,255,.4); }
.site-footer__cta-label { color: rgba(255,255,255,.6); font-size: 13px; }
.site-footer__cta-hours { color: rgba(255,255,255,.45); font-size: 12px; margin-top: 4px; }
.site-footer__cta-note { color: rgba(255,255,255,.4); font-size: 11.5px; margin-top: 8px; }
.site-footer__phone { display: inline-block; margin-top: 12px; font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }

.site-footer--dark { background: var(--ink-900); color: rgba(255,255,255,.65); }
.site-footer--dark .site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 200px; gap: 32px; align-items: start; }
.site-footer--dark .site-footer__cta { text-align: right; }
.site-footer--dark .site-footer__illustration { height: 220px; display: flex; align-items: flex-end; }
.site-footer--dark .site-footer__illustration svg { height: 100%; width: auto; }
@media (max-width: 900px) {
  .site-footer--dark .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer--dark .site-footer__cta { text-align: left; }
  .site-footer--dark .site-footer__illustration { display: none; }
}

.site-footer--multi { background: var(--ink-900); color: rgba(255,255,255,.65); }
.site-footer--multi .site-footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 36px; }
.site-footer--multi .site-footer__about { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 8px; max-width: 360px; line-height: 1.6; }
.site-footer--multi .site-footer__cta { text-align: right; }
.site-footer--multi .site-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 24px; }
.site-footer--multi .site-footer__col h4 { color: #fff; font-size: 14px; margin-bottom: 12px; }
.site-footer--multi .site-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer--multi .site-footer__col a { color: rgba(255,255,255,.6); font-size: 13px; }
.site-footer--multi .site-footer__col a:hover { color: var(--accent); }
@media (max-width: 760px) {
  .site-footer--multi .site-footer__top { flex-direction: column; }
  .site-footer--multi .site-footer__cta { text-align: left; }
  .site-footer--multi .site-footer__cols { grid-template-columns: 1fr 1fr; }
}

.site-footer--light { background: var(--bg-soft); color: var(--ink-700); }
.site-footer--light .site-footer__brand { color: var(--ink-900); }
.site-footer--light .site-footer__links a { color: var(--ink-500); }
.site-footer--light .site-footer__meta { color: var(--ink-500); }
.site-footer--light .site-footer__copy { color: var(--ink-400); }
.site-footer--light .site-footer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.site-footer--light .site-footer__phone { color: var(--accent-dark); }

/* ================================================================
   STICKY-CTA (bottom bar)
   ============================================================== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--ink-900); color: #fff;
  border-top: 2px solid var(--accent);
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
.sticky-cta.is-on { transform: translateY(0); }
.sticky-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; flex-wrap: wrap; }
.sticky-cta__copy { display: flex; flex-direction: column; gap: 2px; }
.sticky-cta__copy strong { font-size: 18px; color: #fff; font-weight: 800; }
.sticky-cta__copy span { font-size: 12px; color: rgba(255,255,255,.65); }
.sticky-cta__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.sticky-cta__phone { color: rgba(255,255,255,.85); font-weight: 700; font-size: 15px; padding: 8px 14px; }
.sticky-cta__phone:hover { color: var(--accent); }
.sticky-cta__cta { padding: 12px 22px !important; }
@media (max-width: 540px) {
  .sticky-cta__phone { font-size: 13px; padding: 6px 10px; }
  .sticky-cta__copy strong { font-size: 15px; }
}

/* ================================================================
   TIMELINE (horizontal)
   ============================================================== */
.timeline__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; padding-top: 24px;
}
.timeline__row::before {
  content: ""; position: absolute; left: 12.5%; right: 12.5%; top: 56px;
  height: 2px; background: var(--accent-soft); z-index: 0;
}
.timeline__step { position: relative; text-align: center; }
.timeline__dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  position: relative; z-index: 1;
  box-shadow: 0 8px 18px rgba(15,18,21,.12);
}
.timeline__dot svg { width: 22px; height: 22px; }
.timeline__step-num { display: inline-block; font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.12em; margin-bottom: 6px; }
.timeline__step-title { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.timeline__step-desc { font-size: 13px; color: var(--ink-500); line-height: 1.65; }
@media (max-width: 760px) {
  .timeline__row { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .timeline__row::before { display: none; }
}

/* ================================================================
   BENEFIT-VS
   ============================================================== */
.bvs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bvs__col {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.bvs__col--ours { border-color: var(--accent); box-shadow: 0 12px 36px rgba(0,0,0,.06); }
.bvs__col--theirs { background: var(--bg-soft); }
.bvs__head { padding: 22px 24px 18px; border-bottom: 1px solid var(--border); }
.bvs__col--ours .bvs__head { background: var(--accent-soft); border-bottom-color: var(--accent); }
.bvs__head h3 { font-size: 18px; margin-top: 6px; }
.bvs__head--alt h3 { color: var(--ink-500); }
.bvs__tag { display: inline-block; background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 800; letter-spacing: 0.04em; }
.bvs__tag--alt { background: var(--ink-700); }
.bvs__list { padding: 8px 0; }
.bvs__row {
  display: grid; grid-template-columns: 28px 1fr; gap: 4px 12px; align-items: start;
  padding: 14px 24px; border-bottom: 1px solid var(--border);
}
.bvs__row:last-child { border-bottom: 0; }
.bvs__icon {
  grid-row: span 2;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
}
.bvs__icon svg { width: 14px; height: 14px; }
.bvs__icon--no { background: var(--ink-100); color: var(--ink-400); font-weight: 800; font-size: 16px; }
.bvs__row strong { font-size: 14px; font-weight: 700; }
.bvs__detail { font-size: 12.5px; color: var(--ink-500); line-height: 1.6; }
.bvs__row--no strong { color: var(--ink-500); }
@media (max-width: 760px) { .bvs__grid { grid-template-columns: 1fr; } }

/* ================================================================
   VIDEO REVIEWS
   ============================================================== */
.vrev__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vrev-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.vrev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vrev-card__media {
  aspect-ratio: 16/9; background: var(--ink-900);
  display: grid; place-items: center;
  position: relative;
}
.vrev-card__media svg.car-svg, .vrev-card__media > svg { width: 75%; opacity: 0.65; }
.vrev-card__media > svg { width: 75%; }
.vrev-card__play {
  position: absolute; inset: 0; margin: auto;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  transition: transform .2s;
}
.vrev-card:hover .vrev-card__play { transform: scale(1.08); }
.vrev-card__play svg { width: 100%; height: 100%; }
.vrev-card__time {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(0,0,0,.75); color: #fff;
  font-family: ui-monospace, monospace;
  font-size: 11px; padding: 3px 7px; border-radius: 4px;
}
.vrev-card__body { padding: 14px 18px 18px; }
.vrev-card__body h3 { font-size: 15px; font-weight: 800; }
.vrev-card__author { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; }
.vrev-card__views { font-size: 12px; color: var(--ink-400); margin-top: 6px; }
@media (max-width: 760px) { .vrev__grid { grid-template-columns: 1fr; } }

/* ================================================================
   HEADER scroll-shrink + progress
   ============================================================== */
.site-header { transition: height .2s, box-shadow .2s; }
.site-header.is-shrunk {
  --header-h: 56px;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.site-header.is-shrunk .site-header__inner { height: 56px; }
.site-header__progress {
  position: absolute; left: 0; bottom: -1px; height: 2px;
  background: var(--accent); width: 0;
  transition: width .1s linear;
}

/* ================================================================
   PHONE MOCKUP (mobile-prototype only, applied via theme class)
   ============================================================== */
.theme--mobile-prototype .hero {
  padding: 32px 0 24px;
  background:
    radial-gradient(circle at 20% 0%, var(--accent-soft) 0%, transparent 30%),
    var(--bg);
}
.theme--mobile-prototype .hero__inner {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 48px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
  max-width: 480px;
  margin: 0 auto;
}
.theme--mobile-prototype .hero__inner::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 6px; border-radius: 999px; background: var(--ink-100);
}
.theme--mobile-prototype .hero__inner::after {
  content: ""; position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 4px; border-radius: 999px; background: var(--ink-100);
}
.theme--mobile-prototype .hero__title { font-size: 28px; }
.theme--mobile-prototype .hero__bg { display: none; }

/* ================================================================
   BREADCRUMB
   ============================================================== */
.breadcrumb { font-size: 13px; color: var(--ink-500); padding-bottom: 16px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--ink-400); margin: 0 2px; }
.breadcrumb__current { color: var(--ink-900); font-weight: 700; }
.breadcrumb--block { padding: 14px 0; background: var(--bg-soft); border-bottom: 1px solid var(--border); }

/* ================================================================
   CAR DETAIL
   ============================================================== */
.cdetail__layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
@media (max-width: 960px) { .cdetail__layout { grid-template-columns: 1fr; } }
.cdetail__head { padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.cdetail__brand { font-size: 12px; letter-spacing: 0.12em; color: var(--ink-500); font-weight: 700; }
.cdetail__name { font-size: clamp(28px, 3.4vw, 38px); font-weight: 800; letter-spacing: -0.025em; margin: 6px 0 4px; }
.cdetail__trim { font-size: 14px; color: var(--ink-500); }
.cdetail__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.cdetail__badges li { background: var(--accent-soft); color: var(--accent-dark); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.cdetail__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 18px; padding: 14px 0; border-top: 1px dashed var(--border); gap: 8px;
}
.cdetail__stats li { display: flex; flex-direction: column; gap: 2px; padding: 0 14px; border-right: 1px solid var(--border); }
.cdetail__stats li:last-child { border-right: 0; }
.cdetail__stats li span { font-size: 11px; color: var(--ink-500); font-weight: 600; }
.cdetail__stats li strong { font-size: 14px; font-weight: 800; color: var(--ink-900); }
@media (max-width: 540px) { .cdetail__stats { grid-template-columns: 1fr 1fr; } }

.cdetail__gallery { padding: 0; overflow: hidden; }
.cdetail__gallery-main { aspect-ratio: 16/10; background: var(--bg-soft); padding: 32px; display: grid; place-items: center; position: relative; transition: background .25s; }
.cdetail__gallery-main svg { width: 100%; height: 100%; max-width: 600px; max-height: 100%; transition: filter .25s; }
.cdetail__gallery-tag { position: absolute; left: 16px; top: 16px; background: rgba(0,0,0,.7); color: #fff; padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; }
.cdetail__gallery-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding: 16px; background: var(--surface); border-top: 1px solid var(--border); }
.cdetail__thumb { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 8px 6px; border: 1px solid var(--border); border-radius: 8px; transition: all .15s; cursor: pointer; }
.cdetail__thumb:hover { border-color: var(--accent); }
.cdetail__thumb.is-on { border-color: var(--accent); background: var(--accent-soft); }
.cdetail__thumb-dot { width: 28px; height: 18px; border-radius: 4px; border: 1px solid rgba(0,0,0,.15); }
.cdetail__thumb small { font-size: 11px; color: var(--ink-500); font-weight: 600; }
.cdetail__thumb.is-on small { color: var(--accent-dark); }

.cdetail__block { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.cdetail__h { font-size: 18px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }

.cdetail__colors { display: flex; flex-wrap: wrap; gap: 8px; }
.cdetail__color { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 6px; border: 1px solid var(--border); border-radius: 999px; font-size: 13px; color: var(--ink-700); cursor: pointer; transition: all .15s; background: var(--surface); }
.cdetail__color:hover { border-color: var(--accent); }
.cdetail__color.is-on { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-dark); font-weight: 700; }
.cdetail__color span { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--border); }

.cdetail__options { display: flex; flex-direction: column; gap: 8px; }
.cdetail__option label { display: grid; grid-template-columns: 24px 1fr auto; gap: 12px; align-items: center; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: all .15s; }
.cdetail__option label:hover { border-color: var(--accent); }
.cdetail__option input[type=checkbox] { width: 20px; height: 20px; accent-color: var(--accent); }
.cdetail__option input:checked + .cdetail__option-label { color: var(--accent-dark); font-weight: 700; }
.cdetail__option-label { font-size: 14.5px; }
.cdetail__option-price { font-size: 13px; color: var(--ink-500); font-weight: 700; }
.cdetail__option-total { margin-top: 12px; font-size: 13.5px; color: var(--ink-500); }
.cdetail__option-total strong { color: var(--accent-dark); font-weight: 800; font-size: 16px; margin: 0 4px; }

.cdetail__specs { display: flex; flex-direction: column; gap: 24px; }
.spec-group__title { font-size: 14px; font-weight: 800; margin-bottom: 8px; color: var(--ink-700); padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-table tr:nth-child(even) { background: var(--bg-soft); }
.spec-table th, .spec-table td { text-align: left; padding: 10px 14px; }
.spec-table th { color: var(--ink-500); font-weight: 600; width: 130px; }
.spec-table td { color: var(--ink-700); font-weight: 700; }

.cdetail__quote { position: sticky; top: 96px; }
.cdetail__quote-card { padding: 0; }
.cdetail__quote-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--ink-900); color: #fff; }
.cdetail__quote-head strong { font-weight: 800; }
.cdetail__quote-tag { background: var(--accent); color: #fff; font-size: 10.5px; padding: 3px 8px; border-radius: 999px; font-weight: 700; }
.cdetail__quote-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.cdetail__quote-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-500); align-items: baseline; }
.cdetail__quote-line strong { color: var(--ink-900); font-size: 16px; font-weight: 800; }
.cdetail__quote-line strong small { font-size: 11px; font-weight: 600; color: var(--ink-500); margin-left: 2px; }
.cdetail__quote-line--total { padding-top: 8px; border-top: 1px dashed var(--border); margin-top: 4px; }
.cdetail__quote-line--total strong { color: var(--accent-dark); font-size: 24px; }
.cdetail__quote-vat { font-size: 11.5px; color: var(--ink-400); margin-top: 6px; }
.cdetail__quote-foot { padding: 16px 18px 18px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.cdetail__quote-cta { width: 100%; padding: 14px; }
.cdetail__quote-call { text-align: center; font-size: 14px; color: var(--ink-700); font-weight: 700; padding: 6px; }
.cdetail__quote-call:hover { color: var(--accent-dark); }
@media (max-width: 960px) { .cdetail__quote { position: static; } }

/* ================================================================
   MODAL
   ============================================================== */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(15,18,21,.55); backdrop-filter: blur(4px); }
.modal__panel { position: relative; background: var(--surface); border-radius: var(--radius-lg); max-width: 520px; margin: 5vh auto; padding: 32px 32px 28px; box-shadow: 0 32px 80px rgba(0,0,0,.32); max-height: 90vh; overflow-y: auto; }
.modal__close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border-radius: 8px; font-size: 22px; line-height: 1; color: var(--ink-500); }
.modal__close:hover { background: var(--ink-100); color: var(--ink-900); }
.modal__head { margin-bottom: 22px; }
.modal__title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 4px 0 6px; }
.modal__sub { font-size: 13.5px; color: var(--ink-500); }
.modal__form { display: flex; flex-direction: column; gap: 12px; }
.modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.modal__field { display: flex; flex-direction: column; gap: 6px; }
.modal__field span { font-size: 11.5px; color: var(--ink-500); font-weight: 700; letter-spacing: 0.04em; }
.modal__field input, .modal__field select { padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; background: var(--surface); }
.modal__field input:focus, .modal__field select:focus { outline: 2px solid var(--accent); outline-offset: -1px; border-color: var(--accent); }
.modal__check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-700); margin-top: 4px; }
.modal__check input { width: 18px; height: 18px; accent-color: var(--accent); }
.modal__submit { padding: 14px; margin-top: 8px; }
.modal__success { background: var(--accent-soft); color: var(--accent-dark); padding: 10px 14px; border-radius: 8px; font-size: 13.5px; font-weight: 700; margin-top: 8px; }

/* ================================================================
   POLISH
   ============================================================== */
.btn { transition: background .2s, transform .12s, color .2s, border-color .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
a:focus-visible, button:focus-visible, [role="button"]:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.card-base:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ================================================================
   FILTER STATE (cars hidden by maker/price tab)
   ============================================================== */
.car-card.is-hidden { display: none; }

/* ================================================================
   STOCK IMAGE (img.stock-img)
   ============================================================== */
img.stock-img { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--ink-100); }
.car-card__media img.stock-img { aspect-ratio: 16/10; }
.review__media img.stock-img { aspect-ratio: 16/10; }
.review__avatar img.stock-img { width: 100%; height: 100%; border-radius: 50%; }
.news-card__media img.stock-img { aspect-ratio: 16/10; }
.vrev-card__media img.stock-img { aspect-ratio: 16/9; }
.pfilter-card__media img.stock-img { aspect-ratio: 4/3; border-radius: 8px; }
.hero__art-card img.stock-img { aspect-ratio: 16/10; border-radius: var(--radius-md); }
.hero__art--wide img.stock-img { aspect-ratio: 16/10; border-radius: var(--radius-md); }
.hero__side img.stock-img { aspect-ratio: 3/4; border-radius: var(--radius-md); }
.hero__video-thumb img.stock-img { aspect-ratio: 16/9; }
.promo__art-frame img.stock-img { aspect-ratio: 16/10; border-radius: var(--radius-md); }
.promo--band .promo__art img.stock-img { aspect-ratio: 16/10; border-radius: var(--radius-md); max-width: 480px; }
.cdetail__gallery-main img.stock-img { aspect-ratio: 16/10; }
.cdetail__thumb-img { display: block; width: 100%; aspect-ratio: 16/10; border-radius: 4px; overflow: hidden; }
.cdetail__thumb-img img.stock-img { width: 100%; height: 100%; }
.cdetail__thumb { padding: 4px 4px 6px; }


/* ==========================================================
   001 다타랩 TV — 시그니처 비주얼 (원본 충실 재현)
   ========================================================== */

body { background: #0a0a0a; color: #fff; }

/* ── HEADER 다크 + 빨간 promo ── */
.dl-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,13,.96);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid #2a2a2a;
}
.dl-header__inner {
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 24px;
  height: 64px;
}
.dl-header__promo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: #ddd;
}
.dl-header__promo strong { color: #ED1C24; font-weight: 800; }
.dl-yt-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #ED1C24; color: #fff;
  width: 22px; height: 16px; border-radius: 4px;
  font-size: 10px; font-weight: 800;
}
.dl-logo {
  font-weight: 900; font-size: 20px;
  color: #fff; letter-spacing: -0.02em;
  justify-self: center;
}
.dl-logo span { color: #ED1C24; }
.dl-header__cta {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
  transition: all .15s;
}
.dl-header__cta:hover { background: rgba(255,255,255,.1); border-color: #ED1C24; color: #ED1C24; }

@media (max-width: 900px) {
  .dl-header__inner { grid-template-columns: 1fr auto; }
  .dl-header__promo, .dl-header__cta { display: none; }
}

/* ── HERO ── */
.dl-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(237,28,36,0.12), transparent 70%),
    radial-gradient(ellipse at 20% 30%, #1a1a1a 0%, #0a0a0a 60%);
  padding: 60px 0 72px;
  position: relative; overflow: hidden;
  text-align: center;
}
.dl-hero__lines { position: absolute; inset: 0; pointer-events: none; }
.dl-hero__line {
  position: absolute; width: 2px; height: 420px;
  background: linear-gradient(180deg, rgba(237,28,36,.6), transparent);
}
.dl-hero__line--l { top: 8%; left: 10%; transform: rotate(22deg); }
.dl-hero__line--r { top: 20%; right: 12%; transform: rotate(-22deg); }

.dl-hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 24px; }

.dl-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.dl-badge--pill { background: #ED1C24; color: #fff; border-color: #ED1C24; }
.dl-badge--dark { background: #0a0a0a; color: #fff; border-color: #ED1C24; }

.dl-hero__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800; line-height: 1.35; letter-spacing: -0.02em;
  color: #fff; max-width: 920px;
}
.dl-circle {
  position: relative; display: inline-block; white-space: nowrap;
  padding: 0 8px;
}
.dl-circle::after {
  content: ""; position: absolute; inset: -0.18em -0.35em;
  border: 3px solid #ED1C24; border-radius: 50%;
  transform: rotate(-3deg); pointer-events: none;
}
.dl-red { color: #ED1C24; }

.dl-hero__stage {
  width: 100%; max-width: 1040px;
  display: grid; grid-template-columns: 1fr 2.2fr 1fr;
  align-items: center; gap: 16px;
}
.dl-hero__side {
  aspect-ratio: 3/4; border-radius: 14px;
  background: rgba(255,255,255,.04); padding: 14px;
  display: grid; place-items: center;
  overflow: hidden;
}
.dl-hero__side svg { width: 100%; }
.dl-hero__side img.stock-img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.dl-hero__video {
  position: relative; aspect-ratio: 16/9; border-radius: 14px;
  background: #000; overflow: hidden;
  box-shadow: 0 24px 60px rgba(237,28,36,.25), 0 0 0 1px rgba(255,255,255,.1);
}
.dl-hero__video > svg { width: 100%; height: 100%; opacity: 0.6; }
.dl-hero__video > img.stock-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.dl-hero__play {
  position: absolute; inset: 0; margin: auto;
  width: 88px; height: 88px;
  display: grid; place-items: center;
  cursor: pointer;
}
.dl-hero__play svg { width: 100%; height: 100%; filter: drop-shadow(0 8px 16px rgba(237,28,36,.6)); }
.dl-hero__chrome {
  position: absolute; right: 12px; bottom: 12px;
  background: rgba(0,0,0,.85); color: #fff;
  font-size: 11px; padding: 4px 8px; border-radius: 4px;
  font-family: ui-monospace, monospace;
}
.dl-hero__channel {
  position: absolute; left: 12px; bottom: 12px;
  display: flex; flex-direction: column; gap: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}
.dl-hero__channel strong { font-size: 14px; color: #fff; font-weight: 800; }
.dl-hero__channel small { font-size: 11px; color: rgba(255,255,255,.8); }

.dl-hero__caption { color: rgba(255,255,255,.7); font-size: 14px; }
.dl-hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ED1C24; color: #fff;
  padding: 16px 32px; border-radius: 999px;
  font-weight: 800; font-size: 16px;
  box-shadow: 0 12px 30px rgba(237,28,36,.4);
  transition: transform .15s, box-shadow .15s;
}
.dl-hero__cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(237,28,36,.55); }

.dl-hero__dots { display: flex; gap: 6px; }
.dl-hero__dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); }
.dl-hero__dots span.is-active { background: #ED1C24; width: 22px; border-radius: 4px; }

@media (max-width: 720px) {
  .dl-hero__stage { grid-template-columns: 1fr; }
  .dl-hero__side { display: none; }
}

/* ── QR Banner ── */
.dl-qr {
  background: #1a1a1a;
  padding: 56px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.dl-qr__inner {
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: center;
}
.dl-qr__text h2 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.dl-qr__lead { font-size: clamp(16px, 1.4vw, 20px); font-weight: 800; color: #fff; margin-top: 10px; }
.dl-qr__quote { color: #aaa; font-size: 14px; line-height: 1.7; margin-top: 14px; }
.dl-qr__quote em { color: #fff; font-style: italic; }
.dl-qr__card {
  display: flex; align-items: center; gap: 18px;
  background: #ED1C24; color: #fff;
  padding: 18px; border-radius: 14px;
}
.dl-qr__copy strong { display: block; font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.dl-qr__copy span { font-size: 12px; line-height: 1.5; opacity: 0.92; }
.dl-qr__code {
  width: 110px; height: 110px;
  background: #fff; padding: 6px; border-radius: 8px;
}
.dl-qr__code svg { width: 100%; height: 100%; }
@media (max-width: 760px) { .dl-qr__inner { grid-template-columns: 1fr; } }

/* ── PICK Cards ── */
.dl-pick {
  background: #0d0d0d;
  padding: 80px 0;
}
.dl-section-head { text-align: left; margin-bottom: 32px; }
.dl-section-head--center { text-align: center; }
.dl-section-head--light h2 { color: #0F1215; }
.dl-section-head h2 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 800;
  letter-spacing: -0.02em; color: #fff; margin: 12px 0 0;
}
.dl-section-head__sub { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 10px; line-height: 1.6; }
.dl-section-head--light .dl-section-head__sub { color: #5b6570; }

.dl-pick__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .dl-pick__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .dl-pick__grid { grid-template-columns: 1fr; } }
.dl-pick-card {
  background: #1a1a1a;
  border-radius: 14px; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.dl-pick-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(237,28,36,.18); }
.dl-pick-card__media {
  aspect-ratio: 16/10; background: #000;
  position: relative; overflow: hidden;
}
.dl-pick-card__media img.stock-img { width: 100%; height: 100%; object-fit: cover; }
.dl-pick-card__media svg { width: 100%; height: 100%; }
.dl-pick-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: #ED1C24; color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 4px;
}
.dl-pick-card__yt {
  position: absolute; bottom: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,.85); color: #fff;
  padding: 4px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
}
.dl-pick-card__body { padding: 18px 20px 22px; }
.dl-pick-card__brand { font-size: 11.5px; color: rgba(255,255,255,.5); font-weight: 700; letter-spacing: 0.06em; }
.dl-pick-card__name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; color: #fff; }
.dl-pick-card__trim { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 4px; }
.dl-pick-card__price { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); font-weight: 700; }
.dl-pick-card__price strong { color: #ED1C24; font-size: 22px; margin: 0 4px; font-weight: 800; }

.dl-pick__note { color: rgba(255,255,255,.4); font-size: 12px; margin-top: 24px; text-align: center; }
.dl-pick__more { margin-top: 32px; text-align: center; }
.dl-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  font-size: 14px; font-weight: 700;
}
.dl-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #ED1C24; color: #ED1C24; }

/* ── BEST (light section) ── */
.dl-best { background: #fff; padding: 80px 0; }
.dl-best .dl-section-head h2 { color: #0F1215; }
.dl-best__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .dl-best__grid { grid-template-columns: 1fr 1fr; } }
.dl-best-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 14px; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.dl-best-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,.08); }
.dl-best-card__rank {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: #0F1215; color: #fff;
  font-weight: 800; font-size: 13px;
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
}
.dl-best-card__media { aspect-ratio: 4/3; background: #f6f7f9; border-radius: 10px; overflow: hidden; }
.dl-best-card__media img.stock-img { width: 100%; height: 100%; object-fit: cover; }
.dl-best-card__media svg { width: 100%; height: 100%; }
.dl-best-card__body { margin-top: 12px; text-align: center; }
.dl-best-card__brand { font-size: 11px; color: #5b6570; font-weight: 700; letter-spacing: 0.06em; }
.dl-best-card__name { font-size: 14.5px; font-weight: 800; color: #0F1215; margin-top: 2px; }
.dl-best-card__price { font-size: 13px; color: #5b6570; margin-top: 6px; font-weight: 700; }
.dl-best-card__price strong { color: #ED1C24; font-size: 18px; margin: 0 2px; }

/* dark mode generic overrides for sections that follow */
.dl-page .section { background: #0d0d0d; color: #fff; }
.dl-page .section--alt { background: #1a1a1a; }
.dl-page .section__title { color: #fff; }
.dl-page .section__sub { color: rgba(255,255,255,.6); }
.dl-page .car-card.card-base { background: #1a1a1a; border: 0; color: #fff; }
.dl-page .car-card__price { border-top-color: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }
.dl-page .car-card__price strong { color: #ED1C24; }
.dl-page .car-card__brand { color: rgba(255,255,255,.5); }
.dl-page .car-card__name { color: #fff; }
.dl-page .car-card__media { background: #000; }
.dl-page .car-card__seg { background: rgba(0,0,0,.7); color: #ddd; border-color: #333; }
.dl-page .partners__pills { background: #0a0a0a; padding: 36px 0; border-radius: 0; }
.dl-page .partner-pill { background: #1a1a1a; color: #ddd; border: 1px solid #2a2a2a; }
.dl-page .review { background: #1a1a1a; color: #fff; border-color: #2a2a2a; }
.dl-page .review__car, .dl-page .review__author { color: #fff; }
.dl-page .review__body { color: rgba(255,255,255,.75); }
.dl-page .faq-item { background: #1a1a1a; border-color: #2a2a2a; color: #fff; }
.dl-page .faq-item__head { color: #fff; }
.dl-page .faq-item__body p { color: rgba(255,255,255,.7); }
.dl-page .stat { background: #1a1a1a; border-color: #2a2a2a; color: #fff; }
.dl-page .stat__value strong { color: #fff; }
.dl-page .stat__label { color: rgba(255,255,255,.6); }



    body.mobile-proto { max-width: 720px; margin: 0 auto; box-shadow: 0 0 60px rgba(0,0,0,.4); }
    .mobile-proto .dl-header__inner { grid-template-columns: 1fr auto; height: 56px; }
    .mobile-proto .dl-header__promo, .mobile-proto .dl-header__cta { display: none; }
    .mobile-proto .dl-hero { padding: 32px 0 40px; }
    .mobile-proto .dl-hero__stage { grid-template-columns: 1fr; }
    .mobile-proto .dl-hero__side { display: none; }
    .mobile-proto .dl-pick__grid { grid-template-columns: 1fr; }
    .mobile-proto .dl-best__grid { grid-template-columns: 1fr 1fr; }
    .mobile-proto .dl-qr__inner { grid-template-columns: 1fr; }
    .mobile-proto .reviews--quotes .reviews__quotes { grid-template-columns: 1fr; }
    .mobile-proto .partners__pills { padding: 24px 0; }
    .mobile-proto .container { padding: 0 16px; }
  