/* ═══════════════════════════════════════════════════════════════════════════
   NEXAGH MARKETING
   Shared stylesheet for public marketing pages (index, pathways, how-it-works,
   why-nexa, success-stories, faq, contact). Uses the paid-surface palette
   so the whole site feels like one brand across the funnel.
   ═══════════════════════════════════════════════════════════════════════════ */

@import url("nexa-paid.css");

:root {
  --nav-h: 76px;
}

body {
  background: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ─── Top Navigation (light, editorial) ──────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 241, 227, 0.86);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-whisper);
  gap: 24px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

#navbar.scrolled {
  background: rgba(247, 241, 227, 0.96);
  border-bottom-color: var(--border-color);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--secondary);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .wt {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary);
}

.nav-logo-text .wb {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  margin: 0 12px;
  flex-wrap: nowrap;
}

.nav-links li {
  position: relative;
}

.nav-links a,
.nav-drop-toggle {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  padding: 9px 11px;
  border-radius: var(--r-md);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active,
.nav-drop-toggle:hover,
.nav-dropdown.open .nav-drop-toggle {
  color: var(--secondary);
  background: var(--accent-soft);
}

.nav-caret {
  font-size: 9px;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-caret {
  transform: rotate(180deg);
}

/* Mega-menu */
.nav-drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 240px;
  display: none;
  z-index: 50;
}

.nav-dropdown.open .nav-drop {
  display: grid;
}

.nav-drop a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-main);
  text-decoration: none;
  border-radius: var(--r-md);
}

.nav-drop a:hover {
  background: var(--accent-soft);
  color: var(--secondary);
}

.nav-drop.nav-mega {
  grid-template-columns: repeat(4, 1fr);
  min-width: 640px;
  padding: 22px 22px 14px;
  gap: 18px 24px;
}

.nav-mega-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-mega-head {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent-ink);
  padding: 0 8px 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-color);
}

.nav-mega-col a {
  padding: 8px 10px;
  font-size: 13px;
}

.nav-mega-all {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: 12px 14px !important;
  text-align: center;
  font-size: 12px !important;
  letter-spacing: 0.8px;
  border-top: 1px solid var(--border-color);
  color: var(--accent) !important;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-mega-all:hover {
  background: var(--accent-soft) !important;
  color: var(--accent-ink) !important;
}

/* Nav CTAs */
.nav-cta {
  padding: 9px 14px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--secondary);
  color: var(--bg-body);
}

.nav-cta-primary {
  background: var(--secondary);
  color: var(--bg-body);
  border-color: var(--secondary);
  margin-left: 6px;
}

.nav-cta-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-body);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-whisper);
  border-radius: var(--r-md);
  transition: background 0.15s ease, color 0.15s ease;
}

.mobile-menu a:hover {
  background: var(--accent-soft);
  color: var(--secondary);
}

.mobile-submenu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px 14px 16px;
  border-bottom: 1px solid var(--border-whisper);
}

.mobile-submenu-label {
  grid-column: 1 / -1;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-ink);
  padding: 0 4px;
  margin-bottom: 4px;
}

.mobile-submenu a {
  font-size: 13px;
  padding: 9px 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--r-md);
}

.mobile-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-light);
  cursor: pointer;
}

@media (max-width: 1120px) {
  .nav-links,
  .nav-cta:not(.nav-cta-primary) {
    display: none;
  }
  .hamburger { display: flex; }
}

@media (max-width: 540px) {
  .nav-cta-primary { display: none; }
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 14px 26px;
  border-radius: var(--r-md);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--secondary);
  color: var(--bg-body);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-body);
}

.btn-gold {
  background: var(--accent);
  color: var(--bg-body);
  border-color: var(--accent);
}

.btn-gold:hover {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
  color: var(--bg-body);
}

.btn-ghost {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn-ghost:hover {
  background: var(--secondary);
  color: var(--bg-body);
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--nav-h) + 80px) clamp(20px, 5vw, 48px) 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-body) 100%);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 24px;
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(184, 134, 59, 0.2);
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 134, 59, 0.18);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.05;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 26px;
  letter-spacing: -0.5px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge {
  font-size: 11px;
  letter-spacing: 1.2px;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--r-sm);
  color: var(--text-main);
  text-transform: uppercase;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--accent);
  border-radius: var(--r-lg);
  z-index: -1;
  opacity: 0.35;
}

.hero-visual-title {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 20px;
}

.country-row {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-whisper);
  font-size: 14px;
}

.country-row:last-child { border-bottom: none; }

.country-name {
  font-weight: 600;
  color: var(--secondary);
}

.country-bar-bg {
  height: 6px;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.country-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-ink));
  border-radius: var(--r-pill);
}

.country-pct {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-ink);
  text-align: right;
}

.hero-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
  display: block;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: calc(var(--nav-h) + 50px) 20px 70px; }
}

/* Interior page hero — single-column, shorter */
.hero-page {
  padding: calc(var(--nav-h) + 70px) clamp(20px, 5vw, 48px) 80px;
}
.hero-page .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 860px;
  gap: 0;
}
.hero-page .hero-headline {
  font-size: clamp(36px, 4.8vw, 60px);
}
.hero-page .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.hero-page .hero-actions {
  justify-content: center;
}
.hero-page .breadcrumb {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--text-light);
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.hero-page .breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
}
.hero-page .breadcrumb a:hover { color: var(--accent); }
.hero-page .breadcrumb .current { color: var(--secondary); font-weight: 500; }

/* Compare table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare-table th {
  text-align: left;
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-whisper);
}
.compare-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-whisper);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.highlight { color: var(--accent); font-weight: 600; }
.compare-table td:first-child { font-weight: 500; color: var(--secondary); }

/* Pathway detail block (used on /pathways) */
.pathway-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .pathway-block { grid-template-columns: 1fr; gap: 32px; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 13px; }
}
.pathway-block h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--secondary);
  margin: 28px 0 14px;
  font-weight: 600;
}
.pathway-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pathway-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
}
.pathway-checks li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pathway-side {
  background: var(--bg-card);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-lg);
  padding: 30px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.pathway-side-label {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 10px;
  display: block;
}
.pathway-side h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 14px;
  font-weight: 600;
}
.pathway-side-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-whisper);
}
.pathway-side-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.pathway-side-num-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Timeline (how-it-works) */
.timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(184, 134, 59, 0.15));
}
.timeline-step {
  position: relative;
  margin-bottom: 44px;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-step::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-body);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg-body);
}
.timeline-phase {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 6px;
  display: block;
}
.timeline-step h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 600;
}
.timeline-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 14px;
}
.timeline-duration {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(184, 134, 59, 0.2);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

/* Success story card — larger testimonial block */
.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story-card:hover {
  border-color: rgba(184, 134, 59, 0.3);
  transform: translateY(-2px);
  transition: all 0.25s ease;
}
.story-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(184, 134, 59, 0.2);
}
.story-headline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.35;
}
.story-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
}
.story-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-whisper);
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-meta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep, #9E6F2B));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15px;
}
.story-meta-name { font-size: 14px; font-weight: 600; color: var(--secondary); }
.story-meta-detail { font-size: 12px; color: var(--text-light); }

/* FAQ — full page variant */
.faq-list.faq-list-wide { max-width: 860px; margin: 0 auto; }
.faq-category-label {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-whisper);
}
.faq-category-label:first-child { margin-top: 0; }

/* Charter list (why-nexa) */
.charter-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 760px) { .charter-list { grid-template-columns: 1fr; } }
.charter-item {
  background: var(--bg-card);
  border: 1px solid var(--border-whisper);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: var(--r-md);
}
.charter-item h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}
.charter-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-main);
}

/* Red-flag list */
.redflag-box {
  background: rgba(184, 59, 59, 0.04);
  border: 1px solid rgba(184, 59, 59, 0.18);
  border-radius: var(--r-md);
  padding: 28px 32px;
  max-width: 880px;
  margin: 0 auto;
}
.redflag-box h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 14px;
  font-weight: 600;
}
.redflag-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.redflag-box li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
}
.redflag-box li::before {
  content: "✕";
  color: #b83b3b;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Sections ───────────────────────────────────────────────── */
section.band {
  padding: 90px clamp(20px, 5vw, 48px);
}

section.band-alt {
  background: var(--bg-soft);
}

section.band-dark {
  background: var(--secondary);
  color: var(--bg-body);
}

section.band-dark .section-title,
section.band-dark .section-eyebrow {
  color: var(--bg-body);
}

section.band-dark .section-eyebrow {
  color: var(--accent);
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 50px;
}

.band-dark .section-sub { color: rgba(247, 241, 227, 0.72); }

.section-head-center {
  text-align: center;
}

.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* ─── Grids / Cards ──────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 134, 59, 0.35);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--accent-ink);
  text-transform: uppercase;
}

.card-link:hover {
  color: var(--secondary);
  text-decoration: none;
}

/* Pathway card — tall card with destination chips */
.pathway-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pathway-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 134, 59, 0.35);
}

.pathway-family {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 700;
  margin-bottom: 10px;
}

.pathway-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.pathway-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 18px;
  flex: 1;
}

.pathway-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.pathway-chip {
  font-size: 12px;
  padding: 5px 11px;
  background: var(--bg-soft);
  color: var(--text-main);
  border-radius: var(--r-pill);
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pathway-chip:hover {
  background: var(--secondary);
  color: var(--bg-body);
  border-color: var(--secondary);
  text-decoration: none;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: -60px auto 0;
  max-width: 1080px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.stat-cell {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.stat-cell:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.stat-num em {
  font-style: normal;
  color: var(--accent);
}

.stat-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
  display: block;
}

@media (max-width: 780px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border-color); }
}

/* Why list */
.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-whisper);
}

.why-item:last-child { border-bottom: none; }

.why-num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}

.why-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 6px;
}

.why-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
}

/* Testimonial card */
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.22;
  line-height: 1;
}

.quote-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-main);
  font-style: italic;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-whisper);
}

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-ink));
  color: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
}

.quote-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 14px;
}

.quote-detail {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

/* FAQ preview */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.faq-q {
  padding: 18px 22px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  list-style: none;
}

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

.faq-q::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-q::after {
  content: '×';
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(184, 134, 59, 0.14), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(184, 134, 59, 0.08), transparent 50%),
    var(--secondary);
  color: var(--bg-body);
  padding: 80px clamp(20px, 5vw, 48px);
  text-align: center;
}

.cta-band .section-title { color: var(--bg-body); }
.cta-band .section-sub {
  color: rgba(247, 241, 227, 0.78);
  max-width: 640px;
  margin: 0 auto 36px;
}

.cta-band .btn-primary {
  background: var(--accent);
  color: var(--bg-body);
  border-color: var(--accent);
}

.cta-band .btn-primary:hover {
  background: var(--bg-body);
  color: var(--secondary);
  border-color: var(--bg-body);
}

.cta-band .btn-ghost {
  color: var(--bg-body);
  border-color: rgba(247, 241, 227, 0.5);
}

.cta-band .btn-ghost:hover {
  background: var(--bg-body);
  color: var(--secondary);
}

/* ─── Booking form (light-theme) ─────────────────────────────── */
.booking-grid {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 960px) {
  .booking-grid { grid-template-columns: 1fr; gap: 28px; }
  .booking-side { order: -1; }
}

.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(11, 26, 46, 0.04);
}

.booking-card h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}

.booking-card .form-subtitle {
  color: var(--text-main);
  margin-bottom: 24px;
  font-size: 14.5px;
  line-height: 1.6;
}

.fee-card {
  background: var(--accent-soft);
  border: 1px solid rgba(184, 134, 59, 0.26);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 26px;
}
.fee-card .fee-amount {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent-ink);
  font-weight: 700;
  margin-bottom: 4px;
}
.fee-card p {
  color: var(--secondary);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}
.fee-card p + p {
  margin-top: 6px;
  color: var(--text-light);
  font-size: 13px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.6px;
  font-weight: 500;
}
.form-group input,
.form-group select {
  background: var(--bg-body);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  color: var(--secondary);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group input::placeholder { color: var(--text-light); opacity: 0.7; }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B8863B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent), #9E6F2B);
  color: white;
  border: none;
  padding: 15px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  margin-top: 8px;
  letter-spacing: 0.2px;
}
.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 134, 59, 0.3);
}
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.recovery-block {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border-whisper);
}
.recovery-block h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--secondary);
  margin: 0 0 6px;
  font-weight: 600;
}
.recovery-block .recovery-lede {
  color: var(--text-main);
  font-size: 13.5px;
  margin: 0 0 12px;
  line-height: 1.55;
}
.recovery-row { display: flex; gap: 8px; align-items: stretch; }
.recovery-row input {
  flex: 1;
  background: var(--bg-body);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-sm);
  padding: 11px 13px;
  color: var(--secondary);
  font-family: var(--font-sans);
  font-size: 14px;
}
.recovery-row input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.recovery-row button {
  background: transparent;
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  border-radius: var(--r-sm);
  padding: 11px 16px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.recovery-row button:hover { background: var(--accent); color: white; }
.recovery-row button:disabled { opacity: 0.6; cursor: not-allowed; }
.recovery-status {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  border-radius: var(--r-sm);
  display: none;
}
.recovery-status.recovery-status--ok,
.recovery-status.recovery-status--error {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  border: 1px solid transparent;
}
.recovery-status.recovery-status--ok {
  color: #0B5A36;
  background: #E7F6ED;
  border-color: #BEE5CD;
}
.recovery-status.recovery-status--error {
  color: #8C1414;
  background: #FBE7E7;
  border-color: #F2C2C2;
}
@media (max-width: 500px) { .recovery-row { flex-direction: column; } }

.form-error {
  background: rgba(184, 59, 59, 0.07);
  border: 1px solid rgba(184, 59, 59, 0.22);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  margin-bottom: 16px;
  color: #B83B3B;
  font-size: 13.5px;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  text-align: center;
  padding: 14px 0;
}
.form-success .success-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--accent-ink);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-success p.success-msg {
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 22px;
  font-size: 15px;
}

#custom-calendly-container {
  width: 100%;
  min-width: 100%;
  max-width: 1000px;
  height: 650px;
  margin: 0 auto;
  border-radius: var(--r-md);
  overflow: hidden;
}
.calendly-inline-widget {
  min-height: 650px;
  height: 650px;
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
}

/* Booking info side */
.booking-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.booking-side-card {
  background: var(--bg-card);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-md);
  padding: 24px 26px;
}
.booking-side-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-side-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-side-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-main);
}
.booking-side-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.booking-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 4px;
}
.booking-meta-cell {
  background: var(--bg-soft);
  padding: 14px 16px;
  border-radius: var(--r-sm);
}
.booking-meta-label {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
  display: block;
}
.booking-meta-value {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
}

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--secondary);
  color: rgba(247, 241, 227, 0.78);
  padding: 70px clamp(20px, 5vw, 48px) 30px;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--bg-body);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.footer-tag {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247, 241, 227, 0.6);
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(247, 241, 227, 0.78);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 241, 227, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-legal {
  font-size: 12px;
  color: rgba(247, 241, 227, 0.5);
  letter-spacing: 0.3px;
}

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ─── Reveal animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Assessment modal (reused) ─────────────────────────────── */
.assess-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 45, 0.58);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.assess-overlay.open { display: flex; }

.assess-modal {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.assess-header {
  padding: 22px 28px 18px;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.assess-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
}

.assess-step-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 8px;
}

.assess-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary);
}

.assess-progress {
  height: 4px;
  background: var(--bg-soft);
  overflow: hidden;
}

.assess-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-ink));
  transition: width 0.3s ease;
}

.assess-body {
  padding: 24px 28px 28px;
  font-size: 15px;
  color: var(--text-main);
}

/* === QUICK-WIN ADDITIONS (audit round) === */

/* Coming-soon pathway chip */
.pathway-chip.coming-soon {
  background: transparent;
  color: var(--text-light);
  border: 1px dashed var(--border-whisper);
  cursor: default;
  pointer-events: none;
  font-style: italic;
}
.pathway-chip.coming-soon::after {
  content: " · Coming Soon";
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Horizontal-scroll wrapper with visual affordance for tables */
.table-scroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-scroll::after {
  content: "";
  position: sticky;
  top: 0;
  right: 0;
  width: 32px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(15,26,45,0.08));
  pointer-events: none;
  display: block;
}
@media (min-width: 900px) {
  .table-scroll::after { display: none; }
}
.table-scroll-hint {
  display: none;
  text-align: right;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
@media (max-width: 899px) {
  .table-scroll-hint { display: block; }
}

/* Verified badge on story cards */
.story-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-top: 10px;
}
.story-verified::before {
  content: "✓";
  font-weight: 700;
  color: var(--accent);
}

/* Sample-size footnote under stats */
.stat-footnote {
  display: block;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-top: 4px;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

/* Blueprint price banner */
.price-banner {
  background: var(--bg-soft);
  border: 1px solid var(--border-whisper);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 40px auto 0;
}
.price-banner-text {
  font-size: 14px;
  color: var(--text-main);
}
.price-banner-text strong {
  color: var(--secondary);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-right: 6px;
}
.price-banner .btn { flex-shrink: 0; }

/* 3-tier comparison matrix */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; }
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-card.tier-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 40px rgba(184,134,59,0.12);
  transform: translateY(-8px);
}
@media (max-width: 900px) {
  .tier-card.tier-featured { transform: none; }
}
.tier-card.tier-featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  font-weight: 600;
}
.tier-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 600;
}
.tier-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary);
  margin: 8px 0 4px;
}
.tier-price {
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 700;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--accent);
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.tier-price small {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.tier-tagline {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
  margin: 16px 0 20px;
  min-height: 44px;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-features li {
  font-size: 14px;
  color: var(--text-main);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.tier-features li.tier-feat-muted {
  color: var(--text-light);
}
.tier-features li.tier-feat-muted::before {
  content: "—";
  color: var(--text-light);
}
.tier-cta {
  margin-top: auto;
}

/* Quiz modal (branching pathway quiz) */
.quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,26,45,0.68);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.quiz-overlay.active { display: flex; }
.quiz-modal {
  background: var(--bg-card);
  max-width: 640px;
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 80px rgba(15,26,45,0.2);
  overflow: hidden;
  animation: quizIn 0.25s ease;
}
@keyframes quizIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-header {
  padding: 28px 32px 0;
  position: relative;
}
.quiz-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--text-light);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
}
.quiz-close:hover { background: var(--bg-soft); color: var(--secondary); }
.quiz-step-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0;
}
.quiz-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--secondary);
  margin: 8px 0 0;
  font-weight: 600;
  line-height: 1.3;
}
.quiz-progress {
  height: 4px;
  background: var(--bg-soft);
  margin-top: 24px;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-ink));
  transition: width 0.3s ease;
}
.quiz-body {
  padding: 24px 32px 32px;
}
.quiz-options {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.quiz-option {
  text-align: left;
  background: var(--bg-body);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-md);
  padding: 16px 18px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-main);
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.quiz-option:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateX(2px);
}
.quiz-result {
  text-align: center;
}
.quiz-result h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--secondary);
  margin: 12px 0 6px;
  font-weight: 600;
}
.quiz-result p {
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 20px;
}
.quiz-result-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.quiz-result-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.quiz-lead-form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  text-align: left;
}
.quiz-lead-form input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-body);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-main);
}
.quiz-lead-form input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
