/* ===================================================
   SPROUTS PRESCHOOL & KINDERGARTEN - Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

/* ---- Tokens ---- */
:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --yellow-100: #fef9c3;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --peach-100: #ffe4e6;
  --blue-50:   #eff6ff;
  --blue-400:  #60a5fa;

  --text-dark:   #1a1a2e;
  --text-mid:    #374151;
  --text-light:  #6b7280;
  --white:       #ffffff;
  --bg-light:    #f8fdf9;
  --bg-soft:     #f0fdf4;
  --border:      #e5e7eb;

  --gradient-primary: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  --gradient-warm:    linear-gradient(135deg, #f97316 0%, #facc15 100%);
  --gradient-hero:    linear-gradient(160deg, rgba(21, 128, 61, 0.9) 0%, rgba(234, 179, 8, 0.7) 100%);

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 999px;

  --font-main:    'Nunito', sans-serif;
  --font-heading: 'Quicksand', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, button { font-family: inherit; font-size: inherit; }

/* ---- Utilities ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  border: 2px solid var(--green-400);
  color: var(--green-600);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-body { color: var(--text-mid); margin-bottom: 16px; font-size: 1.05rem; }
.highlight { color: var(--green-600); position: relative; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(34, 197, 94, 0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-nav {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 22px;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}
.btn-nav:hover { transform: translateY(-1px); }
.btn-card {
  background: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-400);
  padding: 10px 22px;
}
.btn-card:hover { background: var(--green-50); }
.btn-white {
  background: var(--white);
  color: var(--green-700);
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  width: 100%;
  justify-content: center;
  padding: 16px;
  margin-top: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ---- Reveal Animation ---- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { width: 44px; height: 44px; object-fit: contain; border-radius: 12px; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-700);
}
.navbar:not(.scrolled) .logo-text { color: white; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text-mid); }
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.15); color: white; }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { background: var(--green-50); color: var(--green-700); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: white;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-title .highlight { color: var(--yellow-400); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.92;
  max-width: 580px;
  margin: 0 auto 36px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-xl);
  padding: 20px 40px;
  flex-wrap: wrap;
  gap: 0;
  animation: fadeUp 0.9s 0.4s ease both;
}
.stat { text-align: center; padding: 8px 32px; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 900; font-family: var(--font-heading); }
.stat-label { font-size: 0.8rem; opacity: 0.85; font-weight: 600; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 28px; height: 48px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  animation: scrollDown 1.8s infinite;
}

/* ============================
   MARQUEE
   ============================ */
.marquee-strip {
  background: var(--gradient-primary);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ============================
   ABOUT
   ============================ */
.about { background: var(--bg-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-features { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.feature-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.feature-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.about-visual { position: relative; }
.about-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img { width: 100%; height: 320px; object-fit: cover; object-position: center top; }
.secondary-card { margin-top: 16px; }
.about-img-sm { width: 100%; height: 160px; object-fit: cover; object-position: center 40%; }
.floating-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  line-height: 1.4;
  animation: float 3s ease-in-out infinite;
}
.badge-1 { top: -20px; left: -24px; animation-delay: 0s; }
.badge-2 { bottom: -20px; right: -24px; animation-delay: 1s; }

/* ============================
   PROGRAMS
   ============================ */
.programs { background: white; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--bg-soft);
  border: 2px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-400); }
.featured-program {
  background: var(--text-dark);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  color: white;
}
.featured-program p, .featured-program li { color: rgba(255,255,255,0.8); }
.program-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-warm);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.program-icon { font-size: 2.5rem; margin-bottom: 12px; }
.program-age {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-600);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.featured-program .program-age { color: var(--yellow-400); }
.program-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.program-desc { font-size: 0.93rem; color: var(--text-mid); margin-bottom: 20px; }
.featured-program .program-desc { color: rgba(255,255,255,0.75); }
.program-highlights { margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.program-highlights li { font-size: 0.88rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.program-highlights li::before { content: '✓'; color: var(--green-500); font-weight: 800; }
.featured-program .program-highlights li { color: rgba(255,255,255,0.8); }
.featured-program .program-highlights li::before { color: var(--yellow-400); }

/* ============================
   WHY US
   ============================ */
.whyus { background: var(--bg-soft); }
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--green-400); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* ============================
   GALLERY
   ============================ */
.gallery { background: white; }
.gallery-grid {
  column-count: 4;
  column-gap: 16px;
  width: 100%;
}
@media (max-width: 1024px) { .gallery-grid { column-count: 3; } }
@media (max-width: 768px)  { .gallery-grid { column-count: 2; } }
@media (max-width: 480px)  { .gallery-grid { column-count: 1; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  break-inside: avoid;
  margin-bottom: 16px;
  display: inline-block;
  width: 100%;
  background: transparent;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-img, .gallery-video-sound {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.25); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.gallery-label {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials { background: var(--bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ============================
   ENROLL
   ============================ */
.enroll-section { background: white; }
.enroll-card {
  background: linear-gradient(135deg, #15803d 0%, #166534 50%, #1a3a0a 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.enroll-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.enroll-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: white;
  margin: 12px 0 12px;
  line-height: 1.2;
}
.enroll-title span { color: var(--yellow-400); }
.enroll-subtitle { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }
.enroll-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 700; }
.form-group input,
.form-group select {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: white;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.form-group input::placeholder { color: rgba(255,255,255,0.5); }
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--yellow-400); background: rgba(255,255,255,0.18); }
.form-group select option { background: #166534; }
.form-success { display: none; text-align: center; color: white; padding: 32px 0; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { opacity: 0.85; }

/* ============================
   CONTACT
   ============================ */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.9rem; color: var(--text-light); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--text-dark); font-size: 0.98rem; }
.contact-item a:hover { color: var(--green-600); }
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-50);
  border: 1.5px solid var(--green-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  transition: var(--transition);
}
.social-btn:hover { background: var(--green-500); color: white; border-color: var(--green-500); transform: translateY(-2px); }
.map-placeholder {
  background: var(--green-100);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--green-300);
}
.map-inner { text-align: center; padding: 40px; }
.map-pin { font-size: 3rem; display: block; margin-bottom: 12px; }
.map-inner p { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.map-inner small { color: var(--text-light); display: block; margin-bottom: 20px; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-copy { font-size: 0.82rem; opacity: 0.55; margin-top: 16px !important; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 12px; }
.footer-links-group h4 { color: white; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a, .footer-links-group li { font-size: 0.88rem; transition: color 0.2s; }
.footer-links-group a:hover { color: var(--green-400); }

/* ============================
   KEYFRAMES
   ============================ */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes float    { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes scrollDown { 0% { top: 6px; opacity: 1; } 100% { top: 28px; opacity: 0; } }
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--text-dark);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open .nav-link { color: white; font-size: 1.3rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-1, .gi-4 { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .enroll-card { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { padding: 16px 20px; }
  .stat { padding: 8px 16px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
