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

:root {
  --pink:    #FF6B9D;
  --pink-lt: #FFE8F2;
  --purple:  #8B5CF6;
  --purple-lt: #EDE9FE;
  --teal:    #14B8A6;
  --teal-lt: #CCFBF1;
  --yellow:  #F59E0B;
  --yellow-lt: #FEF3C7;
  --green:   #22C55E;
  --green-lt: #DCFCE7;
  --navy:    #1E3A5F;
  --text:    #374151;
  --text-lt: #6B7280;
  --white:   #FFFFFF;
  --bg:      #FAFAFA;
  --radius:  16px;
  --shadow:  0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

/* Stars are baked into body background-image via canvas in app.js */

body {
  font-family: 'Nunito', sans-serif;
  background: #F5EDD8;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; z-index: 1; }
.center { text-align: center; }
.accent-pink   { color: var(--pink); }
.accent-teal   { color: var(--teal); }
.accent-yellow { color: var(--yellow); }
.accent-purple { color: var(--purple); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-lt);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-label.center { display: block; }

.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-lt);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
}
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-green {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-outline-purple {
  background: transparent;
  border-color: var(--purple);
  color: var(--purple);
}
.btn-outline-purple:hover { background: var(--purple); color: #fff; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-star { font-size: 1.4rem; }
.logo-text {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--navy);
  line-height: 1;
}
.logo-accent { color: var(--pink); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: .9rem;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--pink-lt); color: var(--pink); }
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--purple)) !important;
  color: #fff !important;
}
.nav-cta:hover { opacity: .9; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: transparent; /* stars show through from body */
  padding: 96px 32px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── ROUND CORNER BADGES (decorative, don't cover text) ── */
.badge-burst {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  font-weight: 800;
  font-size: .72rem;
  line-height: 1.25;
  padding: 18px;
  letter-spacing: .01em;
  box-shadow: 0 6px 18px rgba(0,0,0,.08), inset 0 -4px 10px rgba(0,0,0,.05);
  border: 3px solid white;
  z-index: 3;
}
.badge-burst-pink   { top: 190px; left: 30px;  transform: rotate(-14deg); }
.badge-burst-yellow { top: 190px; right: 30px; transform: rotate(14deg); }

.burst-cursive {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  display: inline-block;
  color: #C4307F;
  font-size: 1em;
  margin-top: 2px;
}

.badge-burst-pink {
  background: radial-gradient(circle at 30% 25%, #FFEDF3 0%, #FFCFDD 55%, #FFB3CC 100%);
  color: #8B2456;
}
.badge-burst-yellow {
  background: radial-gradient(circle at 30% 25%, #FFF8E1 0%, #FFE8A6 55%, #FFD679 100%);
  color: #6B4310;
}

/* ── MAIN TITLE BLOCK ── */
.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  max-width: 720px;
  width: 100%;
  z-index: 1;
  position: relative;
}
.hero-main .hero-tagline-banner {
  margin: 4px 0;
  box-shadow: 0 6px 18px rgba(255,107,157,.25);
}
.hero-enrollment {
  background: white;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.04);
}
.enrollment-year {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-lt);
  line-height: 1.4;
  margin-bottom: 6px;
}
.enrollment-year strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  margin-top: 4px;
  letter-spacing: .02em;
}
.enrollment-sub {
  font-size: .9rem;
  color: var(--text-lt);
  max-width: 420px;
  margin: 8px auto 0;
  line-height: 1.5;
}

/* ── SUBJECTS BAR (below main) ── */
.hero-subjects-bar {
  background: white;
  border-radius: 20px;
  padding: 24px 28px 22px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 920px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.subjects-bar-header {
  text-align: center;
  margin-bottom: 18px;
}
.subjects-bar-pill {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .08em;
  padding: 6px 18px;
  border-radius: 999px;
}
.subjects-bar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.subj-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
}
.subj-bar-item .subj-icon {
  width: 44px; height: 44px; font-size: 1rem;
}
.subj-portuguese { background: #22C55E; color: white; font-size: 1rem; }
.subj-bar-label small { display: block; font-weight: 600; font-size: .7rem; color: var(--text-lt); margin-top: 2px; }

/* Decorative scattered deco elements */
.deco {
  position: absolute;
  pointer-events: none;
  font-size: 1.4rem;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
}
.deco-star1  { top: 100px; left: 240px; font-size: 2rem; animation-delay: 0s; }
.deco-star2  { top: 80px;  right: 280px; font-size: 1.2rem; animation-delay: 1s; }
.deco-heart1 { top: 140px; left: 180px; animation-delay: .5s; }
.deco-heart2 { top: 60px;  right: 240px; animation-delay: 1.5s; }
.deco-star3  { bottom: 100px; left: 260px; animation-delay: 2s; }
.deco-heart3 { bottom: 80px; right: 270px; animation-delay: 2.5s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(6deg); }
}

.cloud-bubble {
  background: white;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: .82rem;
  color: var(--navy);
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  border: 2px solid rgba(255,255,255,.9);
  max-width: 160px;
}
.cloud-bubble span { color: var(--pink); font-style: italic; font-weight: 800; }

/* About-section photo */
.about-photo {
  width: 220px;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  background: linear-gradient(160deg, #FFD6E8, #C4B5FD);
}
.about-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.spots-badge {
  background: var(--yellow-lt);
  border: 2.5px dashed var(--yellow);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}
.spots-title {
  font-weight: 900;
  font-size: .75rem;
  color: var(--navy);
  line-height: 1.2;
  text-transform: uppercase;
}
.spots-sub {
  font-size: .78rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  text-align: center;
}

/* ── CENTER COL ── */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  gap: 14px;
  min-width: 0;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
}
.ht-little {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: .04em;
}
.ht-little > span {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-style: normal;
}
.ht-learners {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.ht-club {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: white;
  background: var(--teal);
  padding: 4px 28px;
  border-radius: 999px;
  letter-spacing: .06em;
  margin-top: 4px;
}

.hero-tagline-banner {
  background: var(--pink);
  color: white;
  font-weight: 900;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 28px;
  border-radius: 999px;
  width: fit-content;
}

.hero-goals-box {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 16px 20px;
  width: 100%;
  max-width: 460px;
}
.goals-title {
  font-size: .78rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.goals-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 8px;
}
.goal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  flex: 1;
}
.goal-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}
.goal-check { background: var(--teal);   color: white; }
.goal-star  { background: var(--yellow-lt); font-size: 1.4rem; }
.goal-brain { background: var(--pink-lt); font-size: 1.3rem; }
.goal-divider { width: 1px; height: 48px; background: #E5E7EB; flex-shrink: 0; }

.hero-cta-banner {
  background: var(--pink);
  color: white;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  justify-content: center;
}
.cta-link { color: var(--yellow); text-decoration: none; font-weight: 900; }
.cta-link:hover { text-decoration: underline; }


.right-box {
  background: white;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.right-box-title {
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}
.subjects-title { background: var(--teal); color: white; }
.schedule-title { background: var(--purple-lt); color: var(--purple); }
.plans-title    { background: var(--green-lt);  color: var(--green); }

.subjects-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.subjects-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}
.subj-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 900;
  flex-shrink: 0;
}
.subj-blue   { background: #3B82F6; color: white; }
.subj-red    { background: #EF4444; color: white; font-size: 1rem; }
.subj-green  { background: #22C55E; color: white; font-size: 1rem; }
.subj-yellow { background: var(--yellow); color: white; font-size: 1rem; }
.subj-purple { background: var(--purple); color: white; font-size: .6rem; }
.subj-note   { font-size: .7rem; color: var(--text-lt); font-weight: 600; }

.sched-days-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0;
}
.sched-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .85rem;
}
.sched-mon { background: #CCFBF1; color: #0F766E; }
.sched-tue { background: #FEF3C7; color: #92400E; }
.sched-thu { background: #EDE9FE; color: #6D28D9; }
.sched-day-name { font-weight: 800; }
.sched-day-time { font-size: .78rem; opacity: .85; }
.schedule-note { font-size: .75rem; color: var(--text-lt); font-weight: 600; margin-top: 4px; }

.plans-note { font-size: .82rem; color: var(--text-lt); font-weight: 600; }

/* ── WHY STRIP ── */
.why-strip {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  padding: 20px 24px;
}
.why-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: .95rem;
}
.why-icon { font-size: 1.3rem; }

/* ── ABOUT V2 ── */
.about { background: white; }
.about-v2 { max-width: 1000px; margin: 0 auto; }

/* Header */
.about-v2-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-v2-header .section-label { display: inline-block; }
.about-v2-header .section-title { margin-bottom: 18px; }
.about-langs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.lang-badge {
  background: var(--navy);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}

/* Photo + Bio side by side */
.about-v2-main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.about-v2-photo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.about-name-card {
  background: linear-gradient(135deg, var(--pink-lt), var(--purple-lt));
  border-radius: 16px;
  padding: 14px 24px;
  text-align: center;
  width: 100%;
}
.about-name {
  font-family: 'Pacifico', cursive;
  font-size: 1.6rem;
  color: var(--pink);
  line-height: 1.1;
}
.about-role {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

.about-v2-bio { display: flex; flex-direction: column; gap: 14px; }
.about-bio { font-size: 1.05rem; color: var(--text); margin: 0; }
.about-quote {
  background: linear-gradient(135deg, var(--pink-lt), var(--purple-lt));
  border-left: 4px solid var(--pink);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  margin-top: 4px;
}

/* Fun facts */
.about-v2-fun {
  background: linear-gradient(135deg, #FFF8F0, #F5F3FF);
  border-radius: 20px;
  padding: 36px 40px;
  border: 2px dashed rgba(255, 107, 157, .25);
}
.about-fun-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.6rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}
.about-fun-title span { color: var(--pink); }

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: .92rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s;
}
.fact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.fact-icon { font-size: 1.4rem; flex-shrink: 0; }

/* About photo (already exists but adjust size) */
.about-photo {
  width: 280px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  background: linear-gradient(160deg, #FFD6E8, #C4B5FD);
}
.about-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── SUBJECTS ── */
.subjects { background: transparent; } /* stars show through */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.subject-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  border-top: 4px solid transparent;
}
.subject-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.subject-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.subject-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.subject-card p  { font-size: .9rem; color: var(--text-lt); }

.subject-math    { border-top-color: var(--teal); }
.subject-reading { border-top-color: var(--pink); }
.subject-history { border-top-color: var(--yellow); }
.subject-esl     { border-top-color: var(--purple); }
.subject-spanish    { border-top-color: var(--pink); }
.subject-portuguese { border-top-color: var(--green); }
.subject-homework   { border-top-color: var(--navy); }
.subject-spanish .subject-icon,
.subject-portuguese .subject-icon { font-size: 2rem; }

/* ── SCHEDULE ── */
.schedule { background: white; }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.day-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.day-header {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.day-monday  .day-header { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.day-tuesday .day-header { background: linear-gradient(135deg, #F59E0B, #D97706); }
.day-thursday .day-header { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.day-name  { font-family: 'Pacifico', cursive; font-size: 1.3rem; color: white; }
.day-time  { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .05em; }
.day-note  { color: rgba(255,255,255,.7); }

.day-notice {
  background: #FEF3C7;
  color: #92400E;
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 16px;
  text-align: center;
}

.day-slots { background: white; }
.slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #F3F4F6;
  font-size: .82rem;
}
.slot:last-child { border-bottom: none; }
.slot-time  { color: var(--text-lt); font-weight: 600; }
.slot-label { font-weight: 800; }

.slot-session .slot-label { color: var(--navy); }
.slot-break   { background: #F9FAFB; }
.slot-break   .slot-label { color: var(--text-lt); }
.slot-lunch   { background: var(--yellow-lt); }
.slot-lunch   .slot-label { color: var(--yellow); font-weight: 800; }

.schedule-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sched-hi {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border-radius: 12px;
  padding: 16px;
}
.sched-hi-icon { font-size: 1.8rem; }
.sched-hi strong { display: block; font-size: .9rem; color: var(--navy); }
.sched-hi p { font-size: .8rem; color: var(--text-lt); margin: 0; }

/* ── PLANS ── */
.plans { background: transparent; } /* stars show through */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 64px;
}
.plan-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
  transition: transform .2s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-featured {
  box-shadow: 0 8px 40px rgba(245,158,11,.25);
  border: 2px solid var(--yellow);
  transform: scale(1.04);
}
.plan-featured:hover { transform: scale(1.04) translateY(-4px); }

.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-badge-green  { background: var(--green-lt);  color: var(--green); }
.plan-badge-orange { background: var(--yellow-lt); color: var(--yellow); }
.plan-badge-purple { background: var(--purple-lt); color: var(--purple); }

.plan-icon { font-size: 3rem; margin: 12px 0 8px; display: block; }
.plan-name { font-family: 'Pacifico', cursive; color: var(--navy); margin-bottom: 6px; font-size: 1.3rem; }
.plan-freq { font-size: .85rem; color: var(--text-lt); font-weight: 700; margin-bottom: 16px; }
.plan-price { margin-bottom: 4px; }
.price-main { font-family: 'Pacifico', cursive; font-size: 3.5rem; color: var(--pink); line-height: 1; }
.plan-starter  .price-main { color: var(--green); }
.plan-intensive .price-main { color: var(--purple); }
.price-unit { font-size: .9rem; color: var(--text-lt); font-weight: 700; }
.plan-month { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }

.plan-perks { list-style: none; text-align: left; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.plan-perks li { font-size: .9rem; font-weight: 600; color: var(--text); }

.plan-sweet {
  background: linear-gradient(135deg, var(--yellow), #FCA5A5);
  color: white;
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .08em;
  padding: 6px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.why-parents { background: white; border-radius: 20px; padding: 48px 40px; box-shadow: var(--shadow); }
.why-parents-title { font-family: 'Pacifico', cursive; color: var(--navy); text-align: center; margin-bottom: 32px; font-size: 1.5rem; }
.why-parents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wp-item { text-align: center; }
.wp-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.wp-item p { font-size: .9rem; font-weight: 600; color: var(--text); }

/* ── ENROLL ── */
.enroll { background: linear-gradient(135deg, #FFF0F7, #F0EEFF); }
.enroll-card {
  background: white;
  border-radius: 24px;
  padding: 64px 56px;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
}
.enroll-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}
.enroll-sub {
  text-align: center;
  color: var(--text-lt);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Enroll contact links */
.enroll-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}
.enroll-link {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 480px;
  padding: 18px 24px;
  border-radius: 18px;
  text-decoration: none;
  background: white;
  border: 2px solid #E5E7EB;
  transition: transform .15s, box-shadow .15s, border-color .15s, background .15s;
}
.enroll-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.10);
}
.enroll-link-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.enroll-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  flex: 1;
}
.enroll-link-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.enroll-link-handle {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  word-break: break-all;
}

.enroll-link-ig:hover {
  border-color: #E94B85;
  background: linear-gradient(135deg, #FFF0F7, #FFF8FB);
}
.enroll-link-ig .enroll-link-icon {
  background: linear-gradient(135deg, #FFD6E8, #F5C2E0);
}

.enroll-link-mail:hover {
  border-color: var(--purple);
  background: linear-gradient(135deg, #F5F0FF, #F8F5FF);
}
.enroll-link-mail .enroll-link-icon {
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
}

.enroll-or {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  color: var(--text-lt);
  font-weight: 700;
  font-size: .85rem;
}
.enroll-or::before,
.enroll-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}
.enroll-or span { padding: 0 4px; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 48px 24px;
  text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 8px;
}
.footer-tagline { font-size: .9rem; margin-bottom: 20px; letter-spacing: .03em; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.footer-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
  padding: 4px 12px;
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.footer-links a:hover { background: rgba(255,255,255,.1); color: white; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { padding-top: 100px; }
  .deco { display: none; }
  .hero { padding-top: 100px; }
  .badge-burst-pink   { top: 200px; left: 16px; }
  .badge-burst-yellow { top: 200px; right: 16px; }
  .badge-burst { width: 100px; height: 100px; font-size: .62rem; padding: 14px; }
  .subjects-bar-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-v2-main { grid-template-columns: 1fr; gap: 32px; }
  .about-v2-photo-card { max-width: 320px; margin: 0 auto; }
  .about-facts { grid-template-columns: repeat(2, 1fr); }
  .subjects-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-highlights { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-featured { transform: scale(1); }
  .why-parents-grid { grid-template-columns: repeat(2, 1fr); }
  .enroll-card { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 16px; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .subjects-grid { grid-template-columns: 1fr; }
  .subjects-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .about-facts { grid-template-columns: 1fr; }
  .badge-burst-pink   { top: 180px; left: 6px; }
  .badge-burst-yellow { top: 180px; right: 6px; }
  .badge-burst { width: 80px; height: 80px; font-size: .52rem; padding: 9px; border-width: 2px; }
  .why-parents-grid { grid-template-columns: 1fr 1fr; }
  .schedule-highlights { grid-template-columns: 1fr 1fr; }
  .why-inner { gap: 16px; }
}
