/* ---------- Design tokens ---------- */
:root {
  --green-50:  oklch(0.97 0.03 155);
  --green-100: oklch(0.93 0.06 155);
  --green-200: oklch(0.86 0.10 155);
  --green-400: oklch(0.68 0.15 155);
  --green-500: oklch(0.60 0.17 155);
  --green-600: oklch(0.52 0.17 155);
  --green-700: oklch(0.44 0.14 155);
  --green-900: oklch(0.28 0.08 155);

  --ink-900: oklch(0.18 0.01 240);
  --ink-800: oklch(0.26 0.01 240);
  --ink-700: oklch(0.38 0.01 240);
  --ink-500: oklch(0.56 0.01 240);
  --ink-400: oklch(0.68 0.01 240);
  --ink-300: oklch(0.82 0.005 240);
  --ink-200: oklch(0.90 0.004 240);
  --ink-100: oklch(0.95 0.003 240);
  --ink-50:  oklch(0.985 0.003 150);
  --white: #ffffff;

  --accent-amber: oklch(0.78 0.13 75);
  --accent-red:   oklch(0.62 0.17 25);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 30, 25, 0.04), 0 1px 3px rgba(15, 30, 25, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 30, 25, 0.06), 0 2px 6px rgba(15, 30, 25, 0.04);
  --shadow-lg: 0 20px 40px -12px rgba(15, 30, 25, 0.18), 0 8px 20px rgba(15, 30, 25, 0.06);
  --shadow-card: 0 8px 30px -8px rgba(15, 30, 25, 0.12);

  --font-sans: 'Pretendard', 'Pretendard Variable', -apple-system, BlinkMacSystemFont,
    system-ui, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  --font-display: 'Pretendard', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: var(--font-sans); color: var(--ink-900); background: var(--white);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'ss02';
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: var(--green-600); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 14px;
}
.h-title {
  font-size: clamp(30px, 3.2vw, 44px); line-height: 1.2;
  font-weight: 700; letter-spacing: -0.02em; color: var(--ink-900);
  text-wrap: balance;
}
.h-sub {
  margin-top: 14px; font-size: 17px; line-height: 1.6;
  color: var(--ink-700); text-wrap: pretty;
}

/* ---------- Button ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease;
}
.btn--primary {
  background: var(--green-500); color: white;
  box-shadow: 0 6px 18px -4px oklch(0.60 0.17 155 / 0.45);
}
.btn--primary:hover { background: var(--green-600); transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px oklch(0.60 0.17 155 / 0.55); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink-800); border: 1px solid var(--ink-200); }
.btn--ghost:hover { background: var(--ink-50); border-color: var(--ink-300); }
.btn--lg { padding: 18px 28px; font-size: 16px; border-radius: 999px; width: 100%; }

/* ---------- Header ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
}
.nav__inner {
  height: 68px; display: flex; align-items: center; gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800;
  font-size: 18px; letter-spacing: -0.02em; color: var(--ink-900); }
.logo__mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--green-500);
  display: inline-flex; align-items: center; justify-content: center; color: white;
  font-weight: 900; font-size: 15px;
}
.logo__sub { font-size: 11px; color: var(--ink-500); font-weight: 500; margin-left: 2px;
  letter-spacing: 0.08em; }

.nav__menu { display: flex; gap: 4px; margin-left: 28px; }
.nav__menu a {
  padding: 8px 14px; border-radius: 999px; font-size: 15px; color: var(--ink-800);
  font-weight: 500; transition: background .15s ease, color .15s ease;
}
.nav__menu a:hover { background: var(--ink-100); color: var(--ink-900); }
.nav__menu a.is-active { color: var(--green-700); background: var(--green-50); }

.nav__right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__search {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px;
  background: var(--ink-50); border: 1px solid transparent; border-radius: 999px;
  width: 260px; transition: border-color .15s ease, background .15s ease;
}
.nav__search:focus-within { border-color: var(--green-400); background: white; }
.nav__search input { flex: 1; border: none; background: transparent; outline: none;
  font-size: 14px; color: var(--ink-900); }
.nav__search input::placeholder { color: var(--ink-400); }
.nav__search svg { color: var(--ink-500); flex-shrink: 0; }

.nav__phone { display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; background: var(--green-900); color: white;
  border-radius: 999px; font-weight: 600; font-size: 14px; }
.nav__phone:hover { background: var(--ink-900); }

.nav__burger { display: none; width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center; background: var(--ink-50); }
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--ink-900);
  position: relative; transition: transform .2s ease; }
.nav__burger span::before, .nav__burger span::after { content: ''; position: absolute;
  left: 0; width: 100%; height: 2px; background: var(--ink-900); transition: transform .2s ease; }
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 56px 0 72px;
  background:
    radial-gradient(1200px 500px at 20% 0%, oklch(0.72 0.14 155 / 0.22), transparent 60%),
    linear-gradient(160deg, var(--green-700) 0%, var(--green-500) 55%, var(--green-400) 100%);
  color: white;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero__mark {
  position: absolute; left: -80px; top: 20px; width: 520px; height: 520px;
  opacity: 0.14; pointer-events: none;
}
.hero__headline {
  font-size: clamp(34px, 4.2vw, 56px); line-height: 1.08; letter-spacing: -0.03em;
  font-weight: 800; text-wrap: balance;
}
.hero__lede { margin-top: 18px; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55;
  color: oklch(0.95 0.02 150 / 0.95); max-width: 42ch; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px); color: white;
}
.hero__pill .dot { width: 6px; height: 6px; border-radius: 50%; background: oklch(0.85 0.17 150); box-shadow: 0 0 8px oklch(0.85 0.17 150); }
.hero__stats { display: flex; gap: 32px; margin-top: 30px; }
.hero__stat b { display: block; font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.hero__stat span { font-size: 13px; color: oklch(0.9 0.04 150 / 0.9); }

.hero__slider-ribbon {
  position: absolute; left: 50%; top: 36px; transform: translateX(-50%);
  background: var(--ink-900); color: white; padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap;
  z-index: 3;
}

/* ---------- Quote form card ---------- */
.quote {
  position: relative; z-index: 2;
  background: white; color: var(--ink-900);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(10, 30, 20, 0.35), 0 8px 20px rgba(10, 30, 20, 0.12);
  padding: 28px 28px 22px;
  max-width: 440px; margin-left: auto;
}
.quote__title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.35; }
.quote__fields { margin-top: 20px; display: grid; gap: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-800); margin-bottom: 6px; }
.field label .req { color: var(--green-600); margin-left: 2px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--ink-200); font-size: 14px; color: var(--ink-900);
  background: white; outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: var(--ink-400); }
.field input:focus, .field select:focus { border-color: var(--green-500);
  box-shadow: 0 0 0 3px oklch(0.60 0.17 155 / 0.15); }
.field.is-error input { border-color: var(--accent-red); }
.field__err { margin-top: 6px; font-size: 12px; color: var(--accent-red); }

.agree { margin-top: 14px; background: var(--ink-50); border-radius: 10px; padding: 12px 14px; }
.agree__top { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink-800); }
.agree__top small { color: var(--ink-500); font-weight: 400; font-size: 12px; margin-left: 4px; }
.agree__list { margin-top: 8px; display: grid; gap: 4px; }
.agree__row { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-700); padding: 4px 0; }
.agree__row .tag { font-weight: 700; color: var(--ink-800); font-size: 11.5px; }
.agree__row .chev { margin-left: auto; color: var(--ink-400); }
.check {
  width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid var(--ink-300);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: white; transition: all .15s ease;
}
.check.is-on { background: var(--green-500); border-color: var(--green-500); }
.check.is-on svg { color: white; }
.check svg { color: transparent; }

.quote__submit { margin-top: 16px; background: var(--green-500); color: white;
  border-radius: 10px; padding: 16px; font-size: 16px; font-weight: 700; width: 100%;
  transition: background .2s ease, transform .1s ease; }
.quote__submit:hover { background: var(--green-600); }
.quote__submit:active { transform: scale(0.99); }
.quote__note { margin-top: 10px; text-align: center; font-size: 12px; color: var(--ink-500); }

/* ---------- Car carousel (hero slider arrows) ---------- */
.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3); color: white;
  display: flex; align-items: center; justify-content: center; z-index: 3;
  transition: background .15s ease;
}
.hero__arrow:hover { background: rgba(255,255,255,0.28); }
.hero__arrow--prev { left: 16px; }
.hero__arrow--next { right: 16px; }
.hero__dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 3; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  transition: width .2s ease, background .2s ease; }
.hero__dot.is-on { width: 20px; border-radius: 999px; background: white; }

/* ---------- Trust bar ---------- */
.trustbar { padding: 28px 0; border-bottom: 1px solid var(--ink-100); background: white; }
.trustbar__row { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.trustbar__label { font-size: 13px; color: var(--ink-500); font-weight: 500; }
.trustbar__logos { display: flex; gap: 28px; align-items: center; color: var(--ink-400); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; }
.trustbar__logo { padding: 6px 12px; border: 1px solid var(--ink-200); border-radius: 8px; }

/* ---------- Car cards ---------- */
.cars__filter { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 28px; }
.chip { padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 500;
  color: var(--ink-700); background: var(--ink-50); border: 1px solid transparent;
  transition: all .15s ease; }
.chip:hover { background: var(--ink-100); }
.chip.is-on { background: var(--ink-900); color: white; }

.cars__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.car {
  background: white; border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
  position: relative;
}
.car:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.car__media {
  aspect-ratio: 16/10; background: var(--ink-100); overflow: hidden; position: relative;
}
.car__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.car:hover .car__media img { transform: scale(1.04); }
.car__badge {
  position: absolute; top: 12px; left: 12px; padding: 5px 10px; border-radius: 999px;
  background: rgba(0,0,0,0.78); color: white; font-size: 11.5px; font-weight: 600;
  backdrop-filter: blur(8px);
}
.car__badge--hot { background: var(--accent-red); }
.car__body { padding: 20px; }
.car__brand { font-size: 12px; color: var(--ink-500); font-weight: 500; }
.car__name { margin-top: 2px; font-size: 18px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; }
.car__meta { margin-top: 8px; display: flex; gap: 8px; font-size: 12px; color: var(--ink-500); }
.car__meta span + span::before { content: '·'; margin-right: 8px; }
.car__price { margin-top: 14px; display: flex; align-items: baseline; gap: 6px; }
.car__price .label { font-size: 12px; color: var(--ink-500); }
.car__price .amt { font-size: 22px; font-weight: 800; color: var(--green-700); letter-spacing: -0.02em; }
.car__price .unit { font-size: 13px; color: var(--ink-700); }
.car__foot { margin-top: 12px; display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px dashed var(--ink-200); font-size: 13px; color: var(--ink-600); }
.car__foot .arrow { color: var(--green-600); font-weight: 600; }

/* ---------- Features ---------- */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.feat {
  padding: 28px; border-radius: var(--radius-lg); background: white;
  border: 1px solid var(--ink-100); transition: transform .2s ease, box-shadow .2s ease;
}
.feat:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.feat__ico {
  width: 52px; height: 52px; border-radius: 14px; background: var(--green-50);
  display: inline-flex; align-items: center; justify-content: center; color: var(--green-700);
}
.feat h3 { margin-top: 20px; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.feat p { margin-top: 8px; color: var(--ink-600); font-size: 14.5px; line-height: 1.6; }
.feat__kpi { margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--green-700); }

/* ---------- Process ---------- */
.process { background: var(--ink-50); }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; position: relative; }
.process__grid::before {
  content: ''; position: absolute; left: 10%; right: 10%; top: 58px; height: 2px;
  background: repeating-linear-gradient(to right, var(--ink-300) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step {
  background: white; border-radius: var(--radius-lg); padding: 28px; position: relative; z-index: 1;
  border: 1px solid var(--ink-100);
}
.step__num {
  width: 48px; height: 48px; border-radius: 50%; background: white;
  border: 2px solid var(--green-500); color: var(--green-600);
  font-weight: 800; font-size: 18px; display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
}
.step h3 { margin-top: 18px; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.step p { margin-top: 8px; color: var(--ink-600); font-size: 14.5px; line-height: 1.6; }
.step__t { margin-top: 16px; font-size: 12px; color: var(--ink-500); }
.step__t b { color: var(--ink-800); font-weight: 600; }

/* ---------- Plans ---------- */
.plans { padding: 96px 0; }
.plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.plan {
  border: 1px solid var(--ink-200); border-radius: var(--radius-lg); padding: 28px;
  background: white; position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.plan.is-hot { border-color: var(--green-500); box-shadow: 0 20px 40px -16px oklch(0.60 0.17 155 / 0.25); }
.plan__tag { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background: var(--ink-100); color: var(--ink-700); }
.plan.is-hot .plan__tag { background: var(--green-500); color: white; }
.plan h3 { margin-top: 14px; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.plan__lede { margin-top: 4px; color: var(--ink-600); font-size: 13.5px; }
.plan__price { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--ink-100); display: flex; align-items: baseline; gap: 4px; }
.plan__price b { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; }
.plan__price span { color: var(--ink-600); font-size: 14px; }
.plan__list { margin-top: 18px; display: grid; gap: 10px; }
.plan__list li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-700); line-height: 1.5; }
.plan__list li svg { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.plan__cta { margin-top: 24px; display: block; width: 100%; padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-align: center; transition: background .2s ease; }
.plan .plan__cta { background: var(--ink-100); color: var(--ink-900); }
.plan .plan__cta:hover { background: var(--ink-200); }
.plan.is-hot .plan__cta { background: var(--green-500); color: white; }
.plan.is-hot .plan__cta:hover { background: var(--green-600); }

/* ---------- Reviews ---------- */
.reviews { background: var(--ink-50); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.review { background: white; padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--ink-100); }
.review__stars { display: flex; gap: 2px; color: var(--accent-amber); }
.review__quote { margin-top: 14px; font-size: 16px; line-height: 1.6; color: var(--ink-800); text-wrap: pretty; font-weight: 500; letter-spacing: -0.01em; }
.review__who { margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.review__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.review__who b { font-size: 14px; font-weight: 600; }
.review__who span { font-size: 12px; color: var(--ink-500); margin-left: 6px; }

/* ---------- Event banner ---------- */
.banner {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: white; border-radius: var(--radius-xl); padding: 48px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: center;
  position: relative; overflow: hidden; isolation: isolate;
}
.banner::before {
  content: ''; position: absolute; right: -100px; top: -80px; width: 420px; height: 420px;
  background: radial-gradient(circle, oklch(0.8 0.15 150 / 0.3), transparent 70%);
  z-index: -1;
}
.banner__tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,0.16); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
.banner h2 { margin-top: 14px; font-size: clamp(24px, 2.8vw, 36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; text-wrap: balance; }
.banner p { margin-top: 10px; font-size: 15px; color: oklch(0.95 0.03 150 / 0.9); line-height: 1.55; }
.banner__actions { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.banner__side { font-size: 14px; }
.banner__side ul { display: grid; gap: 10px; }
.banner__side li { padding: 12px 16px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(6px); }
.banner__side li b { font-weight: 700; }
.banner__side li span { color: oklch(0.9 0.02 150 / 0.85); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq__list { margin-top: 40px; display: grid; gap: 10px; max-width: 900px; }
.q {
  background: white; border: 1px solid var(--ink-100); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease;
}
.q.is-open { border-color: var(--green-400); box-shadow: 0 4px 16px -4px oklch(0.60 0.17 155 / 0.15); }
.q__head { width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 22px 24px; text-align: left; font-size: 16px; font-weight: 600; color: var(--ink-900); }
.q__head .qmark { width: 28px; height: 28px; border-radius: 6px; background: var(--green-50); color: var(--green-700); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.q__head .chev { margin-left: auto; color: var(--ink-400); transition: transform .25s ease; }
.q.is-open .q__head .chev { transform: rotate(180deg); color: var(--green-600); }
.q__body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.q__body-inner { padding: 0 24px 22px 68px; color: var(--ink-700); font-size: 14.5px; line-height: 1.7; }

/* ---------- Trust section ---------- */
.trust { background: var(--ink-50); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.cert { background: white; border: 1px solid var(--ink-100); border-radius: var(--radius); padding: 22px; text-align: center; }
.cert__ico { width: 48px; height: 48px; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.cert b { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.cert span { display: block; margin-top: 4px; font-size: 12.5px; color: var(--ink-500); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-900); color: oklch(0.8 0.005 240); padding: 56px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid oklch(0.3 0.01 240); }
.footer__brand .logo { color: white; }
.footer__about { margin-top: 14px; font-size: 13px; line-height: 1.6; color: oklch(0.7 0.005 240); max-width: 36ch; }
.footer__col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.01em; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: 13.5px; color: oklch(0.75 0.005 240); }
.footer__col a:hover { color: white; }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: oklch(0.6 0.005 240); }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { color: oklch(0.8 0.005 240); }

/* ---------- Scroll animations ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 100;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; width: min(360px, 85vw); height: 100%;
  background: white; padding: 24px; display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform .25s ease;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__close { align-self: flex-end; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--ink-50); }
.mobile-menu__list { display: grid; gap: 4px; margin-top: 12px; }
.mobile-menu__list a { padding: 14px 16px; font-size: 16px; font-weight: 500; border-radius: 10px; color: var(--ink-900); }
.mobile-menu__list a:hover { background: var(--ink-50); }
.mobile-menu__foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--ink-100); font-size: 13px; color: var(--ink-500); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 40px);
  background: var(--ink-900); color: white; padding: 14px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; opacity: 0; transition: all .25s ease;
  display: flex; align-items: center; gap: 10px; z-index: 200;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.4);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.toast__ico { width: 20px; height: 20px; border-radius: 50%; background: var(--green-500); color: white; display: inline-flex; align-items: center; justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav__search { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__mark { opacity: 0.08; }
  .quote { margin: 0 auto; max-width: 520px; }
  .cars__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid, .process__grid, .plans__grid, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .banner { grid-template-columns: 1fr; padding: 36px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav__menu { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__inner { height: 60px; }
  .hero { padding: 36px 0 56px; }
  .hero__stats { gap: 20px; }
  .hero__stat b { font-size: 22px; }
  .cars__grid { grid-template-columns: 1fr; }
  .features__grid, .process__grid, .plans__grid, .reviews__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 20px; padding-bottom: 24px; }
  .banner { padding: 28px; border-radius: var(--radius-lg); }
  .q__head { padding: 18px 18px; font-size: 15px; gap: 12px; }
  .q__body-inner { padding: 0 18px 18px 58px; }
  .plans { padding: 64px 0; }
  .trustbar__row { justify-content: flex-start; }
  .trustbar__logos { gap: 12px; flex-wrap: wrap; }
  .quote { padding: 22px; }
}
