/* ============================================================
   Dongfeng BOX — Landing rediseño
   Dirección: minimalismo editorial refinado
   Typografía: Fraunces (display serif) + Montserrat (body sans)
   ============================================================ */

/* ----------  RESET  ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, button, select, textarea { font: inherit; }
input:focus-visible, button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------  DESIGN TOKENS  ---------- */
:root {
  /* palette */
  --color-bg: #FFFFFF;
  --color-bg-soft: #F7F6F3;           /* warm off-white (editorial) */
  --color-bg-warm: #F1EEE7;           /* slightly warmer section bg */
  --color-bg-dark: #0E0E10;
  --color-ink: #0A0A0A;
  --color-ink-2: #1A1A1A;
  --color-ink-muted: #6A6A6A;
  --color-line: #E6E3DC;
  --color-line-strong: #C9C4B8;

  --color-brand-blue: #0041A0;
  --color-brand-red: #E60020;
  --color-brand-red-dark: #B5001A;
  --color-brand-yellow: #FFC82C;       /* Dongfeng accent (micro-usage) */
  --color-cta: var(--color-brand-red); /* brand CTA: 5.89:1 on white (AA pass) */
  --color-cta-hover: var(--color-brand-red-dark);
  --color-accent: var(--color-brand-blue);
  --color-star: #F5A524;

  /* type — brand uses Montserrat everywhere (no invented typeface) */
  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* spacing scale */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem;  --s-7: 3rem;  --s-8: 4rem;
  --s-9: 6rem;   --s-10: 8rem; --s-11: 10rem;

  /* radius */
  --r-xs: 4px; --r-sm: 8px; --r-md: 12px; --r-lg: 20px; --r-pill: 999px;

  /* shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(14,14,16,.06);
  --shadow-lg: 0 24px 48px rgba(14,14,16,.12);
  --shadow-cta: 0 6px 20px rgba(230,0,32,.25);

  /* container */
  --container: 1200px;
  --container-px: clamp(1.25rem, 4vw, 3rem);
}

/* ----------  TYPOGRAPHY BASE  ---------- */
html { font-family: var(--font-body); color: var(--color-ink); background: var(--color-bg); }
body { font-size: 17px; line-height: 1.55; font-weight: 400; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; font-style: normal; color: var(--color-ink); letter-spacing: -0.02em; }
em, .em { font-style: italic; font-weight: 500; }

strong { font-weight: 600; }

::selection { background: var(--color-ink); color: var(--color-bg); }

/* ----------  LAYOUT PRIMITIVES  ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-red);
  margin-bottom: var(--s-5);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--color-brand-red);
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--s-8);
}

.section-title {
  font-size: clamp(2rem, 1.2rem + 3vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.section-title em { font-weight: 500; }

.section-sub {
  margin-top: var(--s-5);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-ink-muted);
  max-width: 56ch;
}

main > section { padding-block: clamp(var(--s-8), 6vw, var(--s-10)); }

/* alternate section bg for editorial rhythm */
.hero { background: var(--color-bg-soft); }
.trust-bar { background: var(--color-bg); padding-block: var(--s-7); border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.process { background: var(--color-bg); }
.benefits { background: var(--color-bg-warm); }
.comparison { background: var(--color-bg); }
.social-proof { background: var(--color-bg-warm); }
.faq { background: var(--color-bg); }
.cta-final { background: var(--color-bg-dark); color: var(--color-bg); }

/* ----------  BUTTONS  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--color-cta-hover); box-shadow: 0 8px 28px rgba(230,0,32,.35); }

.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }

/* ----------  CHIPS  ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink-2);
  white-space: nowrap;
}

/* ----------  PRESS LOGO (real SVG/PNG)  ---------- */
.press-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  opacity: 0.9;
  transition: opacity .18s ease;
  flex: 0 0 auto;
}
.press-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.press-logo:hover { opacity: 1; }
.press-logo--big { height: clamp(22px, 1.8vw, 28px); }

/* ----------  ICON CHECK  ---------- */
.icon-check {
  width: 20px; height: 20px; flex: none;
  color: var(--color-brand-red);
  margin-top: 3px;
}

/* ============================================================
                       TOPBAR
   ============================================================ */
.topbar {
  background: var(--color-brand-yellow);
  color: var(--color-ink);
  padding: 10px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.005em;
  position: relative;
}
.topbar__text { text-align: center; }
.topbar__full { display: inline; }
.topbar__short { display: none; }
.topbar__close {
  position: absolute;
  right: var(--container-px);
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0,0,0,.55);
  padding: 6px;
  border-radius: 4px;
  transition: color .15s ease;
}
.topbar__close:hover { color: var(--color-ink); }
.topbar[hidden] { display: none; }

/* ============================================================
                       SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,246,243,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding-block: 14px;
}
.site-header__logo { flex-shrink: 0; }
.site-header__logo img { height: 28px; width: auto; filter: brightness(0); }

.site-header__nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: clamp(var(--s-4), 2.5vw, var(--s-6));
}
.site-header__nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink-2);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.site-header__nav a:hover { color: var(--color-brand-red); border-bottom-color: var(--color-brand-red); }

@media (min-width: 900px) {
  .site-header__nav { display: flex; }
}
.site-header__cta { flex-shrink: 0; margin-left: auto; }
@media (min-width: 900px) {
  .site-header__cta { margin-left: 0; }
}

/* smooth-scroll anchor offset under sticky header */
[id] { scroll-margin-top: 90px; }

/* ============================================================
                           HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--s-6), 3.5vw, 3.5rem) clamp(var(--s-7), 4vw, 4.5rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
}

.hero__copy { max-width: 600px; }

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--s-4);
}

.hero__h1 {
  font-size: clamp(2.25rem, 1.2rem + 3.2vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  margin-bottom: var(--s-4);
}
.hero__h1 em {
  font-style: italic;
  font-weight: 500;
}
.underline-accent {
  position: relative;
  white-space: nowrap;
}
.underline-accent::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.42em;
  background: var(--color-brand-yellow);
  z-index: -1;
  transform: skewX(-6deg);
  border-radius: 3px;
}

.hero__sub {
  font-size: clamp(15px, 1vw + 11px, 17px);
  line-height: 1.5;
  color: var(--color-ink-2);
  max-width: 52ch;
  margin-bottom: var(--s-5);
}

.hero__bullets {
  display: grid;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
  font-size: 15px;
  color: var(--color-ink-2);
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  line-height: 1.4;
}
.hero__bullets strong { font-weight: 600; color: var(--color-ink); }

.hero__cta { margin-bottom: 0; }
.hero__cta-note {
  margin-top: var(--s-3);
  font-size: 13px;
  color: var(--color-ink-muted);
  line-height: 1.4;
  max-width: 42ch;
}

/* hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-inline: -4%;
}
.hero__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #FFE689 0%, var(--color-brand-yellow) 58%, #E5AE1B 100%);
  z-index: 0;
}
.hero__image {
  position: relative;
  z-index: 2;
  width: 115%;
  max-width: 115%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.22));
}
.hero__price-tag {
  position: absolute;
  bottom: 6%;
  left: 2%;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.hero__price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}
.hero__price-number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.hero__price-unit {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-ink-2);
}
.hero__price-foot {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-ink-muted);
  letter-spacing: 0.02em;
}

@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1fr 1.1fr; gap: var(--s-8); align-items: center; }
  .hero__visual { aspect-ratio: 1/1; max-width: none; }
}

/* MOBILE hero: car first so it's visible in the first viewport + compact stack */
@media (max-width: 959px) {
  .hero { padding-block: var(--s-5) var(--s-5); }
  .hero .hero__grid { gap: var(--s-4); }
  .hero .hero__visual { order: -1; aspect-ratio: 4/3; margin-inline: 0; overflow: visible; }
  .hero .hero__visual::before { width: 72%; inset: auto; top: 50%; left: 50%; transform: translate(-50%, -50%); aspect-ratio: 1/1; }
  .hero .hero__image { width: 100%; max-width: 100%; }
  .hero .hero__kicker { display: none; }
  .hero .hero__sub { display: none; }
  .hero .hero__h1 { font-size: clamp(26px, 6.5vw, 30px); margin-bottom: var(--s-3); line-height: 1.1; letter-spacing: -0.025em; }
  .hero .hero__bullets { margin-bottom: var(--s-4); font-size: 14.5px; gap: 6px; }
  .hero .hero__price-tag { bottom: 6%; left: 4%; padding: 8px 12px; border-radius: var(--r-sm); }
  .hero .hero__price-number { font-size: 24px; gap: 4px; }
  .hero .hero__price-unit { font-size: 11px; }
  .hero .hero__price-label, .hero .hero__price-foot { font-size: 9px; letter-spacing: 0.1em; }
  .hero .hero__cta-note { font-size: 12px; }
}

/* ============================================================
                      TRUST BAR
   ============================================================ */
.trust-bar__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: var(--s-5);
}
.trust-bar__logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: clamp(var(--s-3), 2vw, var(--s-5));
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .trust-bar__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-5) var(--s-5);
  }
}

/* ============================================================
                      PROCESS
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-8);
  counter-reset: step;
}
@media (min-width: 760px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}

.step {
  position: relative;
  padding: var(--s-7) var(--s-5) var(--s-6);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step__num {
  position: absolute;
  top: var(--s-4);
  right: var(--s-5);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 800;
  color: var(--color-line-strong);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.step__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-blue);
  background: rgba(0,65,160,.08);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-5);
}
.step__icon svg { width: 22px; height: 22px; }
.step__title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.step__text {
  font-size: 15px;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

.process__cta { text-align: center; }

/* ============================================================
                      FEATURE BLOCKS (3 sections)
   ============================================================ */
.feature-block {
  padding-block: clamp(var(--s-7), 5vw, var(--s-9));
  background: var(--color-bg);
}
.feature-block--soft { background: var(--color-bg-warm); }

.feature-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 960px) {
  .feature-block__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}

.feature-block--reverse .feature-block__media {
  order: 2;
}
@media (max-width: 959px) {
  .feature-block--reverse .feature-block__media { order: 0; }
}

.feature-block__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-md);
}
.feature-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.feature-block:hover .feature-block__media img { transform: scale(1.03); }

.feature-block__badge {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  display: inline-block;
  padding: 6px 12px;
  background: rgba(10,10,10,.75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}

.feature-block__copy { max-width: 560px; }
.feature-block--reverse .feature-block__copy { justify-self: end; }
@media (max-width: 959px) {
  .feature-block--reverse .feature-block__copy { justify-self: start; }
}

.feature-block__lead {
  margin-top: var(--s-4);
  margin-bottom: var(--s-5);
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-ink-2);
}

.feature-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--color-line-strong);
  border-bottom: 1px solid var(--color-line);
  margin-bottom: var(--s-5);
}
.feature-stat { display: grid; gap: 4px; }
.feature-stat dt {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}
.feature-stat dd {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin: 0;
}

.feature-block__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-ink-muted);
}

.feature-block__cta {
  margin-top: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-start;
}
.feature-block__cta-note {
  font-size: 13px;
  color: var(--color-ink-muted);
}

/* ============================================================
                      LEGACY FEATURE GROUPS (unused, kept for safety)
   ============================================================ */
.feature-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
@media (min-width: 960px) {
  .feature-groups { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}

.feature-group {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-group:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand-red);
}

.feature-group__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--color-line);
}
.feature-group__num {
  font-size: 42px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--color-brand-red);
}
.feature-group__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 4px;
}
.feature-group__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.feature-group__list {
  display: grid;
  gap: var(--s-5);
}
.feature-group__list li {
  display: grid;
  gap: 4px;
  padding-bottom: var(--s-4);
  border-bottom: 1px dashed var(--color-line);
}
.feature-group__list li:last-child { border-bottom: 0; padding-bottom: 0; }

.feature-big {
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}
.feature-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 6px;
}
.feature-copy {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-ink-muted);
}

.benefits__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  padding-top: var(--s-6);
  border-top: 1px solid var(--color-line-strong);
  text-align: center;
}
.benefits__cta-q {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-ink);
}

/* Placeholder note — dev/review only, remove when real content arrives */
.placeholder-note {
  display: inline-block;
  margin-top: var(--s-5);
  padding: 10px 14px;
  background: rgba(255,200,44,.22);
  border-left: 3px solid var(--color-brand-yellow);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-ink-2);
  max-width: 620px;
}
.placeholder-note strong { color: var(--color-ink); font-weight: 700; }
.placeholder-note em { font-style: italic; }

/* ============================================================
                      COMPARISON
   ============================================================ */
.compare-table-wrap {
  margin-bottom: var(--s-8);
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  background: var(--color-bg-soft);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: var(--s-4) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--color-line);
  vertical-align: middle;
}
.compare-table thead th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--color-ink-muted);
  background: #fff;
  padding-block: var(--s-5);
}
.compare-table tbody th {
  font-weight: 500;
  color: var(--color-ink-2);
  background: #fff;
  width: 28%;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table__winner {
  background: rgba(230,0,32,.06);
  color: var(--color-ink);
  position: relative;
}
.compare-table__winner strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.winner-badge {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cta);
  margin-bottom: 6px;
}
.compare-table thead th.compare-table__winner {
  font-size: 18px;
  color: var(--color-ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.compare-footnote {
  max-width: 820px;
  margin: var(--s-5) auto var(--s-7);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-ink-muted);
  text-align: center;
  font-style: italic;
}

.compare-table__total th,
.compare-table__total td {
  background: var(--color-bg-warm);
  font-weight: 700;
}
.compare-table__total .compare-table__winner strong {
  font-size: 20px;
  color: var(--color-brand-red);
}

.comparison__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: center;
}
.comparison__cta p {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
.comparison__cta p em { font-style: italic; font-weight: 500; }

/* scroll table on mobile */
@media (max-width: 760px) {
  .compare-table-wrap { overflow-x: auto; }
  .compare-table { min-width: 620px; }
}

/* ============================================================
                      SOCIAL PROOF
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
@media (min-width: 760px) { .press-grid { grid-template-columns: repeat(3, 1fr); } }

.press-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.press-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.press-card__logo {
  height: 32px;
  display: flex;
  align-items: center;
  opacity: 0.95;
  transition: opacity .25s ease;
}
.press-card:hover .press-card__logo { opacity: 1; }
.press-card__logo img {
  max-height: 100%;
  max-width: 160px;
  width: auto;
}
.press-card__quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-ink-2);
  font-weight: 500;
  font-style: italic;
  position: relative;
  padding-left: var(--s-5);
  border-left: 2px solid var(--color-brand-red);
}
.press-card__source {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand-red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color .15s ease;
}
.press-card__source:hover { border-bottom-color: var(--color-brand-red); }

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
@media (min-width: 760px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-ink) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.testimonial:nth-child(2) .testimonial__avatar { background: linear-gradient(135deg, var(--color-brand-red) 0%, #7a0011 100%); }
.testimonial:nth-child(3) .testimonial__avatar { background: linear-gradient(135deg, #2A2A2A 0%, #6A6A6A 100%); }
.testimonial__rating {
  font-size: 14px;
  color: var(--color-star);
  letter-spacing: 0.14em;
}
.testimonial__text {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-ink-2);
  flex: 1;
}
.testimonial__author {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-ink);
}
.testimonial__context {
  font-size: 13px;
  color: var(--color-ink-muted);
  font-style: italic;
}

.social-proof__stat {
  text-align: center;
  padding-top: var(--s-6);
  border-top: 1px solid var(--color-line-strong);
}
.stat-big {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}
.stat-big span {
  font-weight: 800;
  color: var(--color-brand-red);
}
.stat-small {
  font-size: 14px;
  color: var(--color-ink-muted);
}

/* ============================================================
                      FAQ
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 960px) {
  .faq__grid { grid-template-columns: 1fr 1.4fr; gap: var(--s-9); align-items: start; }
  .faq__head { position: sticky; top: 100px; }
}

.faq__intro {
  margin-top: var(--s-5);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-ink-muted);
  max-width: 44ch;
}

.faq__list { border-top: 1px solid var(--color-line-strong); }
.faq-item { border-bottom: 1px solid var(--color-line-strong); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-ink);
  cursor: pointer;
  list-style: none;
  transition: color .15s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--color-brand-red); }
.faq-item__icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex: none;
  border-radius: var(--r-pill);
  border: 1px solid var(--color-line-strong);
  transition: background .2s ease, border-color .2s ease;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__icon::after  { width: 1.5px; height: 10px; }
.faq-item[open] .faq-item__icon { background: var(--color-brand-red); border-color: var(--color-brand-red); color: #fff; }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__a {
  padding: 0 0 var(--s-5) 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  max-width: 64ch;
}
.faq-item__a strong { color: var(--color-ink-2); }

/* ============================================================
                      CTA FINAL (with car image)
   ============================================================ */
.cta-final {
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cta-final__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 960px) {
  .cta-final__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
.cta-final__visual {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-final__visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(230,0,32,.18) 0%, transparent 65%);
  filter: blur(30px);
  z-index: 0;
}
.cta-final__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.5));
}
.cta-final__copy { max-width: 560px; }
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(230,0,32,.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(0,65,160,.1), transparent 70%);
  pointer-events: none;
}
.cta-final > .container { position: relative; z-index: 1; }
.cta-final__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--s-5);
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill);
}
.cta-final__title {
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin: 0 0 var(--s-5);
}
.cta-final__title em { font-style: italic; font-weight: 500; }
.cta-final__sub {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
  margin: 0 0 var(--s-6);
  max-width: 48ch;
}
.cta-final .btn--primary {
  box-shadow: 0 10px 40px rgba(230,0,32,.5);
}
.cta-final__stats {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}
.cta-final__stats strong {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.cta-final__sep { color: rgba(255,255,255,.3); }

/* ============================================================
                      SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.5);
  padding-block: var(--s-6);
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer__inner { display: flex; flex-direction: column; gap: var(--s-3); }
.site-footer__legal a { color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.2); }
.site-footer__finance { font-size: 12px; color: rgba(255,255,255,.62); max-width: 72ch; }

/* ============================================================
                      STICKY CTA (mobile)
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 40;
  background: var(--color-cta);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25), 0 2px 8px rgba(230,0,32,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.3,1);
  align-items: center;
  gap: 8px;
}
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
@media (max-width: 759px) { .sticky-cta { display: inline-flex; } }

/* ============================================================
                      MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: var(--s-4); }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(6px);
  animation: fadeIn .18s ease;
}
.modal__content {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--r-lg);
  max-width: 460px;
  width: 100%;
  padding: var(--s-8) var(--s-7) var(--s-6);
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s cubic-bezier(.2,.7,.3,1);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

.modal__close {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink-muted);
  transition: background .18s ease, color .18s ease;
}
.modal__close:hover { background: var(--color-bg-soft); color: var(--color-ink); }

.modal__title {
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.modal__title em { font-style: italic; font-weight: 400; }
.modal__sub {
  color: var(--color-ink-muted);
  margin-bottom: var(--s-6);
  font-size: 15px;
  line-height: 1.5;
}

/* ----------  FORM  ---------- */
.form { display: grid; gap: var(--s-4); }
.form--inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-3);
}
.field { display: grid; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-ink-2);
}
.field input,
.form--inline input {
  padding: 14px 16px;
  font-size: 16px;  /* >=16px avoids iOS zoom */
  border: 1.5px solid var(--color-line);
  border-radius: var(--r-sm);
  background: var(--color-bg);
  transition: border-color .18s ease, box-shadow .18s ease;
  font-family: var(--font-body);
}
.field input:focus,
.form--inline input:focus {
  outline: none;
  border-color: var(--color-cta);
  box-shadow: 0 0 0 3px rgba(230,0,32,.15);
}
.field input::placeholder,
.form--inline input::placeholder { color: #B5B1A8; }

.form__legal {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-ink-muted);
  text-align: center;
  margin-top: var(--s-2);
}
.form__legal a { color: var(--color-ink-2); border-bottom: 1px solid var(--color-line-strong); }

/* ----------  SUCCESS  ---------- */
.success { text-align: center; padding-block: var(--s-3); }
.success__icon {
  width: 64px; height: 64px;
  color: var(--color-cta);
  margin: 0 auto var(--s-5);
}
.success__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--s-4);
  letter-spacing: -0.01em;
}
.success__sub {
  font-size: 15px;
  color: var(--color-ink-muted);
  margin-bottom: var(--s-5);
  line-height: 1.5;
}

/* ============================================================
                      REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
                      RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 640px) {
  .topbar__full { display: none; }
  .topbar__short { display: inline; }
  .site-header__cta { display: none; } /* CTA lives in sticky on mobile */
}

@media (min-width: 760px) and (max-width: 960px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits__media { max-width: 400px; margin: 0 auto; }
}
