/* ============================================================
   Sprouts in Spanish — Landing Page
   ============================================================ */

:root {
  --green-bright: #6BBF3A;
  --green-leaf: #3E8E2E;
  --green-dark: #2D6B1F;
  --green-pale: #E8F4DC;
  --green-mint: #C8E6B0;
  --red-tomato: #E63946;
  --red-deep: #C72C3A;
  --red-pale: #FBE4E6;
  --cream: #FBF7EC;
  --cream-deep: #F4ECD6;
  --brown-soil: #8B5E3C;
  --brown-dark: #5C3E27;
  --ink: #2A3A22;
  --ink-soft: #4A5A42;

  --font-display: "Fraunces", Georgia, serif;
  --font-rounded: "Quicksand", "Nunito", system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(60, 80, 30, 0.08);
  --shadow-md: 0 8px 24px rgba(60, 80, 30, 0.12);
  --shadow-lg: 0 20px 50px rgba(60, 80, 30, 0.18);
  --shadow-pop: 0 6px 0 rgba(45, 107, 31, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-rounded);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(ellipse 800px 600px at 10% 0%, rgba(107, 191, 58, 0.08), transparent 60%),
    radial-gradient(ellipse 700px 500px at 95% 30%, rgba(230, 57, 70, 0.05), transparent 60%),
    radial-gradient(ellipse 900px 700px at 50% 100%, rgba(107, 191, 58, 0.06), transparent 60%),
    var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(251, 247, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 191, 58, 0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--green-leaf);
}
.nav-logo .nav-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.nav-logo .nav-mark svg { width: 100%; height: 100%; }
.nav-logo span:last-child { color: var(--red-tomato); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-leaf); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-primary {
  background: var(--red-tomato);
  color: white;
  box-shadow: 0 6px 0 var(--red-deep), 0 12px 24px rgba(230, 57, 70, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--red-deep), 0 16px 32px rgba(230, 57, 70, 0.3);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--red-deep), 0 4px 8px rgba(230, 57, 70, 0.25);
}
.btn-secondary {
  background: var(--green-bright);
  color: white;
  box-shadow: 0 6px 0 var(--green-dark), 0 12px 24px rgba(107, 191, 58, 0.25);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--green-dark), 0 16px 32px rgba(107, 191, 58, 0.3);
}
.btn-ghost {
  background: white;
  color: var(--green-leaf);
  border: 2px solid var(--green-mint);
}
.btn-ghost:hover { background: var(--green-pale); }

.btn-lg {
  font-size: 19px;
  padding: 18px 36px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 48px 100px;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--green-leaf);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--green-mint);
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-tomato);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(230, 57, 70, 0.05); }
}

.hero h1 {
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero h1 .accent-green { color: var(--green-bright); font-style: italic; }
.hero h1 .accent-red { color: var(--red-tomato); font-style: italic; }
.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-soft);
}
.trust-avatars {
  display: flex;
}
.trust-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--cream);
  margin-left: -10px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.trust-avatars .avatar:first-child { margin-left: 0; }
.trust-avatars .avatar:nth-child(1) { background: #E63946; }
.trust-avatars .avatar:nth-child(2) { background: #6BBF3A; }
.trust-avatars .avatar:nth-child(3) { background: #F4A338; }
.trust-avatars .avatar:nth-child(4) { background: #4A9DD6; }
.hero-trust strong { color: var(--green-leaf); font-weight: 700; }

/* Hero illustration — the floating logo + scattered sprouts */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.hero-art-pot {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
}
.hero-art-pot .blob {
  position: absolute;
  inset: 8% 4% 4% 4%;
  background: white;
  border-radius: 46% 54% 52% 48% / 50% 48% 52% 50%;
  box-shadow:
    inset 0 -20px 40px rgba(107, 191, 58, 0.06),
    0 30px 60px -20px rgba(60, 80, 30, 0.18);
  border: 2px dashed rgba(107, 191, 58, 0.25);
}
.hero-art-pot .logo-img {
  position: absolute;
  inset: 6% 6% 4% 6%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(60, 80, 30, 0.12));
  animation: gentle-float 6s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating decoration around hero */
.float-deco {
  position: absolute;
  pointer-events: none;
  animation: gentle-float 5s ease-in-out infinite;
}
.float-deco.d1 { top: 8%; right: 8%; animation-delay: -1s; }
.float-deco.d2 { bottom: 12%; left: 2%; animation-delay: -2s; }
.float-deco.d3 { top: 35%; left: -2%; animation-delay: -3s; }
.float-deco.d4 { bottom: 30%; right: 0%; animation-delay: -1.5s; }

/* Hand-lettered Spanish phrase scattered */
.spanish-tag {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--red-tomato);
  font-size: 22px;
  pointer-events: none;
  transform: rotate(-6deg);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: var(--green-leaf);
  color: white;
  padding: 28px 48px;
  position: relative;
  overflow: hidden;
}
.stats::before, .stats::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(107, 191, 58, 0.4);
}
.stats::before { top: -100px; left: -50px; }
.stats::after { bottom: -120px; right: 10%; background: rgba(255,255,255,0.06); }
.stats-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}
.stat-label { font-size: 14px; opacity: 0.9; line-height: 1.3; }

/* ============================================================
   SECTIONS — generic
   ============================================================ */
section {
  position: relative;
  padding: 100px 48px;
  max-width: 1320px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--red-tomato);
  font-size: 22px;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 720px;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 56px;
}

/* ============================================================
   WHY GRID — sprout bullets
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: white;
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(107, 191, 58, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-mint);
}
.why-card .sprout-bullet {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  background: var(--green-pale);
  border-radius: 18px;
}
.why-card .sprout-bullet svg { width: 36px; height: 36px; }
.why-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.why-card .accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-pale);
  opacity: 0.4;
}

/* ============================================================
   EXPECT — bullet list with sprout markers
   ============================================================ */
.expect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.expect-art {
  position: relative;
  background: white;
  border-radius: 36px;
  aspect-ratio: 4 / 5;
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 2px dashed var(--green-mint);
  overflow: hidden;
}
.expect-art .zoom-mock {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2D6B1F 0%, #3E8E2E 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6px;
  padding: 6px;
}
.zoom-tile {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.zoom-tile.t-main {
  background: linear-gradient(135deg, #FBE4E6, #FAF6E8);
  display: grid;
  place-items: center;
}
.zoom-tile.t-main .teacher {
  font-size: 90px;
}
.zoom-tile-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
}
.zoom-tile.t-kid {
  display: grid;
  place-items: center;
  font-size: 38px;
}
.zoom-tile.t-kid:nth-child(1) { background: linear-gradient(135deg, #FBE4E6, #F4ECD6); }
.zoom-tile.t-kid:nth-child(2) { background: linear-gradient(135deg, #E8F4DC, #FAF6E8); }
.zoom-tile.t-kid:nth-child(3) { background: linear-gradient(135deg, #FAF6E8, #FBE4E6); }
.zoom-tile .name {
  position: absolute;
  bottom: 6px; left: 6px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.zoom-bar {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  border-radius: 999px;
  padding: 6px 12px;
  display: flex;
  gap: 8px;
  font-size: 14px;
}
.zoom-bar span {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.zoom-bar span.red { background: #E63946; }
.expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.expect-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.expect-list li .sprout-mark {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--green-pale);
  border-radius: 12px;
}
.expect-list li .sprout-mark svg { width: 28px; height: 28px; }
.expect-list li h4 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 4px;
}
.expect-list li p {
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* ============================================================
   AGES BAND
   ============================================================ */
.ages {
  background: linear-gradient(180deg, var(--green-pale), var(--cream));
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 -48px;
}
.ages-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.ages-inner .section-title { margin-left: auto; margin-right: auto; }
.ages-inner .section-sub { margin-left: auto; margin-right: auto; }
.age-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.age-tag {
  background: white;
  border-radius: 999px;
  padding: 14px 22px 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(107, 191, 58, 0.2);
  font-size: 16px;
}
.age-tag .num {
  background: var(--red-tomato);
  color: white;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 16px;
}
.age-tag.green .num { background: var(--green-bright); }

/* ============================================================
   TEACHERS
   ============================================================ */
.teachers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.teachers-portrait {
  position: relative;
  background: white;
  border-radius: 36px;
  padding: 36px;
  border: 2px dashed var(--red-pale);
  aspect-ratio: 5 / 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.portrait-card {
  background: linear-gradient(160deg, var(--green-pale), white);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.portrait-card .figure {
  font-size: 110px;
  line-height: 1;
  margin-top: auto;
}
.portrait-card.daughter { background: linear-gradient(160deg, var(--red-pale), white); }
.portrait-card .name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  color: var(--ink);
}
.portrait-card .role {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}
.portrait-card .placeholder-stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 22px,
    rgba(107, 191, 58, 0.06) 22px,
    rgba(107, 191, 58, 0.06) 24px
  );
}
.portrait-card.daughter .placeholder-stripe {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 22px,
    rgba(230, 57, 70, 0.06) 22px,
    rgba(230, 57, 70, 0.06) 24px
  );
}
.placeholder-note {
  position: absolute;
  top: 14px; left: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.85);
  padding: 4px 8px;
  border-radius: 6px;
}

.teachers-text .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--green-leaf);
  margin-top: 24px;
  padding-left: 22px;
  border-left: 4px solid var(--green-bright);
  line-height: 1.4;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--red-tomato);
  color: white;
  border-radius: 48px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 60px auto 100px;
  max-width: 1224px;
}
.final-cta::before, .final-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.final-cta::before {
  width: 360px; height: 360px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
}
.final-cta::after {
  width: 460px; height: 460px;
  bottom: -260px; right: -160px;
  background: radial-gradient(circle, rgba(0,0,0,0.15), transparent 70%);
}
.final-cta .section-eyebrow { color: white; opacity: 0.9; }
.final-cta h2 {
  color: white;
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.final-cta p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.final-cta .btn-primary {
  background: white;
  color: var(--red-tomato);
  box-shadow: 0 6px 0 rgba(0,0,0,0.15), 0 12px 24px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}
.final-cta .small-note {
  font-size: 14px;
  margin-top: 18px;
  opacity: 0.85;
}

/* Scattered sprouts on CTA */
.cta-sprout {
  position: absolute;
  opacity: 0.18;
}
.cta-sprout.s1 { top: 20px; right: 10%; animation: gentle-float 5s ease-in-out infinite; }
.cta-sprout.s2 { bottom: 20px; left: 8%; animation: gentle-float 6s ease-in-out -2s infinite; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 48px 36px;
}
.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
footer h5 {
  font-family: var(--font-display);
  color: white;
  font-size: 16px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
}
footer a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
footer a:hover { color: white; }
.foot-blurb {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.foot-blurb .nav-logo { color: white; }
.foot-blurb .nav-logo span:last-child { color: var(--green-bright); }
.foot-blurb p { font-size: 14.5px; opacity: 0.85; max-width: 320px; }
.foot-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.7;
}

/* ============================================================
   MODAL — sign up
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 107, 31, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  border-radius: 32px;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-header {
  background: linear-gradient(135deg, var(--green-bright), var(--green-leaf));
  color: white;
  padding: 28px 36px;
  position: relative;
  overflow: hidden;
}
.modal-header::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.modal-header h2 {
  color: white;
  font-size: 28px;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
}
.modal-header p {
  font-size: 15px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
  z-index: 2;
}
.modal-close:hover { background: rgba(255,255,255,0.35); }

.modal-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  background: white;
  border-bottom: 1px solid rgba(107, 191, 58, 0.15);
  font-size: 14px;
  font-weight: 600;
}
.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  transition: all 0.3s;
}
.step-dot.active {
  background: var(--green-bright);
  color: white;
  box-shadow: 0 0 0 4px rgba(107, 191, 58, 0.2);
}
.step-dot.done {
  background: var(--green-leaf);
  color: white;
}
.step-line {
  flex-grow: 0;
  width: 40px;
  height: 2px;
  background: var(--cream-deep);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.step-line.done::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-leaf);
}
.step-label {
  color: var(--ink-soft);
}
.step-label.active { color: var(--green-leaf); }

.modal-body {
  padding: 32px 36px;
  overflow-y: auto;
  flex-grow: 1;
}
.step-panel { display: none; }
.step-panel.active { display: block; animation: fade-in 0.3s ease; }
@keyframes fade-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid rgba(107, 191, 58, 0.2);
  background: white;
  font-family: var(--font-rounded);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(107, 191, 58, 0.15);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Class type picker */
.class-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.class-type {
  background: white;
  border: 2px solid rgba(107, 191, 58, 0.2);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.2s;
  text-align: left;
  font-family: inherit;
}
.class-type:hover {
  border-color: var(--green-mint);
  background: var(--green-pale);
}
.class-type.selected {
  border-color: var(--green-bright);
  background: var(--green-pale);
  box-shadow: 0 0 0 4px rgba(107, 191, 58, 0.15);
}
.class-type .ct-icon {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 18px;
}
.class-type.selected .ct-icon {
  background: white;
}
.class-type .ct-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
}
.class-type .ct-desc {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Calendar */
.calendar-wrap {
  background: white;
  border-radius: 18px;
  padding: 18px;
  border: 2px solid rgba(107, 191, 58, 0.15);
  margin-top: 8px;
  display: none;
}
.calendar-wrap.show { display: block; animation: fade-in 0.3s ease; }
.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.cal-nav {
  display: flex;
  gap: 6px;
}
.cal-nav button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--cream-deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.cal-nav button:hover { background: var(--green-pale); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-grid .dow {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 0;
  letter-spacing: 0.04em;
}
.cal-grid .day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  transition: all 0.15s;
  border: none;
  background: transparent;
  font-family: inherit;
}
.cal-grid .day.disabled {
  color: rgba(74, 90, 66, 0.25);
  cursor: not-allowed;
}
.cal-grid .day.available:hover {
  background: var(--green-pale);
}
.cal-grid .day.available::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green-bright);
}
.cal-grid .day.selected {
  background: var(--green-bright);
  color: white;
  font-weight: 700;
}
.cal-grid .day.selected::after { background: white; }

.time-slots {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(107, 191, 58, 0.3);
}
.time-slots-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.time-slot {
  background: white;
  border: 1.5px solid rgba(107, 191, 58, 0.25);
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  color: var(--ink);
}
.time-slot:hover {
  border-color: var(--green-bright);
  background: var(--green-pale);
}
.time-slot.selected {
  background: var(--green-bright);
  color: white;
  border-color: var(--green-bright);
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 36px;
  border-top: 1px solid rgba(107, 191, 58, 0.15);
  background: white;
  gap: 14px;
}
.modal-footer .helper {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dev-note {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px;
  color: var(--ink-soft);
  background: var(--cream-deep);
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 12px;
  border-left: 3px solid var(--green-bright);
  letter-spacing: 0.01em;
}

.success-state {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 96px; height: 96px;
  background: var(--green-pale);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 50px;
  animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop-in {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.success-state h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.success-state p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 400px;
  margin: 0 auto 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* hide desktop nav CTA on mobile nav button */
.nav-mobile-cta { display: none; }

@media (max-width: 980px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-mobile-cta { display: inline-flex; padding: 10px 18px; font-size: 14px; }

  /* Hero — center text, extra bottom room so stats strip doesn't crowd the logo */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px 100px;
    gap: 32px;
    overflow: hidden;
  }
  .hero-copy { text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-cta-row { justify-content: center; }
  .hero-trust { justify-content: center; }
  /* Show image first on mobile so logo leads */
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; width: 100%; }

  .stats { padding: 28px 20px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }

  section { padding: 64px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .expect, .teachers { grid-template-columns: 1fr; gap: 40px; }
  .ages { padding: 64px 20px; margin: 0 -20px; }
  .final-cta { padding: 56px 24px; margin: 40px 20px 60px; border-radius: 32px; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .modal { max-width: 100%; }
  .modal-header, .modal-stepper, .modal-body, .modal-footer { padding-left: 20px; padding-right: 20px; }
  .field-row, .class-types { grid-template-columns: 1fr; }

  /* Pricing — full width single column, keep buttons in 2-per-row */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px 20px; }
  .pricing-actions { flex-wrap: wrap; }
  .pricing-actions .btn { font-size: 13px; padding: 10px 12px; flex: 1; min-width: 130px; }
  .pricing-nums { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .stat { flex-direction: column; align-items: flex-start; gap: 4px; }
  .stat-num { font-size: 30px; }
  .pricing-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .pricing-nums { gap: 6px; }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.pricing-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(107, 191, 58, 0.15);
  border-top: 4px solid var(--green-bright);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pricing-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
  flex-shrink: 0;
}
.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.pricing-schedule {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--cream);
  border-radius: 16px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pricing-who {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  min-width: 90px;
}
.pricing-nums {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.price-single {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-soft);
}
.price-or {
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.6;
}
.price-sub {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-leaf);
}
.price-save {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.per {
  font-family: var(--font-rounded);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.pricing-sub-note {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: -8px;
}
.pricing-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.pricing-actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 15px;
  padding: 12px 20px;
}
.pricing-waitlist-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: -8px;
}
.pricing-waitlist-note a {
  color: var(--green-leaf);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing-free-note {
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 20px 28px;
  background: white;
  border-radius: 16px;
  border: 1.5px dashed var(--green-mint);
  max-width: 520px;
  margin: 0 auto;
}
.link-btn {
  background: none;
  border: none;
  color: var(--green-leaf);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-btn:hover { color: var(--green-dark); }

/* Sibling count toggle in modal */
.sibling-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sibling-opt {
  background: white;
  border: 2px solid rgba(107, 191, 58, 0.2);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s;
  text-align: center;
}
.sibling-opt:hover {
  border-color: var(--green-mint);
  background: var(--green-pale);
}
.sibling-opt.selected {
  border-color: var(--green-bright);
  background: var(--green-pale);
  box-shadow: 0 0 0 4px rgba(107, 191, 58, 0.15);
}

.calendly-ready {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-pale);
  border: 1.5px solid var(--green-mint);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: 12px;
  animation: fade-in 0.3s ease;
}
