/* ============================================================
   DivorceDoneRight — Brand CSS
   Sibling of EstateDoneRight, PrenupsDoneRight & PostnupDoneRight
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --navy:        #1a1a2e;
  --navy-mid:    #16213e;
  --navy-light:  #0f3460;
  --gold:        #c9a84c;
  --gold-light:  #e2c272;
  --gold-dim:    #8a7034;
  --cream:       #faf8f5;
  --cream-dark:  #f0ece5;
  --text:        #1a1a2e;
  --text-muted:  #5a5a7a;
  --text-light:  #8888aa;
  --white:       #ffffff;
  --border:      rgba(26, 26, 46, 0.1);
  --border-gold: rgba(201, 168, 76, 0.3);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', -apple-system, sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(26, 26, 46, 0.08);
  --shadow-md:   0 8px 40px rgba(26, 26, 46, 0.14);
  --shadow-lg:   0 20px 60px rgba(26, 26, 46, 0.2);
  --transition:  0.2s ease;
}

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

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
ul { list-style: none; }

/* ── Typography Helpers ───────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

em { font-style: italic; color: var(--gold); }

/* ── Layout Helpers ───────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Site Sections (routing) ──────────────────────────────── */
.site-section { display: none; }
.site-section.active { display: block; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  display: block;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 400;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: opacity var(--transition) !important;
}

.nav-cta:hover { opacity: 0.9; }

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1.5rem;
  z-index: 999;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  display: block;
  padding: 0.35rem 0;
}

.nav-mobile .nav-cta {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--navy) !important;
  padding: 0.65rem 1.5rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 7rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(15,52,96,0.6) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

/* Attorney badge */
.attorney-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtext {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.price-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  text-decoration: none;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.hero-cta svg { transition: transform var(--transition); }
.hero-cta:hover svg { transform: translateX(3px); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Document Preview */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.doc-preview {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}

.doc-preview:hover { transform: rotate(0deg) scale(1.02); }

.doc-header {
  background: var(--navy-mid);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.doc-seal {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.doc-title-block .doc-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

.doc-title-block .doc-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1px;
}

.doc-body { padding: 1.25rem; }

.doc-section { margin-bottom: 0.85rem; }

.doc-section-heading {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.4rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border-gold);
}

.doc-lines { display: flex; flex-direction: column; gap: 5px; }

.doc-line {
  height: 6px;
  background: var(--cream-dark);
  border-radius: 3px;
}

.doc-line.short { width: 60%; }
.doc-line.medium { width: 80%; }
.doc-line.full   { width: 100%; }

.doc-signature-area {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.sig-block {
  flex: 1;
  text-align: center;
}

.sig-line {
  height: 1px;
  background: var(--text);
  margin-bottom: 4px;
}

.sig-label {
  font-size: 0.55rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   JURISDICTIONS BANNER
   ============================================================ */
.jurisdictions-banner {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 1.5rem;
  overflow: hidden;
}

.jurisdictions-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.jurisdictions-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.jurisdictions-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.jurisdiction-tag {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  white-space: nowrap;
}

/* ============================================================
   UNCONTESTED ONLY BANNER
   ============================================================ */
.uncontested-banner {
  background: rgba(201,168,76,0.06);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0.9rem 1.5rem;
}

.uncontested-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.uncontested-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.uncontested-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.uncontested-text strong { color: var(--navy); }
.uncontested-text em { font-style: italic; color: var(--gold-dim); }
.uncontested-text a { color: var(--gold-dim); font-weight: 600; text-decoration: underline; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 { color: var(--navy); margin-bottom: 0.75rem; }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.steps-5 {
  grid-template-columns: repeat(5, 1fr);
}

.step-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.step-card h3 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1rem; }
.step-card p  { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.popular {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.75rem 0 0.25rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-billing {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.plan-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.plan-feature .feat-icon {
  width: 18px;
  height: 18px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-feature .feat-icon svg { color: var(--gold); }

.plan-btn {
  width: 100%;
  padding: 0.8rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
}

.plan-btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.plan-btn.primary:hover { opacity: 0.9; transform: translateY(-1px); }

.plan-btn.outline {
  background: transparent;
  border: 1.5px solid var(--border-gold);
  color: var(--navy);
}

.plan-btn.outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
}

/* ============================================================
   IS THIS RIGHT FOR YOU?
   ============================================================ */
.qualify-section {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.eligibility-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.qualify-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.qualify-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1.5px solid var(--border);
}

.qualify-card.qualify-yes {
  background: rgba(74,222,128,0.04);
  border-color: rgba(74,222,128,0.25);
}

.qualify-card.qualify-no {
  background: rgba(224,92,92,0.04);
  border-color: rgba(224,92,92,0.2);
}

.qualify-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.qualify-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}

.qualify-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qualify-icon-yes {
  background: rgba(74,222,128,0.15);
  color: #16a34a;
}

.qualify-icon-no {
  background: rgba(224,92,92,0.12);
  color: #c0392b;
}

.qualify-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
}

.qualify-card.qualify-yes .qualify-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.qualify-card.qualify-yes .qualify-list li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.qualify-card.qualify-no .qualify-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.qualify-card.qualify-no .qualify-list li::before {
  content: '✗';
  color: #c0392b;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contested-referral {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contested-referral a {
  color: var(--gold-dim);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================================
   CROSS-PROMOTION
   ============================================================ */
.cross-promo {
  background: var(--cream-dark);
  padding: 4rem 1.5rem;
}

.cross-promo-grid {
  max-width: 800px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.cross-promo-grid-4 {
  max-width: 1100px;
  grid-template-columns: repeat(4, 1fr);
}

.promo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition);
}

.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-gold); }

.promo-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.promo-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}

.promo-card:hover .promo-link { gap: 0.6rem; }

/* ============================================================
   TRUST SIGNALS
   ============================================================ */
.trust-signals {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.trust-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border-gold); }

.trust-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}

.trust-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.trust-card p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--border-gold); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold-dim); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer-inner a { color: var(--gold-dim); font-weight: 500; text-decoration: underline; }

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta {
  background: var(--navy);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.footer-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text { color: var(--white); font-size: 1rem; }

.footer-disclaimer {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   QUESTIONNAIRE
   ============================================================ */
.questionnaire-section {
  background: var(--cream);
  min-height: 100vh;
  padding-top: 68px;
}

.questionnaire-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}

/* Progress Bar */
.progress-bar-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 0.75rem;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.progress-fill-bar {
  position: absolute;
  top: 18px;
  left: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1;
  transition: width 0.4s ease;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
}

.progress-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.progress-step.active .progress-step-dot {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: var(--navy);
}

.progress-step.completed .progress-step-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.progress-step-label {
  font-size: 0.63rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  text-align: center;
}

.progress-step.active .progress-step-label,
.progress-step.completed .progress-step-label { color: var(--gold-dim); font-weight: 600; }

/* Step Form Panel */
.step-panel { display: none; }
.step-panel.active { display: block; }

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.step-header { margin-bottom: 2rem; }

.step-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.step-header p { font-size: 0.9rem; color: var(--text-muted); }

/* Form Elements */
.form-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.75rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-gold);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row.cols-2 { grid-template-columns: repeat(2, 1fr); }
.form-row.cols-3 { grid-template-columns: repeat(3, 1fr); }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
}

.form-group label .required { color: #e05c5c; margin-left: 2px; }

.form-control {
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0.85rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}

.form-control.error { border-color: #e05c5c; }

textarea.form-control {
  height: auto;
  min-height: 90px;
  padding: 0.75rem 0.85rem;
  resize: vertical;
}

select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a7a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2.5rem; }

.field-hint { font-size: 0.75rem; color: var(--text-light); }
.field-error { font-size: 0.75rem; color: #e05c5c; display: none; }
.form-group.has-error .field-error { display: block; }
.form-group.has-error .form-control { border-color: #e05c5c; }

/* State Info Box */
.state-info-box {
  background: var(--cream);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 0.5rem 0 1rem;
}

.state-info-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.65rem;
}

.state-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.state-info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.state-info-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.state-info-value {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
}

/* Eligibility Checks */
.eligibility-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.eligibility-checks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.eligibility-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.eligibility-check:has(input:checked) {
  border-color: rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.04);
}

.eligibility-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.eligibility-check label {
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.contested-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(224,92,92,0.06);
  border: 1px solid rgba(224,92,92,0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.contested-notice svg { color: #c0392b; flex-shrink: 0; margin-top: 1px; }
.contested-notice a { color: var(--gold-dim); font-weight: 600; text-decoration: underline; }

/* Checkbox / Radio */
.checkbox-group, .radio-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-group label,
.radio-group label {
  font-size: 0.875rem;
  color: var(--text);
  cursor: pointer;
}

/* Dynamic Tables */
.dynamic-table-wrap {
  margin-bottom: 1.5rem;
}

.dynamic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.dynamic-table th {
  background: var(--cream-dark);
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.dynamic-table td {
  padding: 0.4rem 0.4rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.dynamic-table td input,
.dynamic-table td select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  font-size: 0.83rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  outline: none;
}

.dynamic-table td input:focus,
.dynamic-table td select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.1);
}

.btn-remove-row {
  background: none;
  border: none;
  color: #e05c5c;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.1rem;
  line-height: 1;
  transition: opacity var(--transition);
}

.btn-remove-row:hover { opacity: 0.7; }

.btn-add-row {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1.5px dashed var(--border-gold);
  border-radius: var(--radius);
  color: var(--gold-dim);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all var(--transition);
}

.btn-add-row:hover {
  background: rgba(201,168,76,0.06);
  border-color: var(--gold);
  color: var(--gold);
}

/* Conditional reveal fields */
.conditional-field { display: none; }
.conditional-field.visible { display: block; }

/* Navigation buttons */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.btn-prev {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-prev:hover { border-color: var(--gold); color: var(--gold-dim); }

.btn-next, .btn-pay {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
}

.btn-next:hover, .btn-pay:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

/* Step 5 — Review */
.review-section {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.review-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.review-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.btn-edit-section {
  font-size: 0.8rem;
  color: var(--gold-dim);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.review-field { display: flex; flex-direction: column; gap: 2px; }
.review-label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.review-value { font-size: 0.875rem; color: var(--text); font-weight: 500; }

/* Tier selector in review */
.tier-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}

.tier-option {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.tier-option:hover { border-color: var(--border-gold); }

.tier-option.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.tier-option input[type="radio"] { position: absolute; opacity: 0; }

.tier-option-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.tier-option-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dim);
}

.tier-option-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0.25rem;
}

/* Payment summary */
.payment-summary {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  color: var(--white);
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0;
}

.payment-summary-row.total {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

/* Legal Disclaimers */
.disclaimer-checks { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.25rem 0; }

.disclaimer-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.disclaimer-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.disclaimer-check label { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }

/* ============================================================
   PAYMENT MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 25, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-header {
  background: var(--navy);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header-left h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.modal-header-left p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.modal-close {
  background: rgba(255,255,255,0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.modal-close:hover { background: rgba(255,255,255,0.2); }

.modal-body { padding: 2rem; }

.modal-ssl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: #2d7a47;
  font-weight: 500;
}

.modal-ssl svg { color: #4ade80; flex-shrink: 0; }

.modal-order-summary {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.modal-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
}

.modal-order-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  border-top: 1px solid var(--border);
  margin-top: 0.35rem;
  padding-top: 0.6rem;
}

.modal-stripe-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.modal-stripe-notice svg { color: var(--gold); flex-shrink: 0; }

.modal-pay-btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-pay-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.modal-stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.modal-footer-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* ============================================================
   LOADING OVERLAY
   ============================================================ */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.92);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}

.loading-overlay.active { display: flex; }

.loading-spinner {
  width: 56px;
  height: 56px;
  border: 3px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.loading-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ============================================================
   SUCCESS SECTION
   ============================================================ */
.success-section {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
}

.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 720px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(74,222,128,0.15), rgba(74,222,128,0.05));
  border: 2px solid rgba(74,222,128,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #4ade80;
}

.success-card h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.success-card > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.download-card {
  background: var(--cream);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.download-card-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pdf-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.download-meta .file-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.download-meta .file-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-download:hover { opacity: 0.9; transform: translateY(-1px); }

.next-steps {
  text-align: left;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.next-steps h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.next-steps ol {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.next-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.next-steps li::before {
  content: counter(steps);
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Success Cross-Promo */
.success-cross-promo {
  margin: 1.5rem 0;
  text-align: left;
}

.success-cross-promo h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  text-align: center;
}

.success-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.success-promo-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all var(--transition);
}

.success-promo-card:hover { border-color: var(--border-gold); transform: translateY(-2px); box-shadow: var(--shadow); }

.success-promo-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.success-promo-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

/* Lawyering for Love promo */
.lawyering-promo {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.lawyering-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.lawyering-promo-inner > div {
  text-align: left;
}

.lawyering-promo-inner strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.lawyering-promo-inner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.lawyering-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.lawyering-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.success-contact {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.success-contact a {
  color: var(--gold-dim);
  font-weight: 500;
}

.btn-return {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1.5px solid var(--border-gold);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-return:hover { background: rgba(201,168,76,0.06); border-color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .steps-5 { grid-template-columns: repeat(3, 1fr); }
  .cross-promo-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-5 { grid-template-columns: 1fr 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }

  .qualify-grid { grid-template-columns: 1fr; }

  .cross-promo-grid { grid-template-columns: 1fr; }
  .cross-promo-grid-4 { grid-template-columns: 1fr 1fr; }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .form-row.cols-2 { grid-template-columns: 1fr; }
  .form-row.cols-3 { grid-template-columns: 1fr; }

  .state-info-grid { grid-template-columns: 1fr 1fr; }

  .tier-selector { grid-template-columns: 1fr; }

  .review-grid { grid-template-columns: 1fr; }

  .success-promo-grid { grid-template-columns: 1fr; }
  .lawyering-promo-inner { flex-direction: column; align-items: flex-start; }
  .download-card { flex-direction: column; align-items: flex-start; }

  .questionnaire-wrap { padding: 2rem 1rem 4rem; }
  .step-card { padding: 1.75rem 1.25rem; }

  .progress-step-label { display: none; }
  .progress-step-dot { width: 30px; height: 30px; font-size: 0.75rem; }
  .progress-steps::before { top: 15px; }
  .progress-fill-bar { top: 15px; }
}

@media (max-width: 480px) {
  .steps-5 { grid-template-columns: 1fr; }
  .cross-promo-grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 0.75rem; }
}
