/* ============================================
   ChrisO Advisory — style.css
   Christopher Ogbebor | LLQP Licensed | Calgary AB
   ============================================ */

:root {
  --ink: #0d1117;
  --ink-muted: #4a5168;
  --ink-faint: #8a90a2;
  --cream: #f8f6f1;
  --warm: #f0ece3;
  --surface: #ffffff;
  --accent: #1b3f6e;
  --accent-light: #e8eef7;
  --accent-mid: #2a5599;
  --gold: #b8841f;
  --gold-light: #fdf6e8;
  --green: #1a4d3c;
  --green-light: #e4f0ea;
  --red-soft: #f7ecea;
  --red: #b83a22;
  --amber-soft: #fef8ec;
  --amber: #b8841f;
  --border: rgba(13, 17, 23, 0.09);
  --border-soft: rgba(13, 17, 23, 0.05);
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes slideQ {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── NAV ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(248, 246, 241, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-brand {
  font-family: "Fraunces", serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-brand span { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-spots {
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-spots-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.8s ease infinite;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}
.nav-cta:hover { background: var(--accent-mid); transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  position: relative;
}

.hero-left {
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--accent);
}

.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.04) brightness(0.96);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--cream) 0%, transparent 8%),
    linear-gradient(to top, rgba(27,63,110,0.55) 0%, transparent 55%);
}

.hero-photo-text {
  position: absolute;
  bottom: 44px; left: 36px; right: 36px;
  z-index: 3;
  color: #fff;
}

.hero-photo-name {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 4px;
}

.hero-photo-cred {
  font-size: 12px;
  opacity: 0.68;
  font-weight: 300;
  line-height: 1.55;
}

.advisor-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
}

.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease infinite;
}

.hero-h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeUp 0.5s 0.08s ease both;
  letter-spacing: -0.02em;
}
.hero-h1 em { font-style: italic; color: var(--accent); }

.hero-personal {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--gold-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 300;
  animation: fadeUp 0.5s 0.14s ease both;
}
.hero-personal em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-sub {
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
  animation: fadeUp 0.5s 0.18s ease both;
}

.social-proof-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  animation: fadeUp 0.5s 0.22s ease both;
}

.sp-num {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.sp-divider {
  width: 1px; height: 32px;
  background: var(--border);
}

.sp-text {
  font-size: 12.5px;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.5;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.26s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-muted);
}

.trust-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 34px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(27, 63, 110, 0.28);
  animation: fadeUp 0.5s 0.3s ease both;
}
.btn-hero:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27, 63, 110, 0.35);
}
.btn-hero svg { transition: transform 0.2s; }
.btn-hero:hover svg { transform: translateX(3px); }

.hero-footnote {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-faint);
  animation: fadeUp 0.5s 0.34s ease both;
}

/* ── WHY CHRISO ──────────────────────────── */
.why-section {
  padding: 80px;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
}

.why-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.why-h {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.why-h em { font-style: italic; color: var(--accent); }

.why-body {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 300;
}
.why-body p { margin-bottom: 14px; }
.why-body p:last-child { margin-bottom: 0; }

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.why-stat-num {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.why-stat-label {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.5;
}

/* ── QUIZ ─────────────────────────────────── */
.quiz-section {
  display: none;
  padding: 100px 24px 80px;
  max-width: 680px;
  margin: 0 auto;
}
.quiz-section.active { display: block; }

.quiz-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.quiz-brand {
  font-family: "Fraunces", serif;
  font-size: 16px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.btn-quizback {
  background: none;
  border: 1px solid var(--border);
  color: var(--ink-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-quizback:hover { background: var(--warm); }

.prog-wrap { margin-bottom: 40px; }

.prog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.prog-cat {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.prog-num { font-size: 12px; color: var(--ink-faint); }

.prog-track {
  height: 2px;
  background: var(--warm);
  border-radius: 100px;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.q-wrap { animation: slideQ 0.35s cubic-bezier(0.4, 0, 0.2, 1) both; }

.q-text {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.q-hint {
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 32px;
  font-weight: 300;
}

.opts { display: grid; gap: 10px; margin-bottom: 32px; }

.opt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  transition: all 0.15s;
  line-height: 1.5;
  width: 100%;
}
.opt:hover { border-color: var(--accent); background: rgba(27, 63, 110, 0.02); }
.opt.sel  { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }

.opt-mark {
  min-width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-faint);
  transition: all 0.15s;
  margin-top: 1px;
  flex-shrink: 0;
}
.opt.sel .opt-mark { background: var(--accent); border-color: var(--accent); color: #fff; }

.q-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-back2 {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  color: var(--ink-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-back2:hover { background: var(--warm); }

.btn-next2 {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: auto;
}
.btn-next2:hover:not(:disabled) { background: var(--accent-mid); }
.btn-next2:disabled { opacity: 0.35; cursor: not-allowed; }

/* ── MICRO-COMMITMENT ────────────────────── */
.micro-section {
  display: none;
  padding: 100px 24px 80px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.micro-section.active { display: block; animation: fadeUp 0.4s ease both; }

.micro-icon { font-size: 48px; margin-bottom: 20px; }

.micro-h {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.micro-p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

.micro-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-yes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(27, 63, 110, 0.25);
}
.btn-yes:hover { background: var(--accent-mid); transform: translateY(-1px); }

.btn-no {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  color: var(--ink-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-no:hover { background: var(--warm); }

/* ── RESULTS ─────────────────────────────── */
.results-section {
  display: none;
  padding: 100px 24px 100px;
  max-width: 720px;
  margin: 0 auto;
}
.results-section.active { display: block; }

.res-header {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeUp 0.5s ease both;
}

.ring-wrap { display: flex; justify-content: center; margin-bottom: 28px; }

.ring-outer { position: relative; width: 150px; height: 150px; }

.ring-svg { transform: rotate(-90deg); }

.ring-track { transition: stroke-dashoffset 1.3s cubic-bezier(0.4, 0, 0.2, 1); }

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-big {
  font-family: "Fraunces", serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
}

.score-sub { font-size: 11px; color: var(--ink-faint); margin-top: 3px; font-weight: 300; }

.res-tier {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.res-desc {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.gaps-wrap {
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.1s ease both;
}

.gaps-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.gap-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 10px;
}

.gap-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.gap-ico.red   { background: var(--red-soft); }
.gap-ico.amber { background: var(--amber-soft); }
.gap-ico.green { background: var(--green-light); }

.gap-body strong {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.gap-body p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 6px;
}

.gap-consequence {
  font-size: 12.5px;
  color: var(--red);
  font-weight: 400;
  line-height: 1.55;
  padding: 8px 12px;
  background: var(--red-soft);
  border-radius: var(--radius-sm);
  margin-top: 4px;
}
.gap-consequence.amber { color: var(--amber); background: var(--amber-soft); }

/* ── CHECKLIST DOWNLOAD ──────────────────── */
.checklist-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gold-light);
  border: 1px solid rgba(184, 132, 31, 0.2);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
  animation: fadeUp 0.5s 0.15s ease both;
}

.checklist-ico { font-size: 28px; flex-shrink: 0; }

.checklist-text strong { font-size: 14px; font-weight: 500; display: block; margin-bottom: 3px; }
.checklist-text p { font-size: 12.5px; color: var(--ink-muted); font-weight: 300; }

.btn-checklist {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.btn-checklist:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── ADVISOR STRIP ────────────────────────── */
.advisor-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  animation: fadeUp 0.5s 0.18s ease both;
}

.strip-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2.5px solid var(--accent);
}

.strip-text strong { font-size: 14px; font-weight: 500; display: block; margin-bottom: 3px; }
.strip-text p { font-size: 12.5px; color: var(--ink-muted); font-weight: 300; line-height: 1.55; }

/* ── CTA BLOCK ────────────────────────────── */
.cta-block {
  background: var(--accent);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.5s 0.22s ease both;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-block::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 14px;
}

.cta-spots {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 18px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.cta-spots.visible { display: inline-flex; }

.cta-spots-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff8080;
  animation: blink 1.8s ease infinite;
}

.cta-h {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.25;
}

.cta-p {
  font-size: 14px;
  opacity: 0.72;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.process-step {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: left;
}

.process-num {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 6px;
  line-height: 1;
}

.process-title {
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.4;
}

.process-body {
  font-size: 11.5px;
  opacity: 0.65;
  line-height: 1.55;
  font-weight: 300;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--accent);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22); }

.cta-foot {
  font-size: 12px;
  opacity: 0.42;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.btn-restart {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-faint);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: "DM Sans", sans-serif;
  padding: 8px;
}

/* ── LEAD CAPTURE CARD ───────────────────── */
.lead-capture-card {
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
  animation: fadeUp 0.5s 0.12s ease both;
}

.lc-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.lc-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.lc-title {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.lc-sub {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.6;
}

.lc-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.lc-form input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.15s;
  outline: none;
}

.lc-form input:focus {
  border-color: var(--accent);
  background: var(--surface);
}

.lc-form input::placeholder {
  color: var(--ink-faint);
}

.lc-privacy {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--ink-faint);
  font-weight: 300;
  line-height: 1.5;
  margin-top: -2px;
}

.lc-submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
}

.lc-submit:hover { background: var(--accent-mid); transform: translateY(-1px); }
.lc-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.lc-error {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--red);
  font-weight: 400;
  min-height: 16px;
}

.lc-thanks {
  text-align: center;
  padding: 8px 0;
}

.lc-thanks-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.lc-thanks strong {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.lc-thanks p {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .lc-form {
    grid-template-columns: 1fr;
  }
  .lead-capture-card {
    padding: 20px 18px;
  }
}

/* ── FOOTER ─────────────────────────────── */
.footer {
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
  background: var(--surface);
}

.footer-brand {
  font-family: "Fraunces", serif;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.footer-brand span { color: var(--accent); }
.footer a { color: inherit; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 28px 48px; order: 2; }
  .hero-right { height: 360px; order: 1; }
  .why-section { padding: 60px 28px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-block { padding: 32px 24px; }
  .nav { padding: 0 20px; }
  .nav-spots { display: none; }
  .footer { flex-direction: column; text-align: center; padding: 24px; }
}

@media (max-width: 480px) {
  .hero-left { padding: 90px 20px 40px; }
  .cta-block { padding: 28px 18px; }
  .checklist-bar { flex-direction: column; text-align: center; }
  .advisor-strip { flex-direction: column; text-align: center; }
}
