/* ═══════════════════════════════════════════════
   VANTAGE POINT — Dark Luxury Design System
   Charlie Conn · advantagebuyers.pplx.app
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --black:       #080a0c;
  --black-rich:  #0c0f12;
  --surface-1:   #111417;
  --surface-2:   #181c21;
  --surface-3:   #1e2329;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(59,130,246,0.25);

  --gold:        #3B82F6;
  --gold-light:  #60A5FA;
  --gold-pale:   rgba(59,130,246,0.12);
  --orange:      #D4540A;
  --orange-glow: rgba(212,84,10,0.18);

  --white:       #ffffff;
  --text:        #e8e4dc;
  --text-muted:  rgba(232,228,220,0.80);
  --text-faint:  rgba(232,228,220,0.52);
  --success:     #4ade80;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 14px;
  --ease:      cubic-bezier(0.4,0,0.2,1);
  --ease-out:  cubic-bezier(0,0,0.2,1);

  --container:   1160px;
  --section-pad: 112px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── PROGRESS RAIL ── */
.progress-rail {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  width: 0%; z-index: 9999;
  transition: width 0.1s linear;
}

/* ── RESUME BANNER ── */
.resume-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: var(--gold); color: var(--black);
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 0.875rem; font-weight: 500;
}
.resume-banner a { font-weight: 700; text-decoration: underline; color: var(--black); }
.resume-close { background: none; border: none; font-size: 1rem; cursor: pointer; color: var(--black); padding: 0 4px; }

/* ── CONTAINER ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--radius);
  transition: all 0.25s var(--ease); cursor: pointer; border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.25);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border-color: var(--border-gold);
}
.btn-outline:hover {
  border-color: var(--gold); background: var(--gold-pale);
}
.btn-ghost {
  background: transparent; color: var(--text-muted);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 16px 40px; font-size: 0.88rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.6;
}
.section-eyebrow--light { color: var(--gold); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem);
  font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: 1rem; font-weight: 500; color: var(--text-muted); line-height: 1.75;
  max-width: 600px;
}
.section-sub--light { color: var(--text-muted); }
.body-text { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.text-gold { color: var(--gold); }

/* ── SECTION SHELL ── */
.section { padding: var(--section-pad) 0; }

/* ── REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ── GOLD LINE DIVIDER ── */
.gold-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,10,12,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.header.scrolled {
  background: rgba(8,10,12,0.98);
  border-bottom-color: rgba(59,130,246,0.15);
  box-shadow: 0 1px 40px rgba(0,0,0,0.6);
}
.header-inner {
  max-width: 1400px; margin: 0 auto; width: 100%;
  padding: 0 32px; display: flex; align-items: center;
  justify-content: space-between; height: 72px; gap: 16px;
  box-sizing: border-box;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 54px; width: auto; object-fit: contain; display: block; }

.nav { display: flex; align-items: center; gap: 0; min-width: 0; }
.nav-link {
  color: var(--text-faint); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 10px; border-radius: 4px;
  transition: all 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--black);
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 16px; border-radius: var(--radius);
  transition: all 0.2s; white-space: nowrap; margin-left: 6px;
}
.nav-cta:hover { background: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-phone {
  color: var(--gold); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.04em; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.header-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-phone:hover { color: var(--gold-light); }

/* Mid-width desktops/tablets: keep every nav item visible, collapse phone to icon-only */
@media (min-width: 1001px) and (max-width: 1220px) {
  .nav-link { font-size: 0.68rem; padding: 8px 7px; letter-spacing: 0.04em; }
  .nav-cta { font-size: 0.68rem; padding: 9px 12px; }
  .header-phone .phone-text { display: none; }
  .header-phone svg { width: 18px; height: 18px; }
  .header-inner { gap: 12px; padding: 0 20px; }
  .logo-img { height: 46px; }
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--text); border-radius: 1px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 20px 32px 28px; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-link {
  color: var(--text-muted); font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 14px 0;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-phone { color: var(--gold); font-weight: 600; }
.mobile-cta {
  margin-top: 16px; background: var(--gold); color: var(--black);
  text-align: center; padding: 16px; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ════════════════════════════════════════
   HERO — CAROUSEL
════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding-top: 72px;
}

.carousel { position: absolute; inset: 0; z-index: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s var(--ease); }
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
}
.slide.active img {
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  0%   { transform: scale(1.14) translate(1.5%, 1%); }
  100% { transform: scale(1.02) translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .slide.active img { animation: none; transform: scale(1.02); }
}
.slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(8,10,12,0.82) 0%,
      rgba(8,10,12,0.52) 45%,
      rgba(8,10,12,0.12) 100%
    ),
    linear-gradient(
      to top,
      rgba(8,10,12,0.65) 0%,
      rgba(8,10,12,0) 30%
    );
}

.carousel-dots {
  position: absolute; bottom: 140px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 10px; z-index: 10;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.3s;
}
.carousel-dot.active { background: var(--gold); border-color: var(--gold); width: 28px; border-radius: 3px; }

/* Hero logo mark */
.hero-logo-mark { margin-bottom: 8px; }
.hero-logo-img {
  height: 80px; width: auto; object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.7));
  display: block;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 10;
  max-width: var(--container); width: 100%;
  margin: 0 auto; padding: 16px 32px 14px;
}
.hero-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
  display: flex; align-items: center; gap: 14px;
  text-shadow: 0 1px 8px rgba(8,10,12,0.9), 0 0 2px rgba(8,10,12,0.8);
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.7; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  font-weight: 700; line-height: 1.02;
  color: var(--white); margin-bottom: 10px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(8,10,12,0.55);
}
.hero-accent { color: var(--gold); }
.hero-desc {
  font-size: 1.02rem; font-weight: 700; font-style: italic; color: var(--white); line-height: 1.48;
  max-width: 620px; margin-bottom: 10px;
  text-shadow: 0 1px 10px rgba(8,10,12,0.85);
}
.hero-desc strong { color: var(--white); font-weight: 700; font-style: italic; }
.hero-credit-badge {
  font-size: 1.02rem; font-weight: 700; font-style: italic; color: var(--white);
  line-height: 1.48; max-width: 620px; margin-bottom: 12px;
  padding: 8px 14px; border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(59,130,246,0.10), rgba(59,130,246,0));
  text-shadow: 0 1px 10px rgba(8,10,12,0.85);
}
.hero-credit-badge strong { color: var(--white); font-weight: 700; font-style: italic; }
.hero-credit-badge em { color: var(--white); font-style: italic; font-weight: 700; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-trust {
  font-size: 0.72rem; color: var(--text-faint);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* Hero stats bar */
.hero-stats {
  position: relative; z-index: 10;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; padding: 28px 32px;
}
.stat { text-align: center; padding: 12px 40px; }
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block; font-size: 0.65rem; color: var(--text-faint);
  letter-spacing: 0.14em; text-transform: uppercase; margin-top: 6px;
}
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ════════════════════════════════════════
   BRAND DIVIDER
════════════════════════════════════════ */
.brand-divider {
  background: var(--surface-1);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 32px 24px;
}
.brand-divider-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.brand-divider-logo { height: 76px; width: auto; object-fit: contain; flex-shrink: 0; }
.brand-divider-text { display: flex; flex-direction: column; gap: 6px; }
.brand-divider-name {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase;
}
.brand-divider-mission {
  font-size: 0.78rem; color: var(--text-faint);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ════════════════════════════════════════
   WHY CHARLIE
════════════════════════════════════════ */
.why-section { background: var(--black-rich); }
.why-section .section-sub { margin-bottom: 56px; }

.compare-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2px; margin-bottom: 2px; }
@media (max-width: 700px) { .compare-grid { grid-template-columns: minmax(0, 1fr); } }

.compare-card { padding: 44px 40px; }
.compare-card--bad {
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.compare-card--good {
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
@media (max-width: 700px) {
  .compare-card--bad { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .compare-card--good { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
}
.compare-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 28px;
  color: rgba(255,255,255,0.25);
}
.compare-label--good { color: var(--gold); }
.compare-list { display: flex; flex-direction: column; gap: 18px; }
.compare-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.92rem; line-height: 1.6;
}
.compare-card--bad .compare-list li { color: var(--text-faint); }
.compare-card--good .compare-list li { color: var(--text-muted); }
.compare-icon { flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; font-weight: 700; }
.compare-icon--bad { color: rgba(255,80,80,0.5); }
.compare-icon--good { color: var(--gold); }

.why-fee-box {
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 40px 44px;
  margin-top: 2px;
}
.why-fee-inner { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.why-fee-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0; border: 1px solid var(--border-gold);
}
.why-fee-title {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 600; color: var(--white); margin-bottom: 8px;
}
.why-fee-desc { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); line-height: 1.7; margin: 0; }
.why-fee-inner .btn { flex-shrink: 0; }

.why-manifesto {
  position: relative;
  margin: 40px 0 2px;
  padding: 48px 56px 44px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
}
.why-manifesto-mark {
  font-family: var(--font-display); font-size: 3.5rem; line-height: 1;
  color: var(--border-gold); margin-bottom: -4px;
}
.why-manifesto-text {
  font-size: 1.05rem; color: var(--text); line-height: 1.8;
  max-width: 720px; margin-bottom: 18px;
}
.why-manifesto-text:last-of-type { margin-bottom: 0; }
.why-manifesto-sign {
  margin-top: 22px; font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}
@media (max-width: 700px) { .why-manifesto { padding: 36px 28px; } }

.why-closer {
  margin-top: 28px; padding: 44px 40px; text-align: center;
  background: var(--black-rich); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}
.why-closer-text {
  font-family: var(--font-display); font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 500; color: var(--white); line-height: 1.5; max-width: 780px;
  margin: 0 auto 28px;
}
.why-closer-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.why-closer-note { font-size: 0.82rem; color: var(--text-faint); letter-spacing: 0.02em; margin: 0; }
@media (max-width: 700px) { .why-closer { padding: 36px 24px; } }

/* ════════════════════════════════════════
   PROCESS
════════════════════════════════════════ */
.process-section { background: var(--black); }
.process-section .section-sub { margin-bottom: 72px; }

.process-track { position: relative; display: flex; flex-direction: column; gap: 0; }
.process-line {
  position: absolute; left: 30px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.2; z-index: 0;
}

.process-step { display: flex; gap: 32px; padding: 0 0 64px 0; position: relative; z-index: 1; }
.process-step:last-child { padding-bottom: 0; }
.process-num {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  color: var(--gold); background: var(--black);
  border: 1px solid var(--border-gold);
  border-radius: 50%; width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0.06em;
}
.process-body { flex: 1; padding-top: 12px; }
.process-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.process-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.process-tag--you { background: rgba(255,255,255,0.05); color: var(--text-faint); border: 1px solid var(--border); }
.process-tag--me { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--border-gold); }
.process-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.process-desc { font-size: 0.92rem; font-weight: 500; color: var(--text-muted); line-height: 1.75; max-width: 580px; }
.process-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 0.72rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: gap 0.2s;
}
.process-link:hover { gap: 14px; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-section { background: var(--surface-1); }
.services-section .section-sub { margin-bottom: 56px; }

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 860px) { .services-grid { grid-template-columns: minmax(0, 1fr); background: none; border: none; gap: 12px; } }

.service-card {
  background: var(--surface-1); padding: 44px 36px;
  display: flex; flex-direction: column;
  transition: background 0.25s;
}
.service-card:hover { background: var(--surface-2); }
.service-card--featured { background: var(--surface-2); }
@media (max-width: 860px) {
  .service-card { border: 1px solid var(--border); border-radius: var(--radius-lg); }
  .service-card--featured { border-color: var(--border-gold); }
}

.service-pill {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 24px; width: fit-content;
}
.service-pill--paid { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--border-gold); }
.service-pill--free { background: rgba(212,84,10,0.15); color: #e87040; border: 1px solid rgba(212,84,10,0.3); }

.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
  border: 1px solid var(--border-gold); background: var(--gold-pale);
}
.service-title {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 600; color: var(--white); margin-bottom: 14px;
}
.service-desc { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 28px; }
.service-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   DEAL DECODER
════════════════════════════════════════ */
.decoder-section {
  background: var(--black-rich);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.decoder-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; align-items: center; }
@media (max-width: 860px) { .decoder-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; } }

.decoder-section .body-text { color: var(--text-muted); }
.decoder-list { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
.decoder-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.6;
}
.decoder-list svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.decoder-badge {
  display: inline-block; background: var(--gold-pale);
  border: 1px solid var(--border-gold); color: var(--gold);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 8px 18px; border-radius: 100px;
}

.decoder-card {
  background: var(--surface-2); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 40px;
}
.decoder-card-top {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.decoder-avatar {
  width: 56px; height: 56px; background: var(--gold); color: var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.decoder-avatar--photo {
  object-fit: cover; object-position: center top;
  border: 2px solid var(--border-gold);
}
.decoder-card-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); }
.decoder-card-role { font-size: 0.75rem; color: var(--text-faint); letter-spacing: 0.04em; margin-top: 2px; }
.decoder-card-quote {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.75;
  font-style: italic; margin-bottom: 24px;
  border-left: 2px solid var(--gold); padding-left: 20px;
}
.decoder-trust { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; color: var(--text-faint); }
.decoder-trust svg { color: var(--gold); flex-shrink: 0; }

/* ════════════════════════════════════════
   INVENTORY
════════════════════════════════════════ */
.inventory-section { background: var(--black); }
.inventory-section .section-sub { margin-bottom: 56px; }

.inv-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 860px) { .inv-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); background: none; border: none; gap: 12px; } }
@media (max-width: 560px) { .inv-grid { grid-template-columns: minmax(0, 1fr); } }

.inv-card { background: var(--surface-1); transition: background 0.25s; }
.inv-card:hover { background: var(--surface-2); }
.inv-card--sold { opacity: 0.35; pointer-events: none; }
.inv-card--cta { background: var(--surface-2); }
@media (max-width: 860px) { .inv-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; } .inv-card--cta { border-color: var(--border-gold); } }

.inv-img { position: relative; height: 200px; background: var(--surface-2); overflow: hidden; }
.inv-img-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: var(--text-faint); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.inv-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--black);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.inv-badge--sold { background: rgba(255,255,255,0.1); color: var(--text-faint); }

.inv-body { padding: 24px 28px; }
.inv-year { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.inv-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.inv-meta { font-size: 0.78rem; color: var(--text-faint); margin-bottom: 14px; }
.inv-location { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-faint); margin-bottom: 16px; }
.inv-location svg { color: var(--gold); flex-shrink: 0; }
.inv-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.inv-cta { display: block; text-align: center; width: 100%; justify-content: center; }
.inv-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.75rem; color: var(--text-faint); margin-top: 32px; letter-spacing: 0.06em; }
.inv-note svg { color: var(--gold); flex-shrink: 0; }

/* ════════════════════════════════════════
   RESULTS
════════════════════════════════════════ */
.results-section { background: var(--surface-1); position: relative; overflow: hidden; }
.results-logo-bg { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); z-index: 0; pointer-events: none; }
.results-bg-logo { height: 480px; width: auto; object-fit: contain; opacity: 0.04; filter: grayscale(1) brightness(10); }
.results-section .container { position: relative; z-index: 1; }
.results-section .section-title { margin-bottom: 16px; }
.results-section .section-sub { margin-bottom: 64px; }

.results-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 64px; }
@media (max-width: 700px) { .results-stats { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.result-stat { background: var(--surface-2); padding: 40px 20px; text-align: center; }
.result-num { display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.result-label { display: block; font-size: 0.65rem; color: var(--text-faint); letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.5; }

.results-photos { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 700px) { .results-photos { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.results-photo { aspect-ratio: 4/3; overflow: hidden; }
.results-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s var(--ease); filter: grayscale(10%); }
.results-photo:hover img { transform: scale(1.04); filter: grayscale(0); }
/* Delivery/real photos: show faces */
.results-photo:nth-child(1) img, .results-photo:nth-child(2) img { object-position: center 20%; }

/* ════════════════════════════════════════
   REVIEWS TEASER
════════════════════════════════════════ */
.reviews-section { background: var(--black); }
.reviews-section .section-sub { margin-bottom: 56px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: minmax(0, 1fr); background: none; border: none; gap: 12px; } }
.review-card--social { cursor: default; }
.review-social-badge { display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #4a90d9; }
.review-social-badge svg { flex-shrink: 0; }

.review-card {
  background: var(--surface-1); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  cursor: pointer; transition: background 0.2s;
}
.review-card:hover { background: var(--surface-2); }
@media (max-width: 760px) { .review-card { border: 1px solid var(--border); border-radius: var(--radius-lg); } }
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; }
.review-card blockquote { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); line-height: 1.75; font-style: italic; flex: 1; }
.review-author { font-size: 0.68rem; font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.12em; }

/* ════════════════════════════════════════
   ROADMAP FORM (inline — index.html)
════════════════════════════════════════ */
.roadmap-section { background: var(--surface-1); }
.roadmap-logo-mark { text-align: center; margin-bottom: 32px; }
.roadmap-logo-img { height: 90px; width: auto; object-fit: contain; margin: 0 auto 12px; }
.roadmap-logo-mission { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.roadmap-section .section-sub { margin-bottom: 56px; }

.roadmap-wrap { max-width: 760px; margin: 0 auto; }

/* Step indicator */
.roadmap-steps { display: flex; align-items: center; margin-bottom: 48px; }
.roadmap-step { display: flex; align-items: center; gap: 12px; cursor: default; }
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-3); color: var(--text-faint);
  border: 1px solid var(--border);
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.roadmap-step.active .step-dot { background: var(--gold); color: var(--black); border-color: var(--gold); }
.roadmap-step.done .step-dot { background: var(--surface-3); color: var(--gold); border-color: var(--border-gold); }
.step-label { font-size: 0.75rem; font-weight: 500; color: var(--text-faint); white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; }
.roadmap-step.active .step-label { color: var(--gold); }
.roadmap-connector { flex: 1; height: 1px; background: var(--border); margin: 0 14px; }

/* Form panels */
.form-panel { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.panel-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.panel-hint { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 28px; letter-spacing: 0.02em; }
.panel-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; gap: 12px; }
.panel-nav-right { display: flex; gap: 10px; align-items: center; }

/* Form inputs */
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: minmax(0, 1fr); } }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.72rem; font-weight: 600; color: var(--text-faint); letter-spacing: 0.1em; text-transform: uppercase; }
.form-hint { font-weight: 400; color: var(--text-faint); text-transform: none; letter-spacing: 0; }
.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  font-size: 0.92rem; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
  background: var(--surface-2);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--surface-3); color: var(--text); }

.radio-group { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.radio-label { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; cursor: pointer; color: var(--text-muted); text-transform: none; letter-spacing: 0; }

.form-note { font-size: 0.75rem; color: var(--text-faint); text-align: center; margin-top: 12px; letter-spacing: 0.04em; }

.chip-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.chip-option { position: relative; }
.chip-option input {
  position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none;
}
.chip-option span {
  display: inline-flex; align-items: center; padding: 9px 16px;
  background: var(--surface-3); border: 1px solid var(--border);
  border-radius: 999px; font-size: 0.82rem; color: var(--text-muted);
  cursor: pointer; transition: all 0.2s; user-select: none; text-transform: none; letter-spacing: 0;
}
.chip-option input:checked + span {
  background: var(--gold-pale); border-color: var(--gold); color: var(--gold-light); font-weight: 600;
}
.chip-option input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.chip-option:hover span { border-color: var(--border-gold); }

/* Success */
.success-state { text-align: center; padding: 72px 20px; }
.success-icon {
  width: 72px; height: 72px;
  background: var(--gold-pale); border: 1px solid var(--border-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; color: var(--gold);
}
.success-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.success-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* ════════════════════════════════════════
   BOOK A CALL
════════════════════════════════════════ */
.book-section { background: var(--black-rich); }
.book-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; align-items: center; }
@media (max-width: 760px) { .book-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; } }

.book-perks { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.book-perk { display: flex; align-items: center; gap: 14px; font-size: 0.88rem; color: var(--text-muted); }
.book-perk svg { color: var(--gold); flex-shrink: 0; }

.book-card {
  background: var(--surface-2); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 40px;
}
.book-divider { display: flex; align-items: center; gap: 12px; color: var(--text-faint); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 20px 0; }
.book-divider::before, .book-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.book-note { font-size: 0.75rem; color: var(--text-faint); text-align: center; margin-top: 14px; letter-spacing: 0.04em; }

/* ════════════════════════════════════════
   REFERRAL
════════════════════════════════════════ */
.referral-section { background: var(--surface-1); }
.referral-section .section-sub { margin-bottom: 56px; }

.referral-grid { display: grid; grid-template-columns: minmax(0, 1fr) 1.5fr; gap: 64px; align-items: start; }
@media (max-width: 800px) { .referral-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; } }

.referral-how-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 28px; }
.referral-steps-list { display: flex; flex-direction: column; gap: 24px; }
.ref-step { display: flex; gap: 16px; align-items: flex-start; }
.ref-num {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--gold-pale); color: var(--gold);
  border: 1px solid var(--border-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem;
}
.ref-step strong { display: block; font-size: 0.88rem; margin-bottom: 4px; color: var(--white); }
.ref-step p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
.ref-disclaimer {
  margin-top: 32px; font-size: 0.78rem; color: var(--text-faint);
  border-left: 1px solid var(--border-gold);
  padding-left: 16px; line-height: 1.7;
}

.referral-form-wrap {
  background: var(--surface-2); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 40px;
}
.ref-form-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 28px; }
.ref-divider { display: flex; align-items: center; gap: 12px; color: var(--text-faint); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 20px 0; }
.ref-divider::before, .ref-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.ref-success { text-align: center; padding: 48px 20px; }
.ref-success-icon { width: 56px; height: 56px; background: var(--gold-pale); border: 1px solid var(--border-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gold); font-size: 1.4rem; font-weight: 700; }
.ref-success h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); margin-bottom: 10px; }
.ref-code-note { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-section { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 1.4fr; gap: 80px; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; } }

.contact-items { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: var(--surface-1);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.contact-item:hover { border-color: var(--border-gold); background: var(--surface-2); }
.contact-icon {
  width: 40px; height: 40px; background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: var(--gold); flex-shrink: 0;
}
.contact-label { font-size: 0.65rem; font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 2px; }
.contact-val { font-size: 0.9rem; font-weight: 500; color: var(--text); }

.contact-form-wrap {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: var(--black-rich); padding: 72px 0 0; border-top: 1px solid var(--border-gold); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr) 2fr; gap: 64px; padding-bottom: 56px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; } }

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo-img { height: 100px; width: auto; object-fit: contain; display: block; }
.footer-mission { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.footer-tagline { font-size: 0.82rem; color: var(--text-faint); line-height: 1.7; margin-bottom: 20px; }
.footer-phone { font-size: 0.88rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }
.footer-phone:hover { color: var(--gold-light); }

.footer-nav { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
.footer-nav-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 20px; }
.footer-nav-col { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-col a { font-size: 0.85rem; color: var(--text-faint); transition: color 0.2s; letter-spacing: 0.02em; }
.footer-nav-col a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; }
.footer-bottom p { font-size: 0.7rem; color: var(--text-faint); text-align: center; letter-spacing: 0.08em; text-transform: uppercase; }

/* ════════════════════════════════════════
   RESPONSIVE OVERRIDES
════════════════════════════════════════ */
@media (max-width: 1000px) {
  .nav, .header-phone { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 860px) {
  :root { --section-pad: 72px; }
  .hero-logo-mark { text-align: center; }
  .hero-logo-img { height: 140px; margin: 0 auto; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .stat-divider { display: none; }
  .hero-stats { gap: 0; }
  .stat { padding: 14px 20px; }
  .stat-num { font-size: 1.8rem; }
  .why-fee-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .roadmap-steps { margin-bottom: 32px; }
  .roadmap-step { gap: 0; }
  .step-label { display: none; }
  .roadmap-connector { margin: 0 6px; }
  .container { padding: 0 20px; }
  .hero-content { padding: 40px 20px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process-line { display: none; }
  .process-step { flex-direction: column; gap: 14px; }
  .process-num { width: 48px; height: 48px; }
  .results-stats { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .compare-card { padding: 28px 24px; }
  .brand-divider-inner { flex-direction: column; text-align: center; }
}

.inv-img--cta { display:flex; align-items:center; justify-content:center; background: var(--surface-3); }
.inv-cta-inner { color: var(--gold); opacity: 0.85; }

/* ── PAYMENT CALCULATOR ── */
.payment-calc {
  margin-top: 56px;
  background: linear-gradient(160deg, rgba(59,130,246,0.07), rgba(17,24,39,0.6));
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 980px;
  margin-left: auto; margin-right: auto;
}
.calc-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 36px; align-items: start; margin-top: 8px; }
@media (max-width: 780px) { .calc-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; } }
.optional { text-transform: none; color: var(--text-faint); font-weight: 400; letter-spacing: 0; }
.calc-az-fields {
  margin-top: 4px; padding: 16px 16px 4px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 10px;
}
.calc-az-note { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0 0 14px; }
.calc-results {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 22px 20px;
}
.calc-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem; color: var(--text-muted);
}
.calc-row strong { color: var(--white); font-weight: 600; font-size: 0.98rem; text-align: right; }
.calc-row:last-of-type { border-bottom: none; }
.calc-row--total { margin-top: 4px; border-top: 1.5px solid var(--border-gold); border-bottom: 1.5px solid var(--border-gold); padding: 14px 0; }
.calc-row--total strong { color: var(--gold-light); font-size: 1.15rem; }
.calc-row--payment strong { color: var(--gold); font-size: 1.35rem; font-family: var(--font-display); }
.calc-row--savings strong { color: #34d399; }
.calc-disclaimer { margin-top: 16px; font-size: 0.74rem; line-height: 1.55; color: var(--text-faint); }
.calc-disclaimer a { color: var(--gold); }
.calc-tax-note { margin: -4px 0 0; padding: 0 0 10px; font-size: 0.72rem; line-height: 1.4; color: var(--text-faint); font-style: italic; }
@media (max-width: 560px) { .payment-calc { padding: 28px 20px; } }

/* ── DEAL REVIEW UPLOAD ── */
.deal-review {
  margin-top: 56px;
  background: linear-gradient(160deg, rgba(59,130,246,0.07), rgba(17,24,39,0.6));
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.deal-review-title { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2rem); text-transform: uppercase; letter-spacing: 0.01em; margin: 6px 0 12px; color: var(--white); }
.deal-review-head .body-text { margin-bottom: 24px; }
.dr-drop {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: 12px;
  border: 1.5px dashed rgba(59,130,246,0.45);
  background: rgba(59,130,246,0.06);
  color: var(--text-muted); font-size: 0.92rem; text-align: left;
  transition: border-color 0.2s, background 0.2s;
}
.dr-drop:hover { border-color: var(--gold); background: rgba(59,130,246,0.1); }
.dr-drop svg { flex-shrink: 0; color: var(--gold); }
.dr-drop strong { color: var(--text); }
.dr-drop-error { border-color: #ef4444 !important; background: rgba(239,68,68,0.08) !important; animation: drShake 0.4s; }
@keyframes drShake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)} }
.dr-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; align-items: center; }
.dr-thumb { position: relative; width: 72px; height: 72px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: var(--surface-2); display: flex; align-items: center; justify-content: center; }
.dr-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dr-thumb-pdf { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; }
.dr-thumb-x {
  position: absolute; top: 2px; right: 2px; width: 20px; height: 20px;
  border-radius: 50%; background: rgba(0,0,0,0.75); color: #fff;
  font-size: 14px; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.dr-thumb-count { font-size: 0.78rem; color: var(--text-faint); }
.dr-roadmap-status { margin: 4px 0 18px; font-size: 0.85rem; line-height: 1.5; }
.dr-rm-ok { color: #34d399; }
.dr-rm-miss { color: var(--text-muted); }
.dr-rm-miss a { color: var(--gold); text-decoration: underline; }
.dr-submit { width: 100%; justify-content: center; }
.dr-privacy { margin-top: 14px; font-size: 0.8rem; color: var(--text-faint); text-align: center; }
.dr-success { text-align: center; padding: 24px 10px; }
.dr-success-icon {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(52,211,153,0.15); color: #34d399; font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(52,211,153,0.4);
}
.dr-success h4 { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; margin-bottom: 10px; color: var(--white); }
.dr-success p { color: var(--text-muted); max-width: 480px; margin: 0 auto; line-height: 1.6; }
.dr-success a { color: var(--gold); font-weight: 600; }
@media (max-width: 560px) {
  .deal-review { padding: 28px 20px; margin-top: 40px; }
}

/* ── RESULTS COACHING CLOSER ── */
.results-coaching { max-width: 640px; margin: 56px auto 0; text-align: center; }
.results-coaching-text { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.7; margin-bottom: 22px; }
.results-coaching-quote { font-family: var(--font-display); font-size: clamp(1.35rem, 4.5vw, 1.9rem); font-weight: 600; text-transform: uppercase; letter-spacing: 0.01em; color: var(--white); line-height: 1.3; margin-bottom: 12px; }
.results-coaching-sig { font-size: 0.85rem; color: var(--gold-light); font-weight: 600; letter-spacing: 0.06em; }
@media (max-width: 560px) { .results-coaching { margin-top: 40px; } }

/* ════════════════════════════════════════
   SITE BACKDROP — fixed Chevrolet cycle
   (built by backdrop.js, stays behind every section)
════════════════════════════════════════ */
html { background: var(--black); }
.site-backdrop {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden; background: var(--black);
  pointer-events: none;
}
.bd-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.8s var(--ease);
  will-change: opacity;
}
.bd-slide.active { opacity: 1; }
.bd-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%;
  transform: scale(1);
}
.bd-slide.active img { animation: bdDrift 9s ease-out forwards; }
@keyframes bdDrift {
  0%   { transform: scale(1.07) translate(0.6%, 0.4%); }
  100% { transform: scale(1.0)  translate(0, 0); }
}
/* Portrait phones: show the whole vehicle instead of cropping it */
@media (orientation: portrait) and (max-width: 860px) {
  .bd-slide img { object-fit: contain; object-position: 50% 42%; }
  .bd-slide.active img { animation: bdDriftMobile 9s ease-out forwards; }
  @keyframes bdDriftMobile {
    0%   { transform: scale(1.04); }
    100% { transform: scale(1.0); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .bd-slide.active img { animation: none; }
}
.bd-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,10,12,0.72) 0%, rgba(8,10,12,0.28) 30%, rgba(8,10,12,0.22) 62%, rgba(8,10,12,0.78) 100%);
}
.bd-caption {
  position: absolute; right: 22px; bottom: 18px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  font-family: var(--font-display); text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.bd-caption-brand { font-size: 0.6rem; letter-spacing: 0.28em; color: rgba(232,228,220,0.55); }
.bd-caption-model { font-size: 0.95rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.85); font-weight: 600; }
@media (max-width: 860px) { .bd-caption { right: 14px; bottom: 12px; } .bd-caption-model { font-size: 0.8rem; } }

/* ── Pages with the backdrop: let the cars show through ── */
body.has-backdrop { background: transparent; }
body.has-backdrop .hero { background: transparent; }
.hero-shade {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(135deg, rgba(8,10,12,0.80) 0%, rgba(8,10,12,0.48) 48%, rgba(8,10,12,0.06) 100%),
    linear-gradient(to top, rgba(8,10,12,0.55) 0%, rgba(8,10,12,0) 28%);
}
body.has-backdrop :is(.section, .inv-sold-section, .inv-cta-band, .brand-divider, .page-cta-strip) {
  background: rgba(10,13,16,0.80);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  max-width: 1400px;
  margin: 0 auto 28px;
  position: relative;
}
body.has-backdrop .section { padding: 72px 0; }
body.has-backdrop .page-hero {
  background: linear-gradient(to bottom, rgba(8,10,12,0.55) 0%, rgba(8,10,12,0.25) 100%);
  border-bottom: none; margin-bottom: 28px;
}
body.has-backdrop .page-hero-title, body.has-backdrop .page-hero-sub { text-shadow: 0 2px 14px rgba(0,0,0,0.75); }
body.has-backdrop :is(.footer, .page-footer) { background: rgba(8,10,12,0.90); }
body.has-backdrop .header { background: rgba(8,10,12,0.78); }
@media (max-width: 1440px) {
  body.has-backdrop :is(.section, .inv-sold-section, .inv-cta-band, .brand-divider, .page-cta-strip) { margin-left: 20px; margin-right: 20px; }
}
@media (max-width: 860px) {
  body.has-backdrop :is(.section, .inv-sold-section, .inv-cta-band, .brand-divider, .page-cta-strip) { margin: 0 10px 18px; border-radius: 12px; }
  body.has-backdrop .section { padding: 52px 0; }
}

/* ════════════════════════════════════════
   HOME — DOORS (three ways in)
════════════════════════════════════════ */
.doors-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 40px;
}
.door {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 34px 30px 30px; border-radius: var(--radius-lg);
  background: rgba(24,28,33,0.72); border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out), border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.door::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out);
}
.door:hover { transform: translateY(-4px); border-color: var(--border-gold); background: rgba(30,35,41,0.85); }
.door:hover::after { transform: scaleX(1); }
.door-icon {
  width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  background: var(--gold-pale); color: var(--gold-light); border: 1px solid var(--border-gold);
}
.door-icon svg { width: 22px; height: 22px; }
.door-kicker { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.door-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--white); line-height: 1.1; }
.door-desc { font-size: 0.9rem; line-height: 1.65; color: var(--text-muted); flex: 1; }
.door-cta { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); display: inline-flex; align-items: center; gap: 8px; }
.door-cta::after { content: '→'; transition: transform 0.3s; }
.door:hover .door-cta::after { transform: translateX(4px); }
.doors-more {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 30px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.doors-more a { color: var(--text-faint); transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.doors-more a:hover { color: var(--gold-light); }
@media (max-width: 900px) { .doors-grid { grid-template-columns: 1fr; gap: 14px; } .door { padding: 28px 24px 26px; } }

/* ════════════════════════════════════════
   HOME — PROOF STRIP
════════════════════════════════════════ */
.proof-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 28px; margin-top: 36px; align-items: stretch; }
.proof-photos { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 6px; }
.proof-photo { aspect-ratio: 4/3; overflow: hidden; border-radius: 10px; border: 1px solid var(--border); }
.proof-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform 0.6s var(--ease); }
.proof-photo:hover img { transform: scale(1.04); }
.proof-quotes { display: flex; flex-direction: column; gap: 14px; }
.proof-quotes .review-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 26px; background: rgba(24,28,33,0.72); }
.proof-quotes .review-card blockquote { font-size: 0.95rem; }
.proof-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-photos { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .proof-photo:nth-child(n+3) { display: none; }
}

/* ════════════════════════════════════════
   SOURCING — ADAPTIVE REQUEST FORM
════════════════════════════════════════ */
.path-picker { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-bottom: 8px; }
.path-card {
  display: flex; flex-direction: column; gap: 6px; padding: 16px 16px 14px; text-align: left;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text-muted); cursor: pointer; transition: all 0.25s var(--ease);
}
.path-card:hover { border-color: rgba(255,255,255,0.16); color: var(--text); }
.path-card.active { border-color: var(--gold); background: var(--gold-pale); color: var(--white); box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.path-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.02em; }
.path-card-sub { font-size: 0.72rem; line-height: 1.4; }
.path-card.active .path-card-sub { color: rgba(255,255,255,0.8); }
.path-intro { margin: 18px 0 26px; padding: 18px 22px; border-left: 2px solid var(--gold); background: rgba(59,130,246,0.06); border-radius: 0 var(--radius) var(--radius) 0; }
.path-intro p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }
.path-intro p strong { color: var(--text); font-weight: 500; }
.path-fields[hidden] { display: none; }
.fieldset-title {
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin: 26px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.chip-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chip span {
  display: block; padding: 10px 12px; font-size: 0.8rem; line-height: 1.3;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; color: var(--text-muted);
  transition: all 0.2s;
}
.chip input:checked + span { border-color: var(--gold); background: var(--gold-pale); color: var(--white); }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(59,130,246,0.25); }
@media (min-width: 640px) { .chip-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 640px) { .path-picker { grid-template-columns: 1fr; } }

/* Compact home hero (backdrop version) */
.hero--compact { min-height: 92vh; }
.hero--compact .hero-desc { text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.hero--compact .hero-title, .hero--compact .hero-eyebrow { text-shadow: 0 2px 16px rgba(0,0,0,0.75); }
@media (max-width: 860px) { .hero--compact { min-height: auto; padding-bottom: 8px; } }

body.has-backdrop .hero-stats { background: rgba(8,10,12,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
#orderRequestForm [hidden] { display: none !important; }
@media (max-width: 860px) {
  body.has-backdrop :is(.section, .inv-sold-section, .inv-cta-band, .brand-divider, .page-cta-strip) { background: rgba(10,13,16,0.74); }
  body.has-backdrop .section-title, body.has-backdrop .section-sub, body.has-backdrop .door-desc { text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
  .bd-caption { display: none; }
}
