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

:root {
  --green:       #1a7a4a;
  --green-dark:  #155f3a;
  --green-light: #e8f5ee;
  --gold-light:  #fef3c7;
  --dark:        #1c2b20;
  --mid:         #4b5e52;
  --light:       #f4f7f5;
  --border:      #dce8e0;
  --white:       #ffffff;
  --radius:      12px;
  --shadow:      0 2px 16px rgba(26,122,74,0.10);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}

/* ── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.87rem;
  font-weight: 500;
}
.topbar a { color: #fde68a; text-decoration: underline; }

/* ── HEADER ──────────────────────────────────────────────── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-wrap { display: flex; align-items: baseline; gap: 10px; }
.logo-main {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  color: var(--dark);
  letter-spacing: -0.3px;
}
.logo-main em { color: var(--green); font-style: normal; }
.logo-divider { width: 1px; height: 22px; background: var(--border); }
.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}
.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #b6dcc6;
}
.badge-pill svg { width: 13px; height: 13px; }
.header-cta {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.header-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--light);
  padding: 80px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid #f0d06a;
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero-desc {
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-cta-group { display: flex; flex-direction: column; gap: 14px; }
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,122,74,0.3);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,122,74,0.35); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid);
}
.trust-chip svg { width: 15px; height: 15px; color: var(--green); }
.hero-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,122,74,0.15);
  border: 1px solid var(--border);
}
.hero-video {
  aspect-ratio: 16/9;
  position: relative;
}
.hero-video iframe {
  width: 100%; height: 100%;
  position: absolute; top: 0; left: 0;
  border: none;
}
.hero-card-footer {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.hero-card-label { font-size: 0.82rem; font-weight: 600; color: var(--mid); }
.hero-card-enroll {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-card-enroll:hover { background: var(--green-dark); }

/* ── STATS ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 36px 40px;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: #6ee7a0; }
.stat-label { font-size: 0.82rem; color: #becbc2; font-weight: 500; }

/* ── SECTION ─────────────────────────────────────────────── */
.section { padding: 80px 40px; }
.container { max-width: 1160px; margin: 0 auto; }
.section-header { margin-bottom: 52px; }
.section-kicker {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub { font-size: 0.97rem; color: var(--mid); max-width: 520px; }

/* ── BENEFITS ────────────────────────────────────────────── */
.benefits-section { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  background: var(--white);
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #b6dcc6; }
.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.benefit-icon svg { width: 20px; height: 20px; color: var(--green); }
.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.benefit-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-section { background: var(--light); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% - 12px);
  right: calc(33.33% - 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--green), var(--border));
  z-index: 0;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(26,122,74,0.3);
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step p { font-size: 0.86rem; color: var(--mid); line-height: 1.6; }

/* ── ELIGIBILITY ─────────────────────────────────────────── */
.eligibility-section { background: var(--white); }
.elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.elig-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.elig-header {
  background: var(--light);
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.elig-body { padding: 24px; }
.elig-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.elig-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mid);
}
.elig-list li .check {
  width: 20px;
  height: 20px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.elig-note {
  background: var(--gold-light);
  border: 1px solid #f0d06a;
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 0.88rem;
  color: #78350f;
  line-height: 1.65;
}
.elig-note strong { color: #92400e; }
.elig-cta {
  margin-top: 20px;
  display: block;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 24px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.elig-cta:hover { background: var(--green-dark); }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: var(--green);
  color: var(--white);
  padding: 88px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 40px;
}
.btn-cta {
  display: inline-block;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 44px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: #becbc2;
  text-align: center;
  padding: 32px 24px;
  font-size: 0.8rem;
  line-height: 1.8;
}
footer a { color: #d4ded7; text-decoration: underline; }
footer strong { color: rgba(255,255,255,0.85); }

/* Shared page details */
.logo-main { text-decoration: none; white-space: nowrap; }
.logo-sub { display: flex; flex-direction: column; gap: 3px; }
.logo-sub img { display: block; max-width: 100%; height: auto; }
.hero > *, .elig-grid > *, .benefits-grid > *, .steps > * { min-width: 0; }
.hero-card-footer { gap: 16px; flex-wrap: wrap; }
.hero-card-enroll, .header-cta { flex-shrink: 0; }
.hero-backdrop { background: var(--light); }
.hero-points { padding-left: 20px; margin: -16px 0 26px; color: var(--mid); font-size: 0.9rem; }
.hero-points li + li { margin-top: 5px; }
.price-note { margin: 0; color: var(--mid); font-size: 0.85rem; }
.price-note strong { display: block; color: var(--green-dark); }
.cta-banner .cta-note { margin: 20px auto 0; font-size: 0.85rem; color: #fff; }
footer p + p { margin-top: 8px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin: 16px 0; }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; }
.faq-section { background: var(--light); }
.faq-list { max-width: 800px; }
details { padding: 18px 0; border-bottom: 1px solid var(--border); }
summary { cursor: pointer; font-weight: 700; min-height: 44px; padding: 8px 0; }
details p { margin: 10px 0 8px; color: var(--mid); }
.legal-page { max-width: 840px; min-height: 50vh; margin: 0 auto; }
.legal-page h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.2; margin-bottom: 24px; }
.legal-page p + p { margin-top: 20px; }
.placeholder-notice { padding: 22px; border: 1px solid #f0d06a; border-radius: var(--radius); background: var(--gold-light); color: #78350f; }
a { text-underline-offset: 3px; }
a, button, summary { touch-action: manipulation; }
:focus-visible { outline: 3px solid #92400e; outline-offset: 4px; box-shadow: 0 0 0 7px #fff; }
main:focus { outline: none; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; background: #fff; color: var(--dark); padding: 12px 20px; border: 2px solid var(--green); }
.skip-link:focus { top: 12px; }
html { scroll-padding-top: 130px; }
body { overflow-wrap: break-word; }
@media (max-width: 1080px) {
  header { flex-wrap: wrap; gap: 16px; padding: 16px 24px; }
  .hero { grid-template-columns: minmax(0, 1fr); gap: 40px; padding: 56px 24px; }
  .hero-card { width: 100%; max-width: 560px; }
}
@media (max-width: 760px) {
  header { position: static; }
  html { scroll-padding-top: 16px; }
}
@media (max-width: 480px) {
  .logo-wrap { flex-wrap: wrap; align-items: center; gap: 8px 16px; }
  .logo-sub { font-size: 0.68rem; }
  .hero { padding: 40px 20px; }
  .hero-kicker { letter-spacing: 0.02em; }
  .stats-bar { padding: 28px 20px; }
  .stat-num { font-size: 2rem; }
  .cta-banner { padding: 56px 20px; }
  .btn-cta { padding: 16px 24px; max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .benefit-card:hover, a:hover { transform: none; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .hero-card { max-width: 560px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .elig-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  header { flex-wrap: wrap; gap: 12px; padding: 14px 20px; }
  .logo-divider, .badge-pill { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .section { padding: 56px 20px; }
}
