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

:root {
  --bg: #0a1109;
  --surface: #121a10;
  --surface-2: #1a2716;
  --fg: #f0ebe2;
  --fg-muted: #8a9a7e;
  --accent: #2dd65b;
  --accent-gold: #d4a843;
  --accent-dim: rgba(45, 214, 91, 0.1);
  --accent-gold-dim: rgba(212, 168, 67, 0.12);
  --border: rgba(240, 235, 226, 0.07);
  --font-serif: 'Crimson Pro', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography Helpers ─────────────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

/* ─── Money Stack Decorative Element ──────────────────────────────── */
.money-stack {
  position: relative;
  display: inline-block;
}

.money-stack::before,
.money-stack::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 1px;
}

.money-stack::before {
  bottom: -8px;
  background: var(--accent-gold);
  opacity: 0.6;
}

.money-stack::after {
  bottom: -14px;
  background: var(--accent-gold);
  opacity: 0.35;
}

/* ─── Navigation ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 17, 9, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-logo .logo-green { color: var(--accent); }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  padding: 5rem 2rem 6rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 65% 40%, rgba(45, 214, 91, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: var(--accent-gold-dim);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 2px;
  padding: 0.4rem 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Hero money-image container */
.hero-money-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  box-shadow:
    0 0 40px rgba(45, 214, 91, 0.12),
    0 0 80px rgba(212, 168, 67, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.6);
  position: relative;
}

/* Gold border shimmer on image */
.hero-money-img::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(212,168,67,0.4), transparent 50%, rgba(45,214,91,0.2));
  pointer-events: none;
}

/* Decorative stacked bills behind the image */
.hero-bill-stack {
  position: absolute;
  bottom: -16px;
  right: -20px;
  width: 120px;
  height: 60px;
  background: linear-gradient(135deg, #1c3a1a 0%, #0f1f0c 100%);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 3px;
  box-shadow:
    inset 0 2px 4px rgba(45, 214, 91, 0.1),
    0 4px 12px rgba(0,0,0,0.5);
  z-index: -1;
}

.hero-bill-stack::before {
  content: '$100';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(212, 168, 67, 0.5);
  letter-spacing: 0.05em;
}

.hero-bill-stack::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 6px;
  right: 6px;
  height: 5px;
  background: linear-gradient(180deg, #1a2e18 0%, #243a1f 100%);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 2px;
}

/* ─── Problem Section ───────────────────────────────────────────────── */
.problem {
  padding: 6rem 2rem;
  background: var(--surface);
  position: relative;
}
.problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 80px,
    rgba(45, 214, 91, 0.015) 80px,
    rgba(45, 214, 91, 0.015) 81px
  );
  pointer-events: none;
}
.problem-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.problem-headline, .process-headline, .difference-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: 3rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(45, 214, 91, 0.08);
  border: 1px solid rgba(45, 214, 91, 0.08);
}
.problem-card {
  background: var(--surface);
  padding: 2rem 1.75rem;
}
.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(45, 214, 91, 0.2);
  margin-bottom: 1.25rem;
  position: relative;
}
.problem-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.problem-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.problem-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* ─── Process Section ───────────────────────────────────────────────── */
.process { padding: 6rem 2rem; position: relative; overflow: hidden; }
.process::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 214, 91, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.process-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 0.5rem;
}
.step {
  flex: 1;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
}
.step:first-child { border-radius: 4px 0 0 4px; }
.step:last-child { border-radius: 0 4px 4px 0; border-left: none; }
.step:not(:first-child):not(:last-child) { border-left: none; }
.step-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}
.step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.step-connector {
  width: 24px;
  height: 1px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
  margin: 0 -1px;
  position: relative;
  z-index: 1;
}

/* ─── Difference Section ────────────────────────────────────────────── */
.difference {
  padding: 6rem 2rem;
  background: var(--surface);
}
.difference-inner { max-width: 1100px; margin: 0 auto; }
.difference-header { margin-bottom: 2.5rem; }
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.diff-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
}
.diff-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(45, 214, 91, 0.3);
  flex-shrink: 0;
  margin-top: 0.15rem;
  position: relative;
}
.diff-check::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 7px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.diff-body h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; }
.diff-body p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.6; }

/* ─── Statistics Section ───────────────────────────────────────────── */
.statistics {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.statistics-inner { max-width: 1100px; margin: 0 auto; }
.stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(45, 214, 91, 0.1);
  background: var(--surface);
}
.stat {
  flex: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.5; }
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
.stats-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ─── Compliance Section ─────────────────────────────────────────────── */
.compliance {
  padding: 5rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compliance-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.compliance-icon {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: var(--accent-dim);
  border: 1px solid rgba(45, 214, 91, 0.2);
  flex-shrink: 0;
  margin-top: 0.25rem;
  position: relative;
}
.compliance-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 20px;
  border: 2px solid var(--accent);
  border-radius: 2px;
}
.compliance-content { max-width: 700px; }
.compliance-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.compliance-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.compliance-sub {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-style: italic;
}

/* ─── Closing Section ───────────────────────────────────────────────── */
.closing {
  padding: 7rem 2rem;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 30% 60%, rgba(45, 214, 91, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
/* Decorative stacked bills in closing section */
.closing::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 80px;
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.12) 0%, rgba(212, 168, 67, 0.04) 100%);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 4px;
  pointer-events: none;
}
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.closing-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-gold));
  margin: 0 auto 2rem;
}
.closing-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── Resources Section ─────────────────────────────────────────────── */
.resources {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.resources-inner { max-width: 1100px; margin: 0 auto; }
.resources-headline {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600; line-height: 1.2; max-width: 640px; margin-bottom: 2.5rem;
}
.resources-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.resource-card {
  display: flex; flex-direction: column;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  border-radius: 4px;
}
.resource-card:hover {
  border-color: rgba(45, 214, 91, 0.3);
  transform: translateY(-2px);
}
.resource-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-gold);
  margin-bottom: 0.85rem;
}
.resource-title {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600;
  color: var(--fg); margin-bottom: 0.65rem; line-height: 1.3;
}
.resource-desc {
  font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65;
  flex: 1; margin-bottom: 1.25rem;
}
.resource-cta {
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  letter-spacing: 0.03em;
}

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer {
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-brand .logo-green { color: var(--accent); }
.footer-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.footer-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 1rem;
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(138, 154, 126, 0.5);
  line-height: 1.6;
}

/* ─── Eligibility Widget ─────────────────────────────────────────────── */
.eligibility-widget {
  border-top: 1px solid rgba(45, 214, 91, 0.15);
  background: linear-gradient(180deg, rgba(45,214,91,0.04) 0%, transparent 100%);
  padding: 3.5rem 2rem;
}
.eligibility-widget-inner {
  max-width: 960px;
  margin: 0 auto;
}
.widget-header {
  text-align: center;
  margin-bottom: 2rem;
}
.widget-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(45, 214, 91, 0.25);
  border-radius: 2px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.75rem;
}
.widget-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.widget-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.widget-form {
  background: var(--surface);
  border: 1px solid rgba(45, 214, 91, 0.12);
  border-radius: 6px;
  padding: 1.75rem;
}
.widget-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.widget-field { display: flex; flex-direction: column; gap: 0.4rem; }
.widget-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.widget-label .optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(138,154,126,0.5);
}
.widget-input {
  background: var(--bg);
  border: 1px solid rgba(240,235,226,0.12);
  border-radius: 4px;
  padding: 0.65rem 0.9rem;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.15s;
  appearance: none;
}
.widget-input::placeholder { color: rgba(138,154,126,0.5); }
.widget-input:focus {
  outline: none;
  border-color: rgba(45, 214, 91, 0.4);
}
.widget-btn {
  background: var(--accent);
  color: #0a1109;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.widget-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.widget-btn:active { transform: translateY(0); }
.widget-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.widget-btn--gold { background: var(--accent-gold); }
.widget-result {
  background: var(--surface);
  border-radius: 6px;
  padding: 1.75rem;
  margin-top: 0.5rem;
  animation: fadeUp 0.3s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.widget-result--match { border: 1px solid rgba(45, 214, 91, 0.3); }
.widget-result--nomatch { border: 1px solid rgba(240,235,226,0.07); }
.widget-result--done { border: 1px solid rgba(212,168,67,0.25); text-align: center; }
.result-match-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.result-match-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(45, 214, 91, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 36px;
  text-align: center;
}
.result-match-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.result-match-amount {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.result-match-preview {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.result-gate-copy {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.widget-contact-form { margin-top: 0.5rem; }
.contact-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
}
.contact-row .widget-input { flex: 1; min-width: 180px; }
.result-nomatch-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.65rem;
}
.result-nomatch-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.result-done-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.result-done-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.result-done-footer {
  font-size: 0.82rem;
  color: rgba(138,154,126,0.6);
}
.widget-trust {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(138,154,126,0.5);
  margin-top: 1.25rem;
  letter-spacing: 0.03em;
}

/* ─── Counties Section ───────────────────────────────────────────────── */
.counties {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.counties-inner { max-width: 1100px; margin: 0 auto; }
.counties-headline {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600; line-height: 1.2; max-width: 640px; margin-bottom: 0.75rem;
}
.counties-sub {
  font-size: 0.95rem; color: var(--fg-muted); margin-bottom: 2.5rem; max-width: 560px;
}
.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.county-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 5px; padding: 1.25rem 1.1rem;
  text-decoration: none; display: block;
  transition: border-color 0.15s, background 0.15s;
}
.county-card:hover { border-color: rgba(45,214,91,0.3); background: var(--surface-2); }
.county-card-name {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600;
  color: var(--fg); margin-bottom: 0.2rem;
}
.county-card-seat { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.county-card-cta { font-size: 0.8rem; color: var(--accent); font-weight: 600; }

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-money-img { max-width: 100%; }
  .hero-bill-stack { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 0.75rem; }
  .step-connector { display: none; }
  .step { border-left: 1px solid var(--border) !important; border-right: 1px solid var(--border); border-bottom: none; }
  .step:last-child { border-bottom: 1px solid var(--border); }
  .difference-grid { grid-template-columns: 1fr; }
  .stat-row { flex-direction: column; gap: 0; }
  .stat-divider { display: none; }
  .stat { border-bottom: 1px solid var(--border); }
  .compliance-inner { flex-direction: column; }
  .widget-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .problem, .process, .difference, .statistics, .compliance, .closing { padding: 4rem 1.5rem; }
  .nav-inner { padding: 0.85rem 1.5rem; }
  .eligibility-widget { padding: 2.5rem 1.5rem; }
  .contact-row { flex-direction: column; }
  .contact-row .widget-input { min-width: 100%; }
}