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

:root {
  /* Palette */
  --bg:          #FAF8F2;
  --bg-2:        #F3F0E8;
  --bg-gold:     #F5C500;
  --bg-dark:     #1a3a6b;
  --bg-card:     #FFFFFF;
  --bg-footer:   #EEF0F4;

  --text:        #1C1C1E;
  --text-mid:    #444444;
  --text-muted:  #717171;
  --text-light:  #FFFFFF;

  --gold:        #C8953A;
  --gold-bright: #F5C500;
  --gold-dark:   #A07820;
  --navy:        #1a3a6b;
  --navy-dark:   #0e2050;

  --border:      #E2DDD4;
  --border-dark: #2a4a7b;

  /* Type */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  1.875rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-hero: clamp(2rem, 4vw + 1rem, 3.5rem);

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Transitions */
  --t: 0.2s ease;
  --t-slow: 0.4s ease;

  --max-w: 1160px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: var(--text-base);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.section-heading.centered { text-align: center; }
.section-sub {
  font-size: var(--text-md);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: var(--sp-10);
}
.section-sub.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.section-eyebrow.light { color: rgba(255,255,255,0.7); }
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(var(--sp-12), 8vw, var(--sp-24)) var(--sp-6);
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--gold-bright);
  color: var(--navy-dark);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-sm);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  border: none;
}
.btn-primary:hover {
  background: #e6b800;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,197,0,0.35);
}
.btn-primary.btn-full { width: 100%; justify-content: center; font-size: var(--text-base); padding: 1rem 2rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: transparent;
  color: var(--navy);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-sm);
  border: 2px solid var(--navy);
  transition: all var(--t);
}
.btn-secondary:hover {
  background: var(--navy);
  color: white;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: white;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-sm);
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,242,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(26,58,107,0.1); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 68px;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.logo-mark {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(212,168,48,0.2));
}
.logo-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-left: auto;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--navy); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero-section {
  background: var(--bg);
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(var(--sp-12), 8vw, var(--sp-20)) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(245,197,0,0.15);
  border: 1px solid rgba(245,197,0,0.5);
  color: var(--gold-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: var(--sp-5);
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.1;
  margin-bottom: var(--sp-6);
}

.hero-body {
  font-size: var(--text-md);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-4);
}
.hero-sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}

/* Hero right — document visual */
.hero-right { display: flex; justify-content: center; }
.hero-visual { display: flex; flex-direction: column; width: 100%; max-width: 440px; }

.hero-doc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 48px rgba(26,58,107,0.12), 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
.doc-header {
  background: var(--navy);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.doc-icon {
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-icon svg { stroke: white; }
.doc-title-block { flex: 1; }
.doc-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.doc-title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: white; letter-spacing: 0.03em; }
.doc-stamp {
  background: var(--gold-bright);
  color: var(--navy-dark);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  text-transform: uppercase;
}
.doc-body { padding: var(--sp-5) var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); }
.doc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.doc-row:last-child { border-bottom: none; padding-bottom: 0; }
.doc-key { font-size: var(--text-sm); color: var(--text-muted); }
.doc-val { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.doc-val-highlight { color: var(--navy); font-size: var(--text-lg); font-weight: 800; }
.doc-footer-bar {
  background: var(--bg-2);
  padding: var(--sp-3) var(--sp-6);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.doc-footer-bar span { font-size: var(--text-xs); color: var(--text-muted); font-weight: 500; }

.hero-stat-pill {
  background: var(--gold-bright);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: 0 4px 20px rgba(245,197,0,0.4);
  margin-top: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.hero-stat-pill strong { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--navy-dark); white-space: nowrap; }
.hero-stat-pill span { font-size: var(--text-sm); font-weight: 600; color: var(--navy); }

/* ─── STATS BAND ──────────────────────────────────────────── */
.stats-band {
  background: var(--gold-bright);
  border-top: 1px solid rgba(26,58,107,0.1);
  border-bottom: 1px solid rgba(26,58,107,0.1);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(var(--sp-12), 8vw, var(--sp-20)) var(--sp-6);
}
.stats-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: var(--sp-5);
}
.stats-body {
  font-size: var(--text-md);
  color: var(--navy);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: var(--sp-12);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26,58,107,0.15);
  border: 1px solid rgba(26,58,107,0.15);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat-card {
  background: rgba(255,255,255,0.45);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.stat-label { font-size: var(--text-sm); color: var(--navy); line-height: 1.4; font-weight: 500; }

/* ─── OPPORTUNITY CARDS ───────────────────────────────────── */
.opportunity-section { background: var(--bg); }
.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-4);
}
.opp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-8) var(--sp-6);
  transition: box-shadow var(--t), transform var(--t);
}
.opp-card:hover { box-shadow: 0 8px 32px rgba(26,58,107,0.1); transform: translateY(-2px); }
.opp-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.opp-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}
.opp-card p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.7; }

/* ─── COMPLEXITY SECTION ──────────────────────────────────── */
.complexity-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.complexity-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.complexity-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.complexity-left p { font-size: var(--text-md); color: var(--text-mid); line-height: 1.75; margin-bottom: var(--sp-4); }
.complexity-left .btn-primary { margin-top: var(--sp-4); }

.complexity-callout {
  display: flex;
  gap: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
  transition: box-shadow var(--t);
}
.complexity-callout:hover { box-shadow: 0 4px 20px rgba(26,58,107,0.08); }
.callout-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: rgba(26,58,107,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.callout-text strong { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--text); margin-bottom: 4px; }
.callout-text p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.5; }

/* ─── SERVICES ────────────────────────────────────────────── */
.services-section { background: var(--bg); }
.services-header { max-width: 700px; margin-bottom: var(--sp-12); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(26,58,107,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: rgba(245,197,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: var(--sp-4);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.service-card p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.65; }
.services-summary {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-10);
  padding: var(--sp-5) var(--sp-6);
  background: var(--navy);
  border-radius: var(--r-md);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: 500;
  justify-content: center;
}
.services-summary .divider { color: var(--gold-bright); font-weight: 300; }

/* ─── WHY SECTION ─────────────────────────────────────────── */
.why-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.why-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.why-left p { font-size: var(--text-md); color: var(--text-mid); line-height: 1.75; margin-bottom: var(--sp-4); }

.why-point {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.why-point:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.why-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--navy-dark);
}
.why-point > div:last-child strong { display: block; font-size: var(--text-md); font-weight: 700; color: var(--text); margin-bottom: 4px; }
.why-point > div:last-child p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.55; }

/* ─── PROCESS ─────────────────────────────────────────────── */
.process-section { background: var(--bg); }
.process-header { max-width: 640px; margin-bottom: var(--sp-12); }
.process-timeline { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-6);
}
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  opacity: 0.2;
}
.step-line.last-step { display: none; }
.step-content {
  padding-bottom: var(--sp-10);
  padding-top: 8px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--sp-3);
}
.step-content p { font-size: var(--text-md); color: var(--text-mid); line-height: 1.7; max-width: 560px; }

/* ─── WHO QUALIFIES ───────────────────────────────────────── */
.qualifies-section { background: var(--navy); }
.qualifies-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
}
.qualifies-left .section-eyebrow { color: var(--gold-bright); }
.qualifies-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.qualifies-left p { font-size: var(--text-md); color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: var(--sp-6); }
.qualifies-left .btn-secondary {
  border-color: rgba(255,255,255,0.4);
  color: white;
}
.qualifies-left .btn-secondary:hover { background: white; color: var(--navy); }

.qualifies-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.qualifies-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  transition: background var(--t);
}
.qualifies-list li:hover { background: rgba(255,255,255,0.1); }
.q-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(245,197,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-bright);
}
.qualifies-list li span { font-size: var(--text-sm); color: rgba(255,255,255,0.85); line-height: 1.5; padding-top: 8px; }

/* ─── CAPITAL SECTION ─────────────────────────────────────── */
.capital-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.capital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-4);
}
.capital-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: box-shadow var(--t), transform var(--t);
}
.capital-card:hover { box-shadow: 0 8px 32px rgba(26,58,107,0.1); transform: translateY(-2px); }
.capital-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245,197,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  color: var(--navy);
}
.capital-card h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--navy-dark); margin-bottom: var(--sp-3); }
.capital-card p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.65; }

/* ─── UNDERSTAND SECTION ──────────────────────────────────── */
.understand-section { background: var(--bg); border-top: 1px solid var(--border); }
.understand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.understand-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.understand-left p { font-size: var(--text-md); color: var(--text-mid); line-height: 1.75; }
.understand-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.understand-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
}
.understand-list li:last-child { border-bottom: none; }
.understand-list li svg { color: var(--navy); flex-shrink: 0; margin-top: 3px; }
.understand-list li span { font-size: var(--text-md); color: var(--text-mid); line-height: 1.5; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--bg-2); border-top: 1px solid var(--border); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  text-align: left;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text);
  transition: color var(--t);
}
.faq-btn:hover { color: var(--navy); }
.faq-chevron { flex-shrink: 0; transition: transform 0.25s ease; }
.faq-btn[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-btn[aria-expanded="true"] { color: var(--navy); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  font-size: var(--text-md);
  color: var(--text-mid);
  line-height: 1.75;
  padding-bottom: var(--sp-5);
}

/* ─── CTA FORM ────────────────────────────────────────────── */
.cta-section { background: var(--navy); }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.cta-left .section-eyebrow { color: var(--gold-bright); }
.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.cta-left p { font-size: var(--text-md); color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: var(--sp-4); }
.cta-sub { font-size: var(--text-sm); color: rgba(255,255,255,0.55); }

.trust-list { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-6); }
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.trust-item svg { color: var(--gold-bright); flex-shrink: 0; }

.recovery-form {
  background: white;
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group label { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,107,0.1);
}
.form-group input::placeholder { color: #aaa; }
.form-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}
.form-note a { text-decoration: underline; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  border-radius: var(--r-lg);
  padding: var(--sp-12) var(--sp-8);
  gap: var(--sp-3);
}
.form-success svg { color: var(--navy); }
.form-success strong { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--navy-dark); }
.form-success p { font-size: var(--text-md); color: var(--text-mid); }
.form-success.visible { display: flex; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--bg-footer); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-6) var(--sp-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-6);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-logo .logo-text { color: var(--navy); }
.footer-tagline { font-size: var(--text-sm); color: var(--text-muted); max-width: 320px; line-height: 1.6; }
.footer-email {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(26,58,107,0.3);
}
.footer-email:hover { text-decoration-color: var(--navy); }
.footer-nav-cols { display: flex; gap: var(--sp-12); }
.footer-nav-col { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-nav-col h4 { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--sp-2); }
.footer-nav-col a { font-size: var(--text-sm); color: var(--text-mid); transition: color var(--t); }
.footer-nav-col a:hover { color: var(--navy); }
.footer-bottom { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-bottom p { font-size: var(--text-sm); color: var(--text-muted); }
.footer-disclaimer { font-size: var(--text-xs); max-width: 640px; line-height: 1.5; }

/* ─── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-delay { transition-delay: 0.15s; }
.fade-delay-2 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .stats-grid { grid-template-columns: 1fr; gap: 1px; }
  .opp-grid { grid-template-columns: 1fr; }
  .complexity-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .qualifies-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .capital-grid { grid-template-columns: repeat(2, 1fr); }
  .understand-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .cta-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-8); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .capital-grid { grid-template-columns: 1fr; }
  .footer-nav-cols { flex-direction: column; gap: var(--sp-8); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .process-step { grid-template-columns: 44px 1fr; gap: var(--sp-4); }
}
