/* ─────────────────────────────────────────────────────────
   Woosung Rent-A-Car — Design Tokens
   ───────────────────────────────────────────────────────── */
:root {
  /* Color — 크림화이트 + 살짝 밝은 블루 (삼성블루 #1428A0보다 밝게) */
  --bg:           #F8F4EC;   /* 크림 화이트 */
  --bg-soft:      #FBF8F2;
  --surface:      #FFFFFF;
  --surface-2:    #F2EDE3;

  --blue:         #2A5FE0;   /* 메인 — 삼성블루보다 살짝 밝게 */
  --blue-deep:    #1E47B8;
  --blue-light:   #5C87EE;
  --blue-pale:    #E4ECFB;

  --ink:          #0E1A33;
  --ink-soft:     #2A3556;
  --muted:        #6B7390;
  --line:         #E5DFD2;

  --accent:       #F4A02D;   /* CTA 보조 */
  --danger:       #DC2626;

  /* Type */
  --font-sans: "Pretendard Variable","Pretendard",-apple-system,BlinkMacSystemFont,system-ui,Roboto,sans-serif;
  --font-display: "Pretendard Variable",sans-serif;
  --font-en-impact: "Bebas Neue","Pretendard Variable",sans-serif;
  --font-kr-impact: "Black Han Sans","Pretendard Variable",sans-serif;

  /* Radius / shadow */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-1: 0 1px 2px rgba(14,26,51,.04), 0 4px 12px rgba(14,26,51,.06);
  --shadow-2: 0 8px 24px rgba(14,26,51,.10);
  --shadow-blue: 0 12px 32px rgba(42,95,224,.22);

  /* Spacing scale */
  --pad-x: clamp(16px, 5vw, 64px);
  --container: 1240px;
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 450;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "tnum" 1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); letter-spacing: -.02em; }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ──────────────── Header ──────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,244,236,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.nav-logo img { height: 44px; }
.nav-menu { display: flex; gap: 32px; }
.nav-menu a {
  font-size: 15px; font-weight: 600; color: var(--ink-soft);
  position: relative; padding: 8px 0;
  transition: color .2s;
}
.nav-menu a:hover { color: var(--blue); }
.nav-menu a.active { color: var(--blue); }
.nav-menu a.active::after {
  content:""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--blue); border-radius: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-blue);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 16px 36px rgba(42,95,224,.30); }
.nav-toggle { display: none; }

/* ──────────────── Hero ──────────────── */
.hero {
  position: relative;
  padding: clamp(60px, 10vh, 120px) 0 clamp(80px, 12vh, 140px);
  background:
    radial-gradient(1200px 600px at 80% -10%, var(--blue-pale) 0%, transparent 60%),
    radial-gradient(900px 500px at 10% 110%, #FBE9CC 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: .04em;
  color: var(--blue); background: var(--blue-pale);
  padding: 8px 14px; border-radius: 999px;
}
.hero-eyebrow .en { font-family: var(--font-en-impact); font-weight:400; font-size:16px; letter-spacing: .1em; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

.hero-typo {
  display: inline-block;
  margin: 14px 0 12px;
  font-family: var(--font-en-impact);
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 400;  /* Bebas Neue only has 400 */
  line-height: .9;
  letter-spacing: .01em;
  color: var(--blue);
  text-shadow: 0 10px 28px rgba(42,95,224,.18);
}
.hero-title {
  font-family: var(--font-kr-impact);
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 400; line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--ink); margin-top: 12px;
}
.hero-title em {
  font-style: normal; color: var(--blue);
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ──────────────── Edge glow (렌탈튜브 스타일) ──────────────── */
.glow-wrap {
  position: relative;
  display: inline-block;
}
.glow-text {
  display: inline-block;
  font: inherit;
  color: inherit;
  position: relative;
  z-index: 1;
}
.glow-canvas {
  position: absolute;
  /* 양쪽으로 글자 폭의 35% 확장 — 차가 들어왔다 나가는 공간 확보 */
  left: -35%; right: -35%;
  top: 0; bottom: 0;
  width: 170%; height: 100%;
  pointer-events: none;
  z-index: 2;
}
.glow-text { position: relative; z-index: 1; }
.hero-sub {
  margin-top: 22px; font-size: 17px; color: var(--ink-soft);
  max-width: 520px; line-height: 1.7;
}
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: var(--blue); color: #fff; box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(42,95,224,.32); }
.btn-ghost {
  background: var(--surface); color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.hero-stats {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  max-width: 520px;
}
.stat {
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px;
}
.stat-num { font-family: var(--font-en-impact); font-size: 36px; font-weight: 400; color: var(--blue); letter-spacing: 0; line-height: 1; }
.stat-num span { font-family: var(--font-sans); font-size: 14px; font-weight: 700; margin-left: 2px; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 600; }

/* Hero — right card */
.hero-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
}
.hero-card h3 { font-size: 18px; font-weight: 800; }
.hero-card .helper { color: var(--muted); font-size: 13px; margin-top: 4px; }
.quick-form { margin-top: 20px; display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; font-weight: 700; color: var(--ink-soft); letter-spacing: .02em; }
.field input, .field select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-size: 14px; font-family: inherit; background: var(--surface);
  color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-pale);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ──────────────── Sections ──────────────── */
section { padding: clamp(64px, 9vh, 110px) 0; }
.section-title {
  text-align: center; margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block; font-size: 15px; font-weight: 400;
  font-family: var(--font-en-impact);
  color: var(--blue); background: var(--blue-pale);
  padding: 6px 16px; border-radius: 999px;
  letter-spacing: .12em; text-transform: uppercase;
}
.section-h {
  font-family: var(--font-kr-impact);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 400; margin-top: 18px; letter-spacing: -.01em;
  line-height: 1.25;
}
.section-sub { color: var(--muted); margin-top: 12px; font-size: 16px; }

/* ──────────────── Bento — Why Us ──────────────── */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.bento-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.bento-cell h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.bento-cell p { color: var(--ink-soft); font-size: 14px; line-height: 1.65; margin: 0; }
.bento-cell .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-pale); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 18px;
  font-size: 22px;
}
.bento-cell.feature {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  padding: 36px;
}
.bento-cell.feature h3 { font-size: 28px; font-weight: 800; line-height: 1.25; }
.bento-cell.feature p { color: rgba(255,255,255,.85); font-size: 15px; }
.bento-cell.feature .big-num {
  font-family: var(--font-en-impact); font-size: 96px; font-weight: 400; line-height: 1;
  letter-spacing: 0; margin-bottom: 12px;
}
.bento-cell.feature .big-num span { font-family: var(--font-sans); font-size: 28px; font-weight: 800; margin-left: 6px; }
.bento-cell.feature .icon { background: rgba(255,255,255,.18); color: #fff; }
.bento-cell.dark {
  background: var(--ink); color: #fff;
}
.bento-cell.dark p { color: rgba(255,255,255,.75); }

/* ──────────────── Car Grid ──────────────── */
.cars-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 36px;
}
.tab {
  padding: 10px 20px; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  transition: all .2s;
}
.tab:hover { border-color: var(--blue); color: var(--blue); }
.tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.cars-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.car-card {
  background: var(--surface); border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.car-img {
  aspect-ratio: 16/10;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--surface-2) 100%);
  display: grid; place-items: center;
  overflow: hidden;
  padding: 10px;
}
.car-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s; }
.car-card:hover .car-img img { transform: scale(1.06); }
.car-body { padding: 20px 22px 22px; }
.car-cat {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--blue); background: var(--blue-pale);
  padding: 4px 10px; border-radius: 999px; letter-spacing: .04em;
}
.car-name { font-size: 18px; font-weight: 800; margin: 10px 0 4px; }
.car-meta { font-size: 13px; color: var(--muted); }
.car-price {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
}
.car-price .price { font-size: 22px; font-weight: 800; color: var(--ink); }
.car-price .price span { font-size: 12px; color: var(--muted); font-weight: 600; }
.car-price .arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue);
  display: grid; place-items: center; font-size: 16px;
  transition: all .2s;
}
.car-card:hover .car-price .arrow { background: var(--blue); color: #fff; transform: translateX(2px); }

/* ──────────────── Inquiry Form (Multi-step) ──────────────── */
.inquiry-wrap {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.inquiry-card {
  max-width: 920px; margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.steps-bar {
  display: flex; background: var(--surface-2);
  padding: 16px 24px; gap: 12px; border-bottom: 1px solid var(--line);
}
.step-pill {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 700; color: var(--muted);
  transition: all .25s;
}
.step-pill .n {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--surface); color: var(--muted);
  display: grid; place-items: center; font-weight: 800;
  border: 1.5px solid var(--line);
}
.step-pill.active { color: var(--blue); background: var(--blue-pale); }
.step-pill.active .n { background: var(--blue); color: #fff; border-color: var(--blue); }
.step-pill.done .n { background: var(--blue); color: #fff; border-color: var(--blue); }
.step-pill.done .n::before { content: "✓"; }
.step-pill.done .n > * { display: none; }

.step-body { padding: 40px 48px; min-height: 480px; }
.step-h { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.step-desc { color: var(--muted); margin-bottom: 28px; font-size: 14px; }

/* Step 1 — category + cars */
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.cat-pill {
  padding: 8px 16px; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--line);
  font-size: 13px; font-weight: 600;
}
.cat-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.car-select-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 14px;
}
.car-select {
  background: var(--surface); border-radius: var(--r);
  border: 2px solid var(--line); padding: 12px;
  cursor: pointer; transition: all .2s;
}
.car-select:hover { border-color: var(--blue-light); }
.car-select.active { border-color: var(--blue); background: var(--blue-pale); }
.car-select img { aspect-ratio: 16/10; object-fit: contain; background: #fff; border-radius: var(--r-sm); padding: 6px; }
.car-select-name { font-weight: 700; margin-top: 8px; font-size: 14px; }
.car-select-price { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Step 4 — summary sticky */
.summary-card {
  background: var(--surface-2);
  border-radius: var(--r);
  padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.summary-row { display: flex; justify-content: space-between; font-size: 14px; }
.summary-row.total {
  border-top: 1.5px dashed var(--line); padding-top: 12px; margin-top: 6px;
  font-weight: 800; font-size: 18px; color: var(--blue);
}
.summary-row.total .price { font-size: 24px; }
.disclaimer { font-size: 12px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

.step-nav {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 24px 48px; background: var(--bg-soft); border-top: 1px solid var(--line);
}

/* ──────────────── Selected car preview ──────────────── */
.car-preview {
  background: var(--surface-2); border-radius: var(--r);
  padding: 20px; display: flex; gap: 18px; align-items: center;
}
.car-preview .thumb { width: 140px; aspect-ratio: 16/10; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; position: relative; }
.car-preview .thumb { background: #fff; }
.car-preview .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; position: absolute; inset: 0; opacity: 0; transition: opacity .5s; }
.car-preview .thumb img.show { opacity: 1; }
.car-preview h4 { font-size: 18px; font-weight: 800; }
.car-preview .meta { font-size: 13px; color: var(--muted); margin-top: 2px; }
.car-preview .opts { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.opt-chip {
  font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px;
  background: var(--blue-pale); color: var(--blue);
}

/* ──────────────── Options grid ──────────────── */
.opts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 12px; }
.opt-card {
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--r); padding: 16px; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: all .2s;
}
.opt-card:hover { border-color: var(--blue-light); }
.opt-card.active { border-color: var(--blue); background: var(--blue-pale); }
.opt-card .chk {
  width: 22px; height: 22px; border-radius: 6px;
  border: 1.5px solid var(--line); flex-shrink: 0;
  display: grid; place-items: center;
}
.opt-card.active .chk { background: var(--blue); border-color: var(--blue); color: #fff; }
.opt-card .opt-name { font-weight: 700; font-size: 14px; }
.opt-card .opt-price { font-size: 12px; color: var(--muted); }

/* ──────────────── Footer ──────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 40px;
}
.footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; font-size: 13px; }
.footer ul a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 24px;
  display: flex; justify-content: space-between; font-size: 12px; flex-wrap: wrap; gap: 12px;
}

/* ──────────────── Floating call ──────────────── */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: flex; flex-direction: column; gap: 10px;
}
.fab a {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center; font-size: 22px;
  box-shadow: var(--shadow-blue);
  transition: transform .2s;
}
.fab a:hover { transform: scale(1.08); }
.fab a.kakao { background: #FEE500; color: #3C1E1E; }

/* ──────────────── Reveal animation ──────────────── */
.reveal { opacity: 1; transform: none; transition: opacity .7s, transform .7s; }
.js-reveal .reveal:not(.in) { opacity: 0; transform: translateY(20px); }
.reveal.in { opacity: 1; transform: none; }

/* ──────────────── SVG icon system ──────────────── */
svg.icon-svg {
  width: 24px !important; height: 24px !important;
  flex-shrink: 0;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  display: inline-block; vertical-align: middle;
}
.bento-cell .icon svg.icon-svg { width: 26px !important; height: 26px !important; }
.fab svg.icon-svg { width: 24px !important; height: 24px !important; stroke-width: 2; }
.nav-cta svg.icon-svg { width: 16px !important; height: 16px !important; stroke-width: 2.2; }
.car-price .arrow svg.icon-svg { width: 16px !important; height: 16px !important; stroke-width: 2.2; }

/* ──────────────── Responsive ──────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-cell.feature { grid-row: auto; grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step-body { padding: 28px 22px; }
  .step-nav { padding: 18px 22px; }
}

@media (max-width: 720px) {
  :root { --pad-x: 18px; }
  .nav { height: 64px; gap: 8px; }
  .nav-logo img { height: 34px; }
  .nav-menu { display: none; }
  .nav-cta { padding: 10px 14px; font-size: 13px; min-height: 44px; }
  .nav-cta span { display: none; }

  .hero { padding: 36px 0 56px; }
  .hero-text { text-align: center; }
  .hero-eyebrow { font-size: 12px; padding: 7px 12px; }
  .hero-typo { font-size: clamp(72px, 22vw, 110px); margin: 12px auto 8px; text-align: center; }
  .hero-title { font-size: 28px; line-height: 1.25; }
  .hero-sub { margin: 16px auto 0; font-size: 15px; }
  .hero-cta { justify-content: center; gap: 8px; }
  .hero-cta .btn { flex: 1; min-width: 0; padding: 14px 16px; font-size: 14px; justify-content: center; min-height: 50px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); max-width: 100%; margin: 28px auto 0; gap: 8px; }
  .stat { padding: 12px 10px; text-align: center; }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 11px; }

  .hero-card { padding: 22px; border-radius: 20px; }
  .hero-card h3 { font-size: 16px; }
  .quick-form .btn { min-height: 50px; }

  section { padding: 56px 0; }
  .section-title { margin-bottom: 36px; }
  .section-h { font-size: 26px; }
  .section-sub { font-size: 14px; }

  .bento { grid-template-columns: 1fr; gap: 12px; }
  .bento-cell { padding: 22px; }
  .bento-cell.feature { grid-column: auto; padding: 28px; }
  .bento-cell h3 { font-size: 18px; }
  .bento-cell.feature h3 { font-size: 22px; }
  .bento-cell.feature .big-num { font-size: 56px; }
  .bento-cell .icon { width: 44px; height: 44px; margin-bottom: 14px; }

  .cars-tabs { gap: 6px; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .cars-tabs::-webkit-scrollbar { display: none; }
  .tab { flex-shrink: 0; padding: 9px 16px; font-size: 13px; min-height: 40px; }
  .cars-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .car-body { padding: 14px 14px 16px; }
  .car-name { font-size: 15px; }
  .car-meta { font-size: 11px; }
  .car-cat { font-size: 10px; padding: 3px 8px; }
  .car-price .price { font-size: 17px; }
  .car-price .price span { font-size: 10px; }
  .car-price .arrow { width: 30px; height: 30px; font-size: 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .steps-bar { overflow-x: auto; padding: 12px 14px; gap: 6px; -webkit-overflow-scrolling: touch; }
  .steps-bar::-webkit-scrollbar { display: none; }
  .step-pill { flex: 0 0 auto; font-size: 12px; padding: 6px 10px; min-height: 36px; }
  .step-pill .n { width: 22px; height: 22px; font-size: 11px; }
  .step-body { padding: 24px 18px; min-height: auto; }
  .step-h { font-size: 20px; }
  .step-desc { font-size: 13px; margin-bottom: 20px; }
  .step-nav { padding: 16px 18px; gap: 8px; }
  .step-nav .btn { flex: 1; padding: 13px 14px; font-size: 14px; min-height: 50px; justify-content: center; }
  .row-2 { grid-template-columns: 1fr; gap: 12px; }

  .car-select-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .car-select { padding: 9px; }
  .car-select-name { font-size: 13px; }
  .car-select-price { font-size: 11px; }
  .cat-pills { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .cat-pills::-webkit-scrollbar { display: none; }
  .cat-pill { flex-shrink: 0; min-height: 38px; padding: 8px 14px; }

  .opts-grid { grid-template-columns: 1fr; gap: 8px; }
  .opt-card { padding: 14px; min-height: 60px; }

  .car-preview { padding: 14px; gap: 12px; flex-direction: column; align-items: stretch; }
  .car-preview .thumb { width: 100%; aspect-ratio: 16/9; }

  .fab { right: 14px; bottom: 14px; gap: 10px; }
  .fab a { width: 52px; height: 52px; font-size: 22px; }

  .summary-card { padding: 16px; }
  .summary-row { font-size: 13px; }
  .summary-row.total { font-size: 16px; }
  .summary-row.total .price { font-size: 22px; }
}
