/* ==========================================================================
   STARK EDUCATION FUTURE SKILLS ACADEMY — Stylesheet
   Bright • Colorful • Kid-Friendly Theme
   ========================================================================== */

:root {
  /* Light, colorful palette */
  --bg: #ffffff;
  --bg-soft: #f6f8ff;
  --bg-soft-2: #fff9f0;
  --bg-soft-3: #f2fbf9;
  --ink: #1c2142;
  --ink-soft: #565f85;
  --ink-faint: #8891b3;

  --orange: #ff6a3d;
  --orange-2: #ffb703;
  --teal: #00c2a8;
  --teal-2: #12d6c4;
  --purple: #8b5cf6;
  --purple-2: #6d3ff2;
  --pink: #ff4d94;
  --yellow: #ffd23f;
  --blue: #3d8bff;

  --grad-primary: linear-gradient(90deg, var(--orange), var(--pink));
  --grad-secondary: linear-gradient(90deg, var(--teal), var(--blue));
  --grad-hero-bg: radial-gradient(circle at 15% 20%, rgba(255,178,56,0.18), transparent 42%),
                  radial-gradient(circle at 85% 15%, rgba(139,92,246,0.16), transparent 45%),
                  radial-gradient(circle at 75% 85%, rgba(0,194,168,0.16), transparent 45%),
                  radial-gradient(circle at 10% 85%, rgba(255,77,148,0.14), transparent 45%);

  --font-display: 'Baloo 2', 'Space Grotesk', 'Sora', sans-serif;
  --font-body: 'Sora', sans-serif;
  --radius: 20px;
  --max-width: 1240px;
  --shadow-card: 0 10px 30px rgba(28,33,66,0.08);
  --shadow-card-hover: 0 18px 40px rgba(28,33,66,0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: 100px 0; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--purple-2);
  margin-bottom: 18px;
  text-transform: uppercase;
  background: rgba(139,92,246,0.1);
  padding: 6px 16px;
  border-radius: 999px;
}
.glow-text { text-shadow: none; }
.section-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--ink); }
.section-title.center, h2.center { text-align: center; }
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-cyan { color: var(--teal); }
.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 18px;
}
.lead.light { color: var(--ink-soft); }
.lead.center { margin-left: auto; margin-right: auto; text-align: center; }
.emphasis { font-size: 1.5rem; font-weight: 800; font-family: var(--font-display); color: var(--ink); }
.emphasis.light { color: var(--ink); }
.emphasis.center { text-align: center; }
.quote-mark { font-style: italic; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255,106,61,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,106,61,0.5); }
.btn-outline {
  border: 2px solid var(--purple);
  color: var(--purple-2);
  background: #fff;
}
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-ghost { color: var(--ink-soft); padding: 10px 18px; }
.btn-ghost:hover { color: var(--purple-2); }
.btn-text { color: var(--pink); padding: 0; font-size: 0.9rem; font-weight: 700; }
.btn-text:hover { text-decoration: underline; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-xl { padding: 22px 52px; font-size: 1.3rem; margin-right: 16px; }
.btn-block { width: 100%; justify-content: center; }
.pulse-btn { animation: pulseGlow 2.4s infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 26px rgba(255,106,61,0.35); }
  50% { box-shadow: 0 14px 40px rgba(255,106,61,0.6); }
}
.center-cta { text-align: center; margin-top: 46px; }

/* ===================== Circuit background canvas ===================== */
#circuit-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ===================== Header ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28,33,66,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { background: rgba(255,255,255,0.96); box-shadow: 0 4px 20px rgba(28,33,66,0.06); }
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
}
.logo-full { font-size: 0.72rem; color: var(--ink-soft); line-height: 1.2; display: none; white-space: nowrap; }
.logo-full em { display: block; font-style: normal; color: var(--ink); font-weight: 700; }
@media (min-width: 1240px) { .logo-full { display: block; } }
.main-nav { display: flex; gap: 22px; flex-wrap: nowrap; }
.main-nav a { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); transition: color 0.2s; white-space: nowrap; }
.main-nav a:hover { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle { display: none; font-size: 1.4rem; color: var(--ink); }

@media (max-width: 1140px) {
  .main-nav { position: fixed; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 24px; gap: 16px; display: none; border-bottom: 1px solid rgba(28,33,66,0.08); box-shadow: 0 10px 20px rgba(28,33,66,0.06); white-space: normal; }
  .main-nav.open { display: flex; }
  .main-nav a { white-space: normal; }
  .nav-secondary { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 640px) {
  .nav-primary { padding: 10px 16px; font-size: 0.85rem; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  overflow: hidden;
  background: var(--bg-soft);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--grad-hero-bg); }
.hero-bg img { display: none; }
.hero-overlay { display: none; }
.scanlines { display: none; }
.floating-tags { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: visible; }
.ftag {
  position: absolute;
  left: var(--x); top: var(--y);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple-2);
  padding: 6px 14px;
  border: none;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(28,33,66,0.12);
  animation: floatTag 6s ease-in-out infinite;
  animation-delay: var(--delay);
  display: none;
  white-space: nowrap;
}
@media (min-width: 980px) { .ftag { display: inline-block; } }
@keyframes floatTag {
  0%, 100% { transform: translateY(0px); opacity: 0.9; }
  50% { transform: translateY(-14px); opacity: 1; }
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero-title { font-size: clamp(2.1rem, 5vw, 3.7rem); font-weight: 800; margin-bottom: 22px; }
.hero-title .line-1 { display: block; color: var(--ink-soft); font-size: 0.5em; font-weight: 600; margin-bottom: 10px; }
.hero-title .line-2 { display: block; color: var(--ink); }
.hero-title .highlight {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.14rem; color: var(--ink-soft); margin-bottom: 30px; max-width: 600px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-reassure { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.86rem; color: var(--ink-soft); font-weight: 600; }
.hero-reassure i { color: var(--teal); margin-right: 6px; }
.hero-visual { position: relative; z-index: 2; margin: 0 20px; }
.hero-visual img { border-radius: 28px; position: relative; z-index: 2; width: 100%; }
.scroll-cue {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.75rem; letter-spacing: 0.1em; color: var(--ink-faint); z-index: 2;
  font-weight: 600;
}
.scroll-cue span { width: 1px; height: 30px; background: linear-gradient(180deg, var(--orange), transparent); animation: scrollLine 1.8s infinite; }
@keyframes scrollLine { 0% { opacity: 0.2; } 50% { opacity: 1; } 100% { opacity: 0.2; } }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto 10px; }
}

/* ===================== BIG IDEA ===================== */
.big-idea { background: var(--bg); }
.evolution-chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 60px 0;
}
.evo-node {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-soft);
  border: 2px solid rgba(139,92,246,0.15);
  padding: 14px 34px;
  border-radius: 999px;
  min-width: 220px;
  justify-content: center;
  transition: all 0.3s ease;
}
.evo-node.evo-final { border-color: var(--orange); background: #fff7ee; box-shadow: 0 10px 26px rgba(255,106,61,0.18); }
.evo-num { font-family: var(--font-display); color: var(--purple-2); font-weight: 800; font-size: 0.85rem; }
.evo-final .evo-num { color: var(--orange); }
.evo-label { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.04em; color: var(--ink); }
.evo-arrow { color: var(--ink-faint); font-size: 0.85rem; }
.closing-statement { text-align: center; margin-top: 50px; }
.closing-statement p { font-size: 1.3rem; color: var(--ink-soft); margin-bottom: 6px; }
.closing-statement .emphasis { font-size: 1.8rem; color: var(--ink); }

/* ===================== PARENT PROBLEM ===================== */
.parent-problem { background: var(--bg-soft-3); }
.compare-wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; margin: 50px 0; }
.compare-col {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(28,33,66,0.06);
  box-shadow: var(--shadow-card);
}
.compare-today { opacity: 0.85; }
.compare-sfsa { border-color: rgba(0,194,168,0.35); box-shadow: 0 14px 34px rgba(0,194,168,0.15); }
.compare-col h3 { font-size: 1.1rem; letter-spacing: 0.05em; margin-bottom: 20px; }
.compare-today h3 { color: var(--ink-faint); }
.compare-sfsa h3 { color: var(--teal); }
.compare-col li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(28,33,66,0.06); font-size: 1rem; color: var(--ink); }
.compare-col li i { width: 22px; color: var(--teal); }
.compare-today li i { color: var(--ink-faint); }
.compare-vs {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff;
  background: var(--grad-primary); width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.big-line { text-align: center; margin: 60px 0 20px; }
.big-line h3 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }

.mascot-strip { display: flex; justify-content: center; align-items: flex-end; gap: 30px; margin-top: 44px; }
.mascot-strip img { width: 150px; height: 150px; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(28,33,66,0.12)); }
.mascot-strip img:nth-child(2) { width: 170px; height: 170px; }

@media (max-width: 800px) {
  .compare-wrap { grid-template-columns: 1fr; }
  .compare-vs { margin: 0 auto; }
}
@media (max-width: 600px) {
  .mascot-strip img { width: 90px; height: 90px; }
  .mascot-strip img:nth-child(2) { width: 100px; height: 100px; }
}

/* ===================== SKILLS UNIVERSE ===================== */
.skills-universe { background: var(--bg); }
.skill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; }
.skill-card {
  background: #fff;
  border: 1px solid rgba(28,33,66,0.07);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.skill-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.skill-card:nth-child(2n)::before { background: var(--grad-secondary); }
.skill-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.skill-card:hover::before { opacity: 1; }
.skill-icon { font-size: 2rem; color: var(--orange); margin-bottom: 18px; }
.skill-card:nth-child(2n) .skill-icon { color: var(--teal); }
.skill-card:nth-child(3n) .skill-icon { color: var(--purple); }
.skill-card h3 { font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 0.01em; color: var(--ink); }
.skill-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 16px; }
.skill-flow { font-size: 0.78rem; color: var(--pink); font-weight: 700; letter-spacing: 0.01em; }

@media (max-width: 1000px) { .skill-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .skill-grid { grid-template-columns: 1fr; } }

/* ===================== HOW IT WORKS CYCLE ===================== */
.how-it-works { background: var(--bg-soft); }
.cycle-wrap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin: 60px 0 30px; }
.cycle-step {
  text-align: center;
  padding: 30px 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(28,33,66,0.06);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.cycle-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.cycle-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: #fff; margin: 0 auto 14px;
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--grad-primary);
}
.cycle-step:nth-child(2n) .cycle-num { background: var(--grad-secondary); }
.cycle-step h3 { font-size: 1rem; margin-bottom: 10px; letter-spacing: 0.04em; color: var(--ink); }
.cycle-step p { font-size: 0.85rem; color: var(--ink-soft); }
.cycle-flow-text { text-align: center; font-family: var(--font-display); font-weight: 700; color: var(--purple-2); letter-spacing: 0.04em; margin-bottom: 20px; }

@media (max-width: 900px) { .cycle-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cycle-wrap { grid-template-columns: 1fr; } }

/* ===================== PROJECTS ===================== */
.projects { background: var(--bg); }
.project-filter { display: flex; gap: 10px; flex-wrap: wrap; margin: 30px 0 10px; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 2px solid rgba(28,33,66,0.12);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
.filter-btn:hover { color: var(--ink); border-color: var(--purple); }
.filter-btn.active { background: var(--grad-primary); color: #fff; border-color: transparent; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.project-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(28,33,66,0.07);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.project-card.hide { display: none; }
.project-media {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff0e8, #eafaf7);
}
.project-glyph { font-size: 2.6rem; color: var(--orange); opacity: 0.9; }
.project-card:nth-child(2n) .project-glyph { color: var(--teal); }
.project-card:nth-child(3n) .project-glyph { color: var(--purple); }
.project-level {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.7rem; font-weight: 800;
  background: #fff; color: var(--pink);
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-card);
}
.project-body { padding: 22px; }
.project-body h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--ink); }
.project-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 10px; }
.project-learn { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; }

@media (max-width: 1000px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .project-grid { grid-template-columns: 1fr; } }

/* ===================== LEARNING PATH ===================== */
.learning-path { background: var(--bg-soft-2); }
.path-wrap { position: relative; max-width: 780px; margin: 60px auto 20px; padding-left: 40px; border-left: 3px dashed rgba(139,92,246,0.35); }
.path-level { position: relative; margin-bottom: 46px; }
.path-marker {
  position: absolute; left: -60px; top: 0;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--grad-secondary);
  border: none;
  color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  box-shadow: 0 8px 18px rgba(0,194,168,0.3);
}
.path-card { background: #fff; border-radius: var(--radius); padding: 26px 28px; border: 1px solid rgba(28,33,66,0.06); box-shadow: var(--shadow-card); }
.path-card h3 { font-size: 1.3rem; margin-bottom: 8px; letter-spacing: 0.02em; color: var(--ink); }
.path-quote { font-style: italic; color: var(--pink); margin-bottom: 10px; font-size: 1rem; font-weight: 600; }
.path-card p:not(.path-quote) { color: var(--ink-soft); }
.path-level[data-level="5"] .path-marker { background: var(--grad-primary); box-shadow: 0 8px 18px rgba(255,106,61,0.35); }
.path-level[data-level="5"] .path-card { border-color: rgba(255,106,61,0.3); box-shadow: 0 14px 34px rgba(255,106,61,0.15); }

@media (max-width: 640px) {
  .path-wrap { padding-left: 30px; }
  .path-marker { left: -46px; width: 34px; height: 34px; font-size: 0.7rem; }
}

/* ===================== BUILD SPACE ===================== */
.build-space {
  padding: 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.build-space-media { position: absolute; inset: 0; z-index: 0; }
.build-space-media img { width: 100%; height: 100%; object-fit: cover; }
.build-space-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.97) 8%, rgba(255,255,255,0.75) 45%, rgba(255,255,255,0.25) 100%);
}
.build-space-overlay-content { position: relative; z-index: 1; padding: 90px 24px; max-width: 640px; }

/* ===================== EXPERIENCE / BENEFITS ===================== */
.experience { background: var(--bg); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid rgba(28,33,66,0.06);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.benefit-card i {
  font-size: 1.6rem; color: #fff; margin-bottom: 16px;
  width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--grad-primary);
}
.benefit-card:nth-child(2n) i { background: var(--grad-secondary); }
.benefit-card:nth-child(3n) i { background: linear-gradient(90deg, var(--purple), var(--pink)); }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 10px; letter-spacing: 0.01em; color: var(--ink); }
.benefit-card p { color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 900px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ===================== BEYOND SKILLS ===================== */
.beyond-skills { background: linear-gradient(160deg, #f4effe, #eafaf7); }
.skill-bars { max-width: 680px; margin: 50px auto; display: flex; flex-direction: column; gap: 20px; }
.skill-bar-row { display: grid; grid-template-columns: 160px 1fr; align-items: center; gap: 16px; }
.skill-name { font-size: 0.92rem; color: var(--ink); font-weight: 700; }
.skill-bar { height: 12px; background: rgba(28,33,66,0.08); border-radius: 999px; overflow: hidden; }
.skill-fill {
  height: 100%; width: 0%;
  background: var(--grad-primary);
  border-radius: 999px;
  transition: width 1.4s ease;
}
.skill-bar-row:nth-child(2n) .skill-fill { background: var(--grad-secondary); }
@media (max-width: 560px) { .skill-bar-row { grid-template-columns: 110px 1fr; } .skill-name { font-size: 0.8rem; } }

/* ===================== FOR PARENTS ===================== */
.for-parents { background: var(--bg); }
.for-parents-wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.for-parents-media img { border-radius: var(--radius); }
.parent-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.parent-item { background: var(--bg-soft); border-radius: var(--radius); padding: 28px 24px; border: 1px solid rgba(28,33,66,0.06); }
.parent-item i { font-size: 1.6rem; color: var(--purple); margin-bottom: 14px; }
.parent-item h3 { font-size: 1.02rem; margin-bottom: 8px; color: var(--ink); }
.parent-item p { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 900px) { .parent-grid { grid-template-columns: repeat(2, 1fr); } .for-parents-wrap { grid-template-columns: 1fr; } .for-parents-media { max-width: 320px; margin: 0 auto; } }
@media (max-width: 560px) { .parent-grid { grid-template-columns: 1fr; } }

/* ===================== DASHBOARD ===================== */
.dashboard { background: var(--bg-soft-3); }
.dashboard-card {
  max-width: 640px;
  margin: 50px auto 30px;
  background: #fff;
  border-radius: 26px;
  padding: 34px;
  border: 1px solid rgba(28,33,66,0.06);
  box-shadow: 0 24px 60px rgba(28,33,66,0.1);
}
.dash-header { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.dash-avatar {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  color: #fff; flex-shrink: 0;
}
.dash-header h3 { font-size: 1.1rem; letter-spacing: 0.02em; margin-bottom: 4px; color: var(--ink); }
.dash-level { color: var(--ink-soft); font-size: 0.9rem; }
.dash-level strong { color: var(--orange); }
.dash-stats { display: flex; gap: 30px; margin-bottom: 24px; }
.dash-stat { text-align: center; flex: 1; background: var(--bg-soft); border-radius: 14px; padding: 18px 10px; }
.dash-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--teal); }
.dash-label { font-size: 0.78rem; color: var(--ink-soft); }
.dash-skills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.dash-tag { font-size: 0.8rem; padding: 6px 14px; border-radius: 999px; background: rgba(0,194,168,0.1); color: var(--teal); border: 1px solid rgba(0,194,168,0.3); font-weight: 600; }
.dash-current { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.dash-mini-label { display: block; font-size: 0.72rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.dash-current strong { color: var(--ink); font-size: 1rem; }

/* ===================== FORMATS ===================== */
.formats { background: var(--bg); }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.format-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(28,33,66,0.06);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.format-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.format-card i {
  font-size: 1.8rem; color: #fff; margin-bottom: 18px;
  width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-left: auto; margin-right: auto;
  background: var(--grad-primary);
}
.format-card:nth-child(2) i { background: var(--grad-secondary); }
.format-card:nth-child(3) i { background: linear-gradient(90deg, var(--purple), var(--pink)); }
.format-card h3 { font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 0.02em; color: var(--ink); }
.format-card p { color: var(--ink-soft); margin-bottom: 22px; font-size: 0.92rem; }

@media (max-width: 800px) { .format-grid { grid-template-columns: 1fr; } }

/* ===================== TRIAL SECTION ===================== */
.trial-section {
  background: linear-gradient(160deg, #fff3e8, #fdeaf3 55%, #eef3ff);
  position: relative;
}
.trial-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.trial-big-cta {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 24px 0 10px;
}
.microcopy { color: var(--ink-faint); font-size: 0.88rem; font-weight: 600; }
.trial-form {
  background: #fff;
  border: 1px solid rgba(28,33,66,0.08);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(28,33,66,0.1);
}
.trial-form h3 { font-size: 1.2rem; margin-bottom: 20px; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trial-form label { display: block; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 14px; font-weight: 700; }
.trial-form input, .trial-form select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(28,33,66,0.12);
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 0.95rem;
  font-family: inherit;
}
.trial-form input:focus, .trial-form select:focus { outline: none; border-color: var(--orange); }
.form-status { margin-top: 14px; font-size: 0.9rem; text-align: center; min-height: 20px; font-weight: 600; }
.form-status.success { color: var(--teal); }
.form-status.error { color: var(--pink); }

@media (max-width: 900px) {
  .trial-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.testimonial-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  border-left: 4px solid var(--orange);
  margin: 0;
}
.testimonial-grid .testimonial-card:nth-child(2n) { border-left-color: var(--teal); }
.testimonial-card p { font-size: 1.1rem; margin-bottom: 14px; font-style: italic; color: var(--ink); }
.testimonial-card cite { color: var(--ink-faint); font-size: 0.85rem; }

@media (max-width: 700px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ===================== STUDENT VOICES ===================== */
.student-voices { background: linear-gradient(135deg, #fff3e8, #f4effe); }
.voice-media { display: flex; justify-content: center; margin-top: 30px; }
.voice-media img { max-width: 480px; width: 100%; filter: drop-shadow(0 16px 30px rgba(28,33,66,0.12)); }
.voice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.voice-bubble {
  background: #fff;
  border: 2px solid rgba(139,92,246,0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--purple-2);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-card);
}
.voice-bubble:nth-child(2n) { color: var(--orange); border-color: rgba(255,106,61,0.25); }
.voice-bubble:nth-child(3n) { color: var(--pink); border-color: rgba(255,77,148,0.25); }
.voice-bubble:hover { transform: scale(1.05) rotate(-1deg); }

@media (max-width: 900px) { .voice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .voice-grid { grid-template-columns: 1fr; } }

/* ===================== ABOUT ===================== */
.about { background: var(--bg-soft); }
.about-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.about-media img { border-radius: var(--radius); border: 1px solid rgba(28,33,66,0.08); box-shadow: var(--shadow-card); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; border-top: 1px solid rgba(28,33,66,0.08); padding-top: 40px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 0.85rem; color: var(--ink-soft); }
.stats-note { text-align: center; font-size: 0.78rem; color: var(--ink-faint); margin-top: 18px; }

@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* ===================== FAQ ===================== */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid rgba(28,33,66,0.08); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}
.faq-q i { color: var(--orange); transition: transform 0.3s ease; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 4px 22px; color: var(--ink-soft); font-size: 0.95rem; }

/* ===================== FINAL CTA ===================== */
.final-cta { padding: 0; min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(160deg, #ff6a3d, #ff4d94 45%, #8b5cf6); }
.final-cta-bg { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; opacity: 0.9; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255,106,61,0.55), rgba(255,77,148,0.5) 45%, rgba(139,92,246,0.6)); }
.final-cta-content { position: relative; z-index: 1; text-align: center; padding: 100px 24px; }
.final-headline {
  font-size: clamp(2.4rem, 7.5vw, 5.6rem);
  font-weight: 800;
  color: #fff;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.final-cta-content .lead { margin: 0 auto 40px; text-align: center; color: rgba(255,255,255,0.95); }
.final-cta-content .eyebrow { background: rgba(255,255,255,0.2); color: #fff; }
.final-cta .btn-primary { background: #fff; color: var(--orange); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.final-cta .btn-outline { border-color: #fff; color: #fff; background: transparent; }
.final-cta .btn-outline:hover { background: #fff; color: var(--purple); }

/* ===================== FOOTER ===================== */
.site-footer { background: #1c2142; padding: 70px 0 30px; color: #cdd3f0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; letter-spacing: 0.03em; margin: 0; }
.footer-tagline { color: var(--orange-2); font-size: 0.9rem; margin: 4px 0 14px; font-weight: 700; }
.footer-motto { font-size: 0.78rem; color: #9aa2cc; letter-spacing: 0.06em; margin-bottom: 20px; }
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #cdd3f0; transition: all 0.2s ease;
}
.social-links a:hover { background: var(--grad-primary); border-color: transparent; color: #fff; }
.footer-nav h4 { font-size: 0.85rem; color: #9aa2cc; letter-spacing: 0.06em; margin-bottom: 16px; text-transform: uppercase; }
.footer-nav a { display: block; color: #cdd3f0; font-size: 0.92rem; margin-bottom: 12px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange-2); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 26px; color: #9aa2cc; font-size: 0.85rem; }
.footer-bottom p { margin-bottom: 6px; }
.footer-bottom strong { color: #fff; }
.copyright { margin-top: 12px; font-size: 0.78rem; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===================== STICKY CTA + WHATSAPP ===================== */
.sticky-cta {
  position: fixed;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  background: var(--grad-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 30px rgba(255,106,61,0.4);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sticky-cta.visible { opacity: 1; pointer-events: auto; }
@media (min-width: 900px) {
  .sticky-cta { left: auto; right: 30px; bottom: 30px; transform: none; }
}
.whatsapp-btn {
  position: fixed;
  bottom: 22px; right: 20px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 400;
}
@media (min-width: 900px) { .whatsapp-btn { bottom: 96px; } }

/* ===================== ANIMATIONS: reveal on scroll ===================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Responsive base tweaks */
@media (max-width: 700px) {
  .section { padding: 70px 0; }
  .final-headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .btn-xl { display: block; margin: 0 0 16px 0; text-align: center; justify-content: center; }
}
