/* ===========================================
   GAPLY FUNNEL - Shared Design System v2
   Hormozi/acquisition.com pattern (centered)
   Gaply brand: teal #24d7d3 + Poppins
   =========================================== */

:root {
  --teal: #24d7d3;
  --teal-dark: #1bb5b2;
  --teal-soft: #e6faf9;

  --ink: #0a0e1a;
  --ink-soft: #1d2330;
  --text: #2c3340;
  --mute: #6b7785;
  --line: #e6ebf2;

  --bg: #ffffff;
  --bg-2: #f7f9fc;
  --bg-3: #0a0e1a;

  --radius: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(10, 14, 26, 0.05);
  --shadow: 0 4px 24px rgba(10, 14, 26, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 14, 26, 0.12);

  --section-y: clamp(72px, 9vw, 120px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--ink); text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* Lists / grids stay left-aligned inside centered narrow containers */
.container-narrow .value-list,
.container-narrow .faq,
.container-narrow ul.value-list { text-align: left; }

.section { padding: var(--section-y) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-dark { background: var(--bg-3); color: #ffffff; }
.section-soft { background: var(--bg-2); }

.balance { text-wrap: balance; }

/* ===== TYPOGRAPHY ===== */
.h1, h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
}
.h2, h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px;
}
.h3, h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}

p { margin: 0 0 16px; }
.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 16px;
}
.eyebrow-accent { color: var(--teal-dark); }

.text-teal { color: var(--teal-dark); }
.text-mute { color: var(--mute); }

strong, b { font-weight: 600; color: var(--ink); }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-logo .dot { color: var(--teal); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 14, 26, 0.18);
}
.btn-primary:hover { background: var(--ink-soft); box-shadow: 0 8px 20px rgba(10, 14, 26, 0.24); }

.btn-accent {
  background: var(--teal);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(36, 215, 211, 0.32);
}
.btn-accent:hover { background: var(--teal-dark); color: #ffffff; box-shadow: 0 8px 20px rgba(36, 215, 211, 0.4); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-block { width: 100%; padding: 16px 28px; font-size: 16px; }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* ===== HERO ===== */
.hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero > .container {
  text-align: center;
  max-width: 880px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: var(--teal-soft);
  border: 1px solid rgba(36, 215, 211, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-dark);
  margin-bottom: 24px;
  text-transform: none;
}
.hero-eyebrow .pulse {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(36, 215, 211, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(36, 215, 211, 0); }
}
.hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 18ch;
}
.hero .lead {
  margin: 0 auto 36px;
  max-width: 620px;
}

/* Video placeholder - centered */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 36px auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, #131a2c 100%);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.video-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(36, 215, 211, 0.2);
  z-index: 1;
}
.video-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-44%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid var(--ink);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  z-index: 2;
}

/* Hero form - centered */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 16px;
  text-align: left;
}
.hero-form input, .hero-form select {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: #ffffff;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.hero-form input:focus, .hero-form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.hero-form .secondary-link {
  font-size: 13px;
  color: var(--mute);
  margin-top: 6px;
  text-align: center;
}
.hero-form .secondary-link a {
  color: var(--teal-dark);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

/* Proof bar - centered */
.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--mute);
  font-weight: 500;
}
.proof-bar strong { color: var(--ink); font-weight: 600; }
.proof-divider::before { content: "·"; margin-right: 24px; color: var(--line); }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}
.step {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}
.step:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: #ffffff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ===== VALUE LIST ===== */
.value-list {
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  display: grid;
  gap: 16px;
  max-width: 580px;
  text-align: left;
}
.value-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.55;
}
.value-list li::before {
  content: "★";
  color: var(--teal);
  font-size: 18px;
  line-height: 1.55;
}

/* ===== FOR / NOT FOR ===== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px auto 0;
  max-width: 880px;
  text-align: left;
}
.who-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.who-card.for {
  background: var(--teal-soft);
  border-color: rgba(36, 215, 211, 0.25);
}
.who-card.notfor { background: var(--bg-2); }
.who-card h3 { margin-bottom: 18px; }
.who-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 15px;
}
.who-card.for ul li::before { content: "✓ "; color: var(--teal-dark); font-weight: 700; margin-right: 4px; }
.who-card.notfor ul li::before { content: "✗ "; color: var(--mute); font-weight: 700; margin-right: 4px; }

/* ===== FOUNDERS ===== */
.founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin: 48px auto 0;
  max-width: 920px;
  text-align: center;
}
.founder { text-align: center; }
.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-soft), var(--bg-2));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
  border: 2px solid var(--line);
  overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-name { font-weight: 700; color: var(--ink); margin-bottom: 4px; font-size: 17px; }
.founder-role { color: var(--teal-dark); font-size: 12px; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.founder-bio { font-size: 14px; color: var(--text); line-height: 1.55; }

/* ===== LOGO WALL ===== */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 28px;
  align-items: center;
  margin: 48px auto 0;
  max-width: 920px;
  opacity: 0.7;
}
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

/* ===== CASES ===== */
.cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px auto 0;
  max-width: 920px;
  text-align: left;
}
.case {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.case-quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-style: italic;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--ink);
  color: #ffffff;
  padding: clamp(56px, 7vw, 88px) 0;
  text-align: center;
}
.cta-banner h2 { color: #ffffff; max-width: 18ch; margin-left: auto; margin-right: auto; }
.cta-banner .lead { color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; }
.cta-banner .eyebrow { color: rgba(255, 255, 255, 0.6); }

/* ===== FAQ ===== */
.faq {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 720px;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item details { padding: 22px 0; }
.faq-item summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--teal-dark);
  font-weight: 300;
  transition: transform 200ms ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item details[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-3);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.footer-brand {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 8px;
}
.footer-brand .dot { color: var(--teal); }
.footer-col h5 { color: #ffffff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 16px; font-weight: 600; }
.footer-col a { color: rgba(255, 255, 255, 0.65); display: block; padding: 6px 0; transition: color 120ms ease; font-size: 14px; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }

.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ===== OFFER BLOCK ===== */
.offer-block {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--bg);
  margin: 32px auto;
  max-width: 540px;
  text-align: center;
}
.offer-price {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.offer-price-old {
  text-decoration: line-through;
  color: var(--mute);
  font-size: 24px;
  font-weight: 500;
  margin-left: 12px;
}
.offer-price-suffix {
  display: inline-block;
  margin-left: 8px;
  font-size: 16px;
  color: var(--mute);
  font-weight: 500;
}
.offer-block .value-list { text-align: left; margin-top: 24px; }

/* ===== SCARCITY ===== */
.scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff8e6;
  border: 1px solid #f5d77a;
  border-radius: 999px;
  font-size: 14px;
  color: #6b4f12;
  font-weight: 500;
  margin-top: 16px;
}
.scarcity::before { content: "⚡"; }

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 32px; }
  .h2, h2 { font-size: 26px; }
  .nav-inner { padding: 14px 0; }
  .nav-logo { font-size: 19px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .video-wrap::before { width: 56px; height: 56px; }
  .video-wrap::after { border-left-width: 14px; border-top-width: 10px; border-bottom-width: 10px; }
  .proof-bar { font-size: 12px; gap: 12px 18px; }
  .proof-divider::before { margin-right: 18px; }
  .offer-block { padding: 28px 22px; }
  .offer-price { font-size: 36px; }
  .btn-lg { padding: 15px 24px; font-size: 16px; }
}

/* ===========================================
   WIZARD (Typeform-style sequential capture)
   =========================================== */

.wizard {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  text-align: left;
}
.wizard-progress {
  height: 6px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
  width: 0%;
  transition: width 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.wizard-meta {
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  background: #fafbfc;
}
.wizard-step {
  display: none;
  padding: 44px 40px 32px;
  text-align: left;
  animation: wizardFadeIn 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.wizard-step.active { display: block; }
@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.wizard-step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wizard-step-label {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.18;
}
.wizard-step-helper {
  font-size: 15px;
  color: var(--mute);
  margin: 0 0 28px;
  line-height: 1.5;
}
.wizard-input,
.wizard-textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 17px;
  background: #ffffff;
  transition: border-color 120ms ease, box-shadow 120ms ease;
  font-weight: 500;
}
.wizard-textarea { resize: vertical; min-height: 96px; }
.wizard-input:focus,
.wizard-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.wizard-options {
  display: grid;
  gap: 10px;
}
.wizard-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  background: #ffffff;
  transition: all 140ms ease;
  text-align: left;
  width: 100%;
}
.wizard-option:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  transform: translateY(-1px);
}
.wizard-option.selected {
  border-color: var(--teal-dark);
  background: var(--teal-soft);
  color: var(--ink);
}
.wizard-option-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--mute);
  flex-shrink: 0;
  background: #fff;
}
.wizard-option.selected .wizard-option-key,
.wizard-option:hover .wizard-option-key {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
  background: #fff;
}
.wizard-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.wizard-controls .btn { padding: 12px 22px; font-size: 14px; }
.wizard-back {
  background: transparent;
  color: var(--mute);
  border: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
}
.wizard-back:hover { color: var(--ink); }
.wizard-hint {
  font-size: 12px;
  color: var(--mute);
  margin-left: auto;
}
.wizard-hint kbd {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin-right: 4px;
}
.wizard-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 12px;
  min-height: 18px;
  font-weight: 500;
}
.wizard-tease {
  margin-top: 20px;
  padding: 14px 18px;
  background: linear-gradient(90deg, var(--teal-soft) 0%, rgba(230, 250, 249, 0.4) 100%);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-soft);
  border-left: 3px solid var(--teal);
}
.wizard-tease strong { color: var(--teal-dark); }

/* Completion screen */
.wizard-complete {
  padding: 56px 40px;
  text-align: center;
  display: none;
  animation: wizardFadeIn 500ms;
}
.wizard-complete.active { display: block; }
.wizard-complete-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px var(--teal-soft);
}
.wizard-complete-icon::after {
  content: "";
  width: 22px;
  height: 12px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg) translate(2px, -2px);
}
.wizard-complete h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 10px;
}
.wizard-complete .lead {
  margin: 0 auto 28px;
  max-width: 460px;
}
.wizard-upsell {
  background: linear-gradient(180deg, var(--bg-2) 0%, #ffffff 100%);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 32px auto 0;
  text-align: left;
  max-width: 540px;
  box-shadow: 0 4px 20px rgba(36, 215, 211, 0.12);
}
.wizard-upsell .eyebrow { margin-bottom: 8px; display: block; }
.wizard-upsell h3 { margin-bottom: 10px; font-size: 20px; }
.wizard-upsell p { font-size: 15px; margin-bottom: 18px; color: var(--text); }
.wizard-upsell .btn { width: 100%; }

@media (max-width: 600px) {
  .wizard-step { padding: 32px 24px 24px; }
  .wizard-step-label { font-size: 20px; }
  .wizard-input, .wizard-option { font-size: 15px; }
  .wizard-meta { padding: 12px 24px; }
  .wizard-complete { padding: 40px 24px; }
}

/* ===== Wizard top back-bar (always visible after step 1) ===== */
.wizard-back-top {
  background: transparent;
  border: none;
  color: var(--mute);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.18s ease;
}
.wizard-back-top:hover { color: var(--ink); }

/* ===== Wizard detail input (revealed when an option needs a follow-up) ===== */
.wizard-detail-wrap {
  display: none;
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--teal-soft);
  border-radius: 10px;
  border: 1px solid var(--teal);
}
.wizard-detail-wrap.active { display: block; }
.wizard-detail-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.wizard-detail-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.wizard-detail-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(36, 215, 211, 0.15);
}

/* ===== Compact hero (wizard in the top fold) ===== */
.hero-compact {
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-compact h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-bottom: 14px;
}
.hero-compact .lead {
  font-size: clamp(15px, 1.8vw, 18px);
  margin-bottom: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.proof-line {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}
.hero-wizard {
  margin-top: 8px;
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .hero-compact { padding-top: 36px; padding-bottom: 40px; }
  .proof-line { margin-bottom: 20px; }
}

/* ===== Two-column hero: copy left, form right ===== */
.hero-compact .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  text-align: left;
}
.hero-compact .hero-copy {
  text-align: left;
  padding-top: 24px;
}
.hero-compact .hero-copy h1 {
  font-size: clamp(32px, 4.2vw, 50px);
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero-compact .hero-copy .lead {
  margin: 0 0 22px;
  max-width: 100%;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.45;
}
.hero-compact .hero-copy .proof-line {
  margin: 0;
}
.hero-compact .hero-form-col .hero-wizard {
  margin: 0;
  max-width: 100%;
}
@media (max-width: 960px) {
  .hero-compact .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-compact .hero-copy {
    text-align: center;
    padding-top: 0;
  }
  .hero-compact .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
  }
}

/* ===========================================
   MOBILE OPTIMIZATION PASS (priority pages)
   =========================================== */

@media (max-width: 600px) {
  /* Container padding so nothing touches the screen edge */
  .container,
  .container-narrow {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Hero: stack neatly, tighter sizing */
  .hero-compact {
    padding-top: 28px;
    padding-bottom: 36px;
  }
  .hero-compact h1 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.1;
    margin-bottom: 12px;
  }
  .hero-compact .lead {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 14px;
  }
  .hero-compact .hero-copy {
    padding-top: 0;
  }
  .proof-line {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .hero-compact .hero-grid {
    gap: 24px;
  }

  /* Wizard: tighter padding, bigger tap targets */
  .wizard {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
  .wizard-step {
    padding: 24px 18px 18px;
  }
  .wizard-step-num {
    font-size: 11px;
  }
  .wizard-step-label {
    font-size: 19px;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .wizard-step-helper {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  .wizard-input,
  .wizard-textarea {
    font-size: 16px;          /* avoids iOS auto-zoom */
    padding: 14px 16px;
  }
  .wizard-option {
    min-height: 52px;
    font-size: 15px;
    padding: 14px 14px 14px 48px;
    line-height: 1.3;
  }
  .wizard-option-key {
    left: 12px;
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  .wizard-meta {
    padding: 11px 18px;
    font-size: 10px;
  }
  .wizard-controls {
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .wizard-controls .btn {
    width: 100%;
    padding: 14px 20px;
  }
  .wizard-detail-wrap {
    padding: 14px 14px;
  }
  .wizard-back-top {
    font-size: 13px;
    padding-bottom: 12px;
  }
  .wizard-complete {
    padding: 32px 20px;
  }
  .wizard-complete h2 {
    font-size: 22px;
  }
  .wizard-complete .lead {
    font-size: 15px;
  }
  .wizard-upsell {
    padding: 22px 18px;
    margin-top: 24px;
  }
  .wizard-upsell h3 {
    font-size: 17px;
  }
  .wizard-upsell p {
    font-size: 14px;
  }

  /* Section spacing */
  .section,
  .section-soft,
  .section-tight {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section h2,
  .section-soft h2 {
    font-size: 22px;
    line-height: 1.2;
  }
  .section .lead,
  .section-soft .lead {
    font-size: 15px;
    line-height: 1.45;
  }
  .value-list li {
    font-size: 14px;
    padding-left: 26px;
  }
  .value-list li::before {
    width: 18px;
    height: 18px;
    top: 2px;
  }

  /* CTA banner */
  .cta-banner {
    padding: 40px 0;
  }
  .cta-banner h2 {
    font-size: 22px;
  }
  .cta-banner .lead {
    font-size: 15px;
  }
  .cta-banner .btn-lg {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* FAQ */
  .faq-item summary {
    font-size: 15px;
    padding: 14px 0;
  }
  .faq-item p {
    font-size: 14px;
  }

  /* Who-grid (Audience Showdown) */
  .who-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .who-card {
    padding: 22px 18px;
  }
  .who-card h3 {
    font-size: 17px;
  }
  .who-card ul {
    font-size: 14px;
  }

  /* Nav */
  .nav-inner {
    padding: 12px 0;
  }
  .nav .btn-ghost {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* Extra-small phones (iPhone SE etc.) */
@media (max-width: 380px) {
  .hero-compact h1 { font-size: 24px; }
  .wizard-step { padding: 22px 16px 16px; }
  .wizard-option { padding-left: 44px; font-size: 14px; }
  .wizard-option-key { left: 10px; width: 22px; height: 22px; }
}
