/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF5;
  --bg-card: #FFFFFF;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --accent: #1B5E42;
  --accent-sage: #86B899;
  --accent-light: rgba(27, 94, 66, 0.07);
  --border: rgba(27, 94, 66, 0.12);
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* === PROOF BAR === */
.proof-bar {
  background: var(--accent-light);
  border-bottom: 1px solid var(--border);
  padding: 8px 32px;
}

.proof-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.proof-sep { color: var(--accent-sage); font-size: 0.75rem; }

/* === TOPBAR === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

/* === HERO === */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px 72px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px;
  width: fit-content;
}

.hero-text .headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

.headline .highlight {
  color: var(--accent);
}

.lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 28px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.btn-hero-primary {
  display: inline-flex;
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.15s;
  box-shadow: 0 4px 16px rgba(27, 94, 66, 0.25);
}

.btn-hero-primary:hover { background: #164d35; }

.cta-sub {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* === PRODUCT CARD === */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 32px rgba(27, 94, 66, 0.08), 0 1px 4px rgba(0,0,0,0.04);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.card-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-count {
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.sub-icon {
  flex-shrink: 0;
}

.sub-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sub-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
}

.sub-price {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.sub-price span {
  opacity: 0.6;
  font-size: 0.7rem;
}

.cancel-btn {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.cancel-btn:hover { background: #FEE2E2; }

.card-savings {
  background: var(--accent);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.savings-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
}

.savings-amount {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

.card-routing {
  padding: 0 2px;
}

.routing-track {
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  margin-bottom: 6px;
  overflow: hidden;
}

.routing-bar {
  height: 100%;
  background: linear-gradient(90deg, #1B5E42, #86B899);
  border-radius: 99px;
}

.routing-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
}

/* === SECTIONS === */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
}

/* === SCAN SECTION === */
.scan-section {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}

.scan-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.scan-header {
  margin-bottom: 56px;
}

.scan-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 64px;
}

.scan-divider {
  padding-top: 32px;
  display: flex;
  align-items: flex-start;
}

.scan-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.step-number {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-sage);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-body {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.scan-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 220px;
}

/* === OUTCOMES SECTION === */
.outcomes-section {
  padding: 80px 32px;
}

.outcomes-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.outcomes-header {
  margin-bottom: 48px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 20px;
  align-items: start;
}

.outcome-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outcome-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.outcome-primary .outcome-number { color: white; }
.outcome-primary .outcome-label { color: rgba(255,255,255,0.85); }
.outcome-primary .outcome-note { color: rgba(255,255,255,0.55); }
.outcome-primary .outcome-icon svg circle[fill="#1B5E42"] { fill: rgba(255,255,255,0.15); }

.outcome-emphasis {
  border: 2px solid var(--accent);
}

.outcome-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.outcome-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}

.outcome-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === PLAYBOOKS SECTION === */
.playbooks-section {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}

.playbooks-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.playbooks-header {
  margin-bottom: 48px;
}

.playbooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.playbook-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
}

.playbook-featured {
  border-color: var(--accent);
  background: var(--accent-light);
}

.playbook-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.03em;
}

.playbook-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.playbook-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.playbook-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.playbook-amount {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.playbook-target {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.playbooks-note {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.playbooks-note p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === CLOSING SECTION === */
.closing-section {
  padding: 80px 32px 96px;
}

.closing-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-accent {
  color: var(--accent);
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-cta-wrap {
  display: flex;
}

.btn-closing-cta {
  display: inline-flex;
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 10px;
  transition: background 0.15s;
  box-shadow: 0 4px 20px rgba(27, 94, 66, 0.28);
}

.btn-closing-cta:hover { background: #164d35; }

.closing-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wealth-graphic {
  width: 100%;
}

.chart-note {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-align: center;
}

/* === NAV === */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-subscribe {
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-subscribe:hover { background: #164d35; }

/* === PRICING SECTION === */
.pricing-section {
  background: var(--bg);
  padding: 80px 32px;
}

.pricing-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 52px;
}

.pricing-header .section-sub {
  margin: 8px auto 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 32px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card-featured {
  border: 2px solid var(--accent);
  background: var(--accent-light);
}

.pricing-popular-badge {
  position: absolute;
  top: -1px;
  left: 24px;
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.04em;
}

.pricing-card-top {
  margin-bottom: 24px;
}

.pricing-tier {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 12px;
}

.pricing-amount {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 8px;
}

.pricing-dollar {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  padding-bottom: 4px;
}

.pricing-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-period {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg-muted);
  padding-bottom: 6px;
}

.pricing-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--fg);
  line-height: 1.4;
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 1px;
}

.dim-icon {
  color: var(--fg-muted);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 1px;
  opacity: 0.5;
}

.feature-muted {
  color: var(--fg-muted);
}

.pricing-card-footer {
  margin-top: auto;
}

.btn-pricing-primary {
  display: block;
  width: 100%;
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 14px;
  border-radius: 10px;
  transition: background 0.15s;
}

.btn-pricing-primary:hover { background: #164d35; }

.btn-pricing-secondary {
  display: block;
  width: 100%;
  background: white;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 14px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  transition: background 0.15s;
}

.btn-pricing-secondary:hover { background: var(--accent-light); }

.pricing-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-mission {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.separator { color: var(--accent-sage); }

.footer-link {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover { color: var(--accent); }

.footer-legal {
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 600px;
}

/* === FAQ PAGE === */
.faq-page {
  padding: 72px 32px 96px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-sage);
  margin-bottom: 12px;
}

.faq-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 16px;
}

.faq-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.faq-intro a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-sage);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-category-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.15s;
}

.faq-item[open] {
  border-color: var(--accent-sage);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  user-select: none;
  transition: color 0.15s;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-question span {
  flex: 1;
  padding-right: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 0;
}

.faq-answer strong {
  color: var(--fg);
  font-weight: 600;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg-muted);
  transition: color 0.15s;
}

.nav-link:hover { color: var(--fg); }

.footer-links-faq {
  flex-wrap: wrap;
}

.footer-link {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover { color: var(--accent); }

/* === HOW IT WORKS PAGE === */
.hiw-hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 32px 64px;
}
.hiw-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hiw-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hiw-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-sage);
  margin-bottom: 14px;
}
.hiw-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hiw-accent { color: var(--accent); }
.hiw-lede {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 32px;
}
.hiw-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 10px;
  transition: background 0.15s;
}
.hiw-cta:hover { background: #164d35; }
.hiw-cta-secondary {
  background: white;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 12px 24px;
  font-size: 0.85rem;
}
.hiw-cta-secondary:hover { background: var(--accent-light); }
.hiw-cta-large { font-size: 1.05rem; padding: 16px 40px; }
.hiw-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* Steps section */
.hiw-steps-section {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 32px;
}
.hiw-steps-inner { max-width: 1160px; margin: 0 auto; }
.hiw-section-header { margin-bottom: 56px; }
.hiw-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 10px;
}
.hiw-section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.6;
}
.hiw-steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}
.hiw-step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step-card-featured {
  background: var(--accent);
  border-color: var(--accent);
}
.hiw-step-card-featured .hiw-step-number { color: rgba(255,255,255,0.6); }
.hiw-step-card-featured .hiw-step-title { color: white; }
.hiw-step-card-featured .hiw-step-body { color: rgba(255,255,255,0.8); }
.hiw-step-card-featured .hiw-step-badge { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.hiw-step-icon { margin-bottom: 16px; }
.hiw-step-number {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-sage);
  margin-bottom: 8px;
}
.hiw-step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.hiw-step-body {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.hiw-step-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 10px;
  border-radius: 6px;
  align-self: flex-start;
}
.hiw-step-connector {
  display: flex;
  align-items: center;
  padding-top: 56px;
}

/* Stats */
.hiw-stats-section { padding: 64px 32px; }
.hiw-stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.hiw-stat { text-align: center; padding: 0 32px; }
.hiw-stat-value {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.hiw-stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.hiw-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* Auto-invest deep dive */
.hiw-invest-section {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 32px;
}
.hiw-invest-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hiw-invest-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hiw-invest-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.hiw-invest-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.5;
}
.hiw-invest-features li svg { flex-shrink: 0; margin-top: 1px; }
.hiw-invest-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hiw-invest-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(27, 94, 66, 0.08);
}
.hiw-invest-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hiw-invest-card-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.hiw-invest-badge {
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.hiw-invest-strategy-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}
.hiw-invest-details { display: flex; flex-direction: column; gap: 8px; }
.hiw-invest-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.hiw-invest-detail-key { color: var(--fg-muted); }
.hiw-invest-detail-val { font-weight: 600; color: var(--fg); }
.hiw-invest-status {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.78rem;
}
.hiw-invest-progress { display: flex; flex-direction: column; gap: 8px; }
.hiw-invest-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.hiw-invest-progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.hiw-invest-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-sage));
  border-radius: 99px;
}
.hiw-invest-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}

/* CTA section */
.hiw-cta-section { padding: 80px 32px 96px; }
.hiw-cta-inner { max-width: 1160px; margin: 0 auto; text-align: center; }
.hiw-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}
.hiw-cta-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hiw-cta-footnote {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === FUNNEL WIDGET === */
.funnel-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 16px;
}

.funnel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.funnel-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.funnel-period {
  font-size: 0.72rem;
  color: var(--fg-muted);
}

.funnel-loading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.funnel-skeleton-row {
  height: 12px;
  background: var(--bg);
  border-radius: 6px;
  animation: shimmer 1.4s infinite;
  background-image: linear-gradient(90deg, var(--bg) 25%, var(--border) 50%, var(--bg) 75%);
  background-size: 200% 100%;
}

.funnel-skeleton-row.short { width: 60%; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.funnel-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}

.funnel-step:first-child { border-top: none; }

.funnel-step-label {
  font-size: 0.82rem;
  color: var(--fg);
}

.funnel-step-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.funnel-count {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
}

.funnel-drop {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 2px 8px;
}

.funnel-drop.converted {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-mockup { order: -1; }
  .scan-steps { grid-template-columns: 1fr; gap: 16px; }
  .scan-divider { display: none; }
  .scan-stats { grid-template-columns: 1fr; gap: 24px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid .outcome-primary { grid-column: 1 / -1; }
  .playbooks-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-visual { align-items: flex-start; }
  .hero { padding: 56px 24px 48px; }
  .scan-section, .outcomes-section, .playbooks-section, .closing-section { padding: 56px 24px; }
  .topbar-inner { padding: 14px 24px; }
  /* How It Works */
  .hiw-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hiw-hero-image { order: -1; }
  .hiw-steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .hiw-step-connector { display: none; }
  .hiw-stats-inner { flex-direction: column; gap: 32px; }
  .hiw-stat-divider { display: none; }
  .hiw-invest-inner { grid-template-columns: 1fr; gap: 40px; }
  .hiw-invest-visual { align-items: flex-start; }
  .hiw-hero { padding: 48px 24px 40px; }
  .hiw-steps-section, .hiw-invest-section { padding: 56px 24px; }
  .hiw-stats-section { padding: 48px 24px; }
  .hiw-cta-section { padding: 56px 24px 72px; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcomes-grid .outcome-primary { grid-column: auto; }
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
}