/* ===========================
   VEAZY LANDING PAGE
   Typography: Playfair Display + DM Sans
   Palette: Deep navy / Warm amber / Teal
   =========================== */

:root {
  --navy: #0B1628;
  --navy-mid: #152840;
  --amber: #E8A838;
  --amber-light: #F5C06A;
  --teal: #0AD4C4;
  --teal-dark: #089E93;
  --bg: #FAFBFC;
  --surface: #FFFFFF;
  --text: #0B1628;
  --text-muted: #5A6A7E;
  --text-light: #8A9AB5;
  --border: #E4EAF2;
  --shadow: 0 4px 32px rgba(11, 22, 40, 0.08);
  --radius: 12px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--amber);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}
.nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}
.site-nav a:hover {
  opacity: 0.85;
}
.nav-logo:hover {
  opacity: 1;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* HERO */
.hero {
  position: relative;
  padding: 140px 40px 80px;
  overflow: hidden;
}
.hero-bg-accent {
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(232, 168, 56, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.eyebrow-line {
  display: block;
  width: 32px; height: 2px;
  background: var(--teal);
}
.hero-headline {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.3;
  max-width: 100px;
}

/* Product visual */
.hero-visual { position: relative; }
.product-frame {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow), 0 0 0 1px var(--border);
  overflow: hidden;
}
.frame-label {
  padding: 12px 16px;
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.frame-label-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
.product-screenshot {
  width: 100%;
  display: block;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.hero-callouts {
  position: absolute;
  bottom: -20px;
  left: -24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.callout {
  background: var(--surface);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(11, 22, 40, 0.1);
  border: 1px solid var(--border);
  font-size: 13px;
  max-width: 260px;
}
.callout strong { display: block; font-weight: 600; color: var(--navy); font-size: 12px; }
.callout span { color: var(--text-muted); font-size: 11px; }
.callout-icon {
  width: 28px; height: 28px;
  background: rgba(10, 212, 196, 0.1);
  color: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.callout-icon--amber {
  background: rgba(232, 168, 56, 0.1);
  color: var(--amber);
}

/* SECTIONS */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-headline em {
  font-style: italic;
  color: var(--amber);
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* HOW IT WORKS */
.howitworks { padding: 100px 0; background: var(--navy); }
.howitworks .section-headline { color: #fff; }
.howitworks .section-headline em { color: var(--amber); }
.howitworks .section-sub { color: rgba(255,255,255,0.6); }
.howitworks .section-tag { color: var(--teal); }

.surfaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.surface-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: background 0.2s;
}
.surface-card:hover { background: rgba(255,255,255,0.07); }
.surface-card--featured {
  background: rgba(232, 168, 56, 0.08);
  border-color: rgba(232, 168, 56, 0.2);
  grid-row: span 2;
}
.surface-card--wide { grid-column: span 2; }
.surface-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}
.surface-card--featured .surface-num { color: var(--amber); }
.surface-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}
.surface-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.surface-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.surface-tags span {
  font-size: 10px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  color: rgba(255,255,255,0.7);
}
.brain-cite {
  margin-top: 14px;
  font-size: 12px;
  color: var(--amber);
  font-family: monospace;
}

/* FEATURES */
.features { padding: 100px 0; background: var(--bg); }
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-list { display: flex; flex-direction: column; gap: 28px; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.problem-icon {
  width: 40px; height: 40px;
  background: rgba(11, 22, 40, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.problem-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.problem-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* THE JOURNEY */
.thejourney { padding: 100px 0; background: var(--surface); }
.journey-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 60px 0 40px;
  overflow-x: auto;
  padding-bottom: 20px;
}
.journey-stage {
  flex: 0 0 200px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}
.journey-stage--active {
  background: var(--navy);
  border-color: var(--navy);
}
.journey-stage--active .stage-year,
.journey-stage--active h4,
.journey-stage--active p { color: #fff; }
.journey-stage--destination {
  background: linear-gradient(135deg, var(--amber), #D4880A);
  border-color: var(--amber);
}
.journey-stage--destination h4,
.journey-stage--destination p { color: var(--navy); }
.journey-stage--destination .stage-year { color: rgba(11,22,40,0.6); }
.stage-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.journey-stage h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 6px;
}
.journey-stage p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.stage-marker {
  position: absolute;
  top: -8px;
  left: 24px;
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  border: 2px solid var(--surface);
}
.journey-stage--destination .stage-marker { background: var(--navy); }
.journey-arrow {
  flex: 0 0 auto;
  color: var(--text-light);
  padding: 0 8px;
}
.journey-note {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

/* OUTCOMES */
.outcomes { padding: 100px 0; background: var(--bg); }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.outcome-quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 20px;
}
.quote-mark {
  font-size: 40px;
  color: var(--amber);
  line-height: 0;
  display: block;
  margin-bottom: 8px;
  font-style: normal;
}
.outcome-meta strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}
.outcome-meta span {
  font-size: 12px;
  color: var(--text-light);
}
.outcome-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.outcome-stat { text-align: center; }
.outcome-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
}
.outcome-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* MANIFESTO */
.manifesto { padding: 100px 0; background: var(--navy); }
.manifesto-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.founder-reg { color: var(--amber); }
.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}
.manifesto-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 48px;
}
.manifesto-facts {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.fact { text-align: center; }
.fact-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--amber);
}
.fact-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* TESTIMONIALS */
.testimonials { padding: 100px 0; background: var(--surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  background: rgba(10, 212, 196, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-avatar span {
  font-weight: 700;
  font-size: 16px;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.7;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-meta strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}
.testimonial-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  background: rgba(10, 212, 196, 0.08);
  color: var(--teal-dark);
  border-radius: 20px;
  width: fit-content;
}
.testimonials-disclaimer {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
}

/* SUCCESS STATS */
.success-stats {
  padding: 80px 0;
  background: var(--navy);
}
.success-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.stat-icon {
  color: var(--teal);
  margin-bottom: 4px;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-name {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.stat-footnote {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: -4px;
}

/* TRUST BADGES */
.trust-badges { padding: 80px 0; background: var(--bg); }
.trust-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  max-width: 280px;
  justify-content: center;
}
.trust-icon {
  width: 44px; height: 44px;
  background: rgba(11, 22, 40, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.trust-icon--flag { color: var(--amber); }
.trust-text { display: flex; flex-direction: column; gap: 2px; }
.trust-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.trust-text span {
  font-size: 12px;
  color: var(--text-muted);
}
.site-footer {
  padding: 60px 40px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo {
  width: 32px; height: 32px;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-nav {
  margin-bottom: 24px;
}
.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
}
.footer-link:hover {
  color: rgba(255,255,255,0.9);
}
.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-built {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { gap: 20px; }
  .hero-callouts { position: static; flex-direction: row; margin-top: 16px; }
  .callout { max-width: none; }
  .features-layout { grid-template-columns: 1fr; gap: 48px; }
  .surfaces-grid { grid-template-columns: 1fr; }
  .surface-card--wide, .surface-card--featured { grid-column: auto; grid-row: auto; }
  .outcome-grid { grid-template-columns: 1fr; }
  .journey-timeline { flex-wrap: wrap; gap: 16px; }
  .journey-arrow { display: none; }
  .manifesto-facts { gap: 32px; }
  .outcome-stats { gap: 32px; flex-wrap: wrap; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .success-stats-grid { grid-template-columns: 1fr; }
  .trust-badges-row { flex-direction: column; gap: 24px; }
  .trust-badge { max-width: 320px; width: 100%; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .section-inner { padding: 0 20px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .site-nav { padding: 0 20px; }
  .nav-badge { display: none; }
  .testimonials, .trust-badges { padding: 60px 0; }
  .success-stats { padding: 60px 0; }
  .testimonial-card { padding: 20px; }
  .stat-card { padding: 24px; }
  .stat-value { font-size: 40px; }
}

/* THREE-STEP HOW IT WORKS */
.steps-section {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
}
.steps-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 60px 0 48px;
}
.step-card {
  flex: 1;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover {
  box-shadow: 0 8px 32px rgba(11, 22, 40, 0.08);
  transform: translateY(-2px);
}
.step-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.step-card--featured h3,
.step-card--featured p { color: #fff; }
.step-card--featured .step-meta { color: rgba(255,255,255,0.5); }
.step-icon {
  width: 52px; height: 52px;
  background: rgba(10, 212, 196, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.step-icon--amber {
  background: rgba(232, 168, 56, 0.12);
  color: #c98b20;
}
.step-card--featured .step-icon--amber { color: var(--amber-light); }
.step-icon--teal { color: var(--teal-dark); }
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 12px;
}
.step-num--amber { color: var(--amber); }
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.step-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.step-card--featured .step-meta { border-top-color: rgba(255,255,255,0.1); }
.step-connector {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--text-light);
  flex-shrink: 0;
}
.steps-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--navy);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.cta-btn:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}
.cta-note {
  font-size: 12px;
  color: var(--text-light);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-row {
    flex-direction: column;
    gap: 16px;
  }
  .step-connector { display: none; }
  .step-card { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .steps-section { padding: 60px 0; }
  .steps-row { margin: 40px 0 36px; }
  .step-card { padding: 24px 20px; }
  .step-icon { width: 44px; height: 44px; }
}

/* FAQ SECTION */
.faq-section { padding: 100px 0; background: var(--bg); }
.faq-section .section-headline em { color: var(--amber); }
.faq-intro {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-top: -32px;
  margin-bottom: 48px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item ul {
  margin: 12px 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* HOW IT WORKS FAQ LINK */
.how-it-works-cta {
  text-align: center;
  margin-top: 8px;
}
.how-it-works-cta a {
  font-size: 14px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.how-it-works-cta a:hover { color: var(--teal-dark); text-decoration: underline; }

@media (max-width: 600px) {
  .faq-section { padding: 60px 0; }
  .faq-item { padding: 28px 0; }
  .faq-intro { margin-top: -24px; margin-bottom: 36px; }
}