/*
Theme Name: Kampi Veror 2026
Theme URI: https://probitacademy.com
Description: Landing page e konvertimit për Kampin Veror 2026 – Probit Academy Kids
Author: Probit Academy
Version: 2.4.2
Text Domain: kampi-veror-2026
*/

:root {
  /* Probit Academy Kids — ngjyra nga logoja zyrtare */
  --brand-navy: #1b2a5b;
  --brand-navy-dark: #121d42;
  --brand-navy-light: #eef1f8;
  --brand-green: #76c043;
  --brand-green-light: #eef8e6;
  --brand-cyan: #29abe2;
  --brand-cyan-light: #e6f6fc;
  --brand-pink: #e4007c;
  --brand-pink-light: #fde8f4;
  --brand-orange: #f05a28;
  --brand-orange-light: #fff0ea;

  --brand-primary: var(--brand-navy);
  --brand-primary-dark: var(--brand-navy-dark);
  --brand-primary-light: var(--brand-navy-light);
  --brand-accent: var(--brand-orange);
  --brand-accent-light: var(--brand-orange-light);
  --brand-accent-dark: #d94e1f;

  --navy: var(--brand-navy);
  --navy-soft: #243468;
  --blue: var(--brand-cyan);
  --blue-dark: #1e95c9;
  --cyan: var(--brand-cyan);
  --cyan-light: var(--brand-cyan-light);
  --teal: var(--brand-cyan);
  --purple-light: var(--brand-pink-light);
  --yellow: #ffb020;
  --yellow-bg: var(--brand-orange-light);
  --orange: var(--brand-orange);
  --red-soft: #7f1d1d;
  --red-bg: rgba(127, 29, 29, 0.35);
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;

  --bg-warm: #fffbf8;
  --bg-soft: #f4f9fd;
  --bg-muted: #f3f4f6;

  --shadow-sm: 0 1px 3px rgba(27, 42, 91, 0.05);
  --shadow: 0 4px 24px rgba(27, 42, 91, 0.07);
  --shadow-lg: 0 20px 50px rgba(27, 42, 91, 0.1);
  --shadow-brand: 0 4px 20px rgba(27, 42, 91, 0.22);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;

  --layout-max: 1280px;
  --layout-gutter: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 var(--layout-gutter);
}

/* ─── BADGES & TYPOGRAPHY ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-blue {
  background: var(--brand-cyan-light);
  color: var(--brand-navy);
}
.badge-accent {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
}
.badge-outline {
  border: 1px solid rgba(41, 171, 226, 0.45);
  color: var(--brand-cyan);
  background: transparent;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .badge { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-head h2 .accent { color: var(--brand-cyan); }
.section-head p { color: var(--gray-500); font-size: 1rem; line-height: 1.7; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-blue {
  background: var(--brand-navy);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-blue-state {
  background: #29abe2;
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-blue-state:hover {
  background: #31364a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.btn-blue:hover { background: var(--brand-navy-dark); transform: translateY(-1px); }
.btn-fun {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
}
.btn-fun:hover { transform: translateY(-3px) scale(1.03); }
.btn-fun:active { transform: translateY(0) scale(0.98); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); }
.btn-yellow {
  background: #fbbf24;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(251, 191, 36, 0.25);
}
.btn-yellow:hover { background: #f59e0b; transform: translateY(-1px); }
.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-navy);
  background: var(--brand-cyan-light);
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 0 rgba(15, 20, 25, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 16px var(--layout-gutter);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-wrap .logo-img {
  display: block;
  max-height: 68px;
  width: auto;
  max-width: min(280px, 55vw);
  object-fit: contain;
}
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-img {
  max-height: 58px;
  max-width: 260px;
  filter: brightness(1.05);
}
.logo-text strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.2;
}
.logo-text span {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-desktop {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: var(--transition);
}
.nav-desktop a:hover { color: var(--blue); }
.header-right {
  display: none;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 600; color: var(--navy);
}
.header-phone svg { color: var(--blue); }
.menu-toggle {
  background: none; border: none; padding: 8px; color: var(--navy);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}
.nav-mobile .btn { margin-top: 12px; }

@media (min-width: 992px) {
  .nav-desktop { display: flex; }
  .header-right { display: flex; }
  .menu-toggle { display: none; }
}

/* ─── HERO ─── */
.hero {
  padding: 48px 0 64px;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero-badge { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--brand-cyan); }
.hero-lead {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.hero-pill {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}
.hero-pill small {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.hero-pill strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.hero-urgency .dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
}
.hero-trust-item svg { color: var(--blue); flex-shrink: 0; }

/* Hero visual (photo layout) */
.hero-visual { position: relative; }
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.hero-slides {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--gray-100);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.hero-slide .hero-image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  pointer-events: none;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.hero-slideshow-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
}
.hero-slideshow-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-slideshow-dot:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: scale(1.15);
}
.hero-slideshow-dot.is-active {
  background: var(--white);
  transform: scale(1.2);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}
.hero-slideshow--instant .hero-slide {
  transition: none;
}
.hero-image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan), var(--brand-pink), var(--brand-orange));
  color: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: var(--shadow-brand);
}
.hero-image-badge strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}
.hero-image-badge span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}
.hero-float-card {
  position: absolute;
  left: -12px;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.hero-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cyan-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
}
.hero-float-card p {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0;
}
.hero-float-seats {
  margin-left: auto;
  background: var(--yellow-bg);
  color: #854d0e;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.hero-countdown-wrap { margin-bottom: 24px; }
.hero-countdown-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.countdown-compact {
  display: inline-flex;
  gap: 8px;
}
.countdown-compact .countdown-item {
  min-width: 56px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
}
.countdown-compact .countdown-item strong {
  font-size: 1.125rem;
}
.countdown-compact .countdown-item span {
  font-size: 0.5625rem;
}

/* Legacy hero card (unused) */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
}
.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}
.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-card-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--gray-50);
  border-radius: 999px;
  padding: 8px 14px;
}
.hero-card-icon {
  width: 56px; height: 56px;
  background: var(--cyan-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.hero-card > p { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.65; }
.hero-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-stat-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.hero-stat-box strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--navy);
}
.hero-stat-box span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.hero-friday {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.hero-friday-icon { flex-shrink: 0; margin-top: 2px; }
.hero-friday strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-friday p { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.55; }
.hero-friday-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--white);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
  vertical-align: middle;
}
.hero-alert {
  background: var(--yellow-bg);
  border: 1px solid #fde047;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #854d0e;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .hero-slides {
    aspect-ratio: 16 / 11;
    max-height: 400px;
  }
  .hero-main-img {
    aspect-ratio: unset;
    height: 100%;
    min-height: 0;
  }
}

@media (min-width: 992px) {
  .hero { padding: 64px 0 80px; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: stretch;
  }
  .hero-visual {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .hero-image-frame {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-slides {
    flex: 1;
    aspect-ratio: unset;
    max-height: none;
    height: 100%;
    min-height: 100%;
  }
  .hero-main-img {
    aspect-ratio: unset;
    height: 100%;
    min-height: 0;
  }
  .hero-float-card { left: -24px; }
  .hero-slideshow-dots { bottom: 96px; }
}

/* ─── TOP BAR ─── */
.top-bar {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-dark));
  color: rgba(255,255,255,0.95);
  font-size: 0.8125rem;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 24px;
  text-align: center;
}
.top-bar-inner p { margin: 0; }
.top-bar-inner strong { color: var(--brand-orange); }
.top-bar-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}
.top-bar-link {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}
.top-bar-link:hover { color: var(--yellow); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ─── WHY SECTION ─── */
.section-why { padding: 80px 0; background: var(--white); }
.why-split {
  display: grid;
  gap: 40px;
  align-items: center;
}
.why-visual { position: relative; }
.why-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.why-visual-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.why-visual-card svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.why-visual-card strong { display: block; font-size: 0.875rem; color: var(--navy); }
.why-visual-card p { font-size: 0.8125rem; color: var(--gray-500); margin: 0; }
.section-head-left { text-align: left; margin-left: 0; margin-right: 0; max-width: none; }
.why-grid-compact { margin-top: 24px; }
@media (min-width: 992px) {
  .why-split { grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
  .why-visual-card { left: auto; right: -20px; bottom: 32px; max-width: 280px; }
  .why-grid-compact { grid-template-columns: repeat(2, 1fr); }
}
.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px) rotate(-0.5deg); }
.why-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.why-icon.c1 { background: #dbeafe; }
.why-icon.c2 { background: #cffafe; }
.why-icon.c3 { background: #d1fae5; }
.why-icon.c4 { background: #fef3c7; }
.why-icon.c5 { background: #ede9fe; }
.why-icon.c6 { background: #fee2e2; }
.why-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
}
.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }

@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: min(var(--layout-max), calc(100% - 2 * var(--layout-gutter)));
  margin: 0 auto 80px;
}
.cta-banner-inner { flex: 1; }
.cta-banner p.cta-banner-text {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 640px;
}
.cta-banner p.cta-banner-text strong { color: var(--white); font-weight: 800; }

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px;
    min-height: 0;
  }
}
.cta-banner-visual {
  overflow: hidden;
  padding: 0;
  gap: 0;
  align-items: stretch;
}
.cta-banner-visual-img {
  flex: 0 0 180px;
  max-height: 150px;
  overflow: hidden;
}
.cta-banner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}
.cta-banner-visual .cta-banner-inner {
  padding: 20px 24px;
  flex: 1;
}
.cta-banner-visual .btn {
  margin: 0 20px 20px;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .cta-banner-visual .btn { margin: 0 24px 0 0; align-self: center; }
  .cta-banner-visual-img { flex: 0 0 220px; max-height: 160px; }
  .cta-banner-visual .cta-banner-inner { padding: 24px 28px; }
}

/* ─── PROGRAMS ─── */
.section-programs { padding: 80px 0; background: var(--bg-soft); }
.age-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}
.age-tab {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.age-tab:hover { transform: translateY(-2px) scale(1.02); }
.age-tab.active { animation: tabBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes tabBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.age-hint.hint-pop { animation: hintPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes hintPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); color: var(--blue); }
  100% { transform: scale(1); }
}
.age-tab.active, .age-tab:hover {
  background: var(--brand-navy);
  color: var(--white);
  border-color: var(--brand-navy);
}
/* ─── ICON BOXES ─── */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
}
.icon-box.ib-blue   { background: var(--brand-cyan-light); color: var(--brand-cyan); width: 44px; height: 44px; }
.icon-box.ib-teal   { background: var(--brand-cyan-light); color: var(--brand-cyan); width: 44px; height: 44px; }
.icon-box.ib-green  { background: var(--brand-green-light); color: var(--brand-green); width: 44px; height: 44px; }
.icon-box.ib-yellow { background: var(--brand-orange-light); color: var(--brand-orange); width: 44px; height: 44px; }
.icon-box.ib-purple { background: var(--brand-pink-light); color: var(--brand-pink); width: 44px; height: 44px; }
.icon-box.ib-red    { background: var(--brand-pink-light); color: var(--brand-pink); width: 44px; height: 44px; }
.icon-box.ib-pink   { background: var(--brand-pink-light); color: var(--brand-pink); width: 44px; height: 44px; }
.icon-box.ib-cyan   { background: var(--brand-cyan-light); color: var(--brand-cyan); width: 44px; height: 44px; }
.icon-box.lg { width: 56px; height: 56px; border-radius: 14px; }
.icon-box.sm { width: 36px; height: 36px; border-radius: 10px; }
.icon-box.circle { border-radius: 50%; }

.program-card-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cyan-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-icon { width: auto; height: auto; background: none !important; border-radius: 0; }

.age-hint {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.age-hint svg { color: var(--blue); flex-shrink: 0; }

.activity-icon { width: auto; height: auto; background: none !important; }
.ai-card-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,180,216,0.15);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.cta-banner-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.cta-banner h3 {
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  max-width: 640px;
}

.schedule-feat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,102,255,0.1);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.schedule-card.dark .schedule-feat-icon {
  background: rgba(0,180,216,0.15);
  color: var(--cyan);
}
.schedule-warning {
  background: var(--red-bg);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}
.schedule-warning svg { flex-shrink: 0; color: #f87171; margin-top: 1px; }

.activities-disclaimer svg { flex-shrink: 0; color: #d97706; margin-top: 2px; }
.faq-contact svg, .faq-contact .icon-box { flex-shrink: 0; }
.testimonial-cta-bar svg { color: var(--blue); }
.footer-badge-item { display: flex; align-items: center; gap: 8px; }
.programs-note svg { flex-shrink: 0; color: var(--blue); }

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--gray-700);
}
.check-list li .check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,102,255,0.1);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.section-why .section-head .badge { display: block; text-align: center; margin-bottom: 16px; }

.program-panel { display: none; opacity: 0; transform: translateY(16px) scale(0.98); }
.program-panel.active {
  display: block;
  animation: panelPopIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes panelPopIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.program-cards {
  display: grid;
  gap: 24px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.program-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.program-card-header .badge { font-size: 0.625rem; }
.program-card-icon {
  width: 48px; height: 48px;
  background: var(--cyan-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.program-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.program-card .subtitle {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.program-card .desc,
.program-card > p.desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.program-learn h4 {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.program-learn ul { list-style: none; margin-bottom: 20px; }
.program-learn li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.program-learn li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}
.program-learn li strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2px;
}
.program-box {
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.program-box.teal { background: #ecfeff; border: 1px solid #a5f3fc; }
.program-box.purple { background: var(--purple-light); border: 1px solid #ddd6fe; }
.program-box h5 {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.program-box.teal h5 { color: var(--teal); }
.program-box.purple h5 { color: #7c3aed; }
.program-box p { font-size: 0.8125rem; color: var(--gray-700); line-height: 1.6; }
.program-card .btn { margin-top: auto; }

.programs-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8125rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .program-cards { grid-template-columns: repeat(2, 1fr); }
  .program-cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) and (max-width: 991px) {
  #panel-7-10 .program-cards.cols-3 .program-card {
    grid-column: 1 / -1;
    max-width: calc((100% - 24px) / 2);
    justify-self: center;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .program-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
  #panel-7-10 .program-cards.cols-3 .program-card {
    grid-column: 2;
  }
  #panel-11-14 .program-cards.cols-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  #panel-11-14 .program-cards.cols-3 .program-card {
    flex: 0 1 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    min-width: 0;
  }
}

/* ─── SCHEDULE / CAMP OPTIONS ─── */
.section-schedule { padding: 80px 0; background: var(--bg-warm); }
.schedule-grid {
  display: grid;
  gap: 24px;
}
.schedule-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
}
.schedule-card.light { background: var(--white); }
.schedule-card.dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  position: relative;
}
.schedule-card-badges {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.schedule-card.dark .badge-blue {
  background: rgba(0,180,216,0.2);
  color: var(--cyan);
}
.schedule-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.schedule-card > p.intro,
.schedule-card .intro {
  font-size: 0.9375rem;
  margin-bottom: 24px;
  line-height: 1.65;
}
.schedule-card.light > p.intro,
.schedule-card.light .intro { color: var(--gray-500); }
.schedule-card.dark > p.intro,
.schedule-card.dark .intro { color: rgba(255,255,255,0.7); }
.schedule-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.schedule-feat {
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
}
.schedule-card.light .schedule-feat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--navy);
}
.schedule-card.dark .schedule-feat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.schedule-feat svg { color: var(--blue); flex-shrink: 0; }
.schedule-includes h4 {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.schedule-card.light .schedule-includes h4 { color: var(--gray-400); }
.schedule-card.dark .schedule-includes h4 { color: rgba(255,255,255,0.5); }
.schedule-includes ul { list-style: none; margin-bottom: 24px; }
.schedule-includes li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.875rem;
  align-items: flex-start;
}
.schedule-includes li .check-icon {
  width: 18px; height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.schedule-card.light .schedule-includes li { color: var(--gray-700); }
.schedule-card.dark .schedule-includes li { color: rgba(255,255,255,0.85); }
.schedule-warning {
  background: var(--red-bg);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.schedule-cta-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .schedule-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── ACTIVITIES ─── */
.section-activities { padding: 80px 0; background: var(--bg-soft); }
.activities-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.activity-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.activity-card:hover { box-shadow: var(--shadow); }
.activity-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.activity-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}
.activity-note svg { flex-shrink: 0; color: var(--gray-400); }

.section-ai .badge-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-contact .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a svg { flex-shrink: 0; opacity: 0.7; }

.activity-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.activity-icon.g { background: #d1fae5; }
.activity-icon.b { background: #dbeafe; }
.activity-icon.p { background: #ede9fe; }
.activity-icon.t { background: #cffafe; }
.activity-icon.r { background: #fee2e2; }
.activity-icon.h { background: #fce7f3; }
.activity-premium {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--cyan-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.activity-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.activity-tagline {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}
.activity-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }
.activities-disclaimer {
  margin-top: 32px;
  background: var(--yellow-bg);
  border: 1px solid #fde047;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.8125rem;
  color: #854d0e;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

@media (min-width: 640px) { .activities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .activities-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── AI SECTION ─── */
.section-ai {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}
.section-ai .section-head h2 { color: var(--white); }
.section-ai .section-head h2 .accent { color: #7ec8ff; }
.section-ai .section-head p { color: rgba(255,255,255,0.65); }
.ai-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}
.ai-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.ai-card-icon {
  width: 44px; height: 44px;
  background: rgba(0,180,216,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin-bottom: 14px;
  font-size: 1.125rem;
}
.ai-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ai-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
.ai-callout {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.ai-callout .badge { margin-bottom: 12px; }
.ai-callout p { font-size: 0.9375rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

@media (min-width: 768px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── TRUST ─── */
.section-trust { padding: 80px 0; background: var(--white); }
.trust-layout {
  display: grid;
  gap: 48px;
  align-items: start;
}
.trust-left .badge { margin-bottom: 16px; }
.trust-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.trust-left h2 .accent { color: var(--blue); }
.trust-left > p { color: var(--gray-500); margin-bottom: 20px; line-height: 1.7; }
.trust-list { list-style: none; margin-bottom: 28px; }
.trust-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.55;
}
.trust-list li svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trust-stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.trust-stat-icon {
  position: absolute;
  top: 16px; right: 16px;
  color: var(--blue);
  opacity: 0.5;
}
.trust-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.trust-stat span { font-size: 0.8125rem; color: var(--gray-500); }

@media (min-width: 992px) {
  .trust-layout { grid-template-columns: 1fr 1fr; }
}

/* ─── TESTIMONIALS ─── */
.section-testimonials { padding: 80px 0; background: var(--bg-warm); }
.testimonial-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.testimonial-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.testimonial-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.testimonial-panel { display: none; }
.testimonial-panel.active {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.testimonial-stars svg { color: #fbbf24; }
.testimonial-quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2.5rem;
  color: var(--gray-100);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card blockquote {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-author span {
  font-size: 0.6875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.testimonial-cta-bar {
  margin-top: 32px;
  background: var(--brand-cyan-light);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.testimonial-cta-bar p {
  font-size: 0.875rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .testimonial-panel.active { grid-template-columns: repeat(2, 1fr); }
}

/* ─── OFFER ─── */
.section-offer { padding: 80px 0; background: var(--white); }
.offer-grid {
  display: grid;
  gap: 24px;
}
.offer-dark {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
}
.offer-dark h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.countdown-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
}
.countdown-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #7ec8ff;
  line-height: 1;
}
.countdown-item span {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  display: block;
}
.offer-phases { margin-bottom: 20px; }
.offer-phases-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}
.offer-phase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(91, 143, 212, 0.45);
  background: rgba(255, 255, 255, 0.03);
}
.offer-phase:last-child { margin-bottom: 0; }
.offer-phase.active {
  border-color: var(--brand-cyan);
  background: rgba(41, 171, 226, 0.12);
}
.offer-phase-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.offer-phase-title {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #6ba3e8;
}
.offer-phase.active .offer-phase-title {
  color: var(--brand-cyan);
}
.offer-phase-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.offer-phase-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  text-align: right;
}
.offer-price-now {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.offer-price-was {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-top: 4px;
}
.offer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cyan);
}

.offer-contact {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.offer-contact h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--navy);
}
.contact-box {
  background: var(--cyan-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.contact-box small {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.contact-box a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}
.contact-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.contact-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-navy);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-social a:hover {
  color: var(--white);
  background: var(--brand-cyan);
  transform: translateY(-2px);
}
.contact-social a svg { width: 18px; height: 18px; display: block; }
.location-list { margin-bottom: 20px; }
.location-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px 14px;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  margin-bottom: 10px;
  background: var(--gray-50);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.location-item:last-child { margin-bottom: 0; }
.location-item:hover {
  border-color: rgba(41, 171, 226, 0.45);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(27, 42, 91, 0.06);
}
.location-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-cyan-light);
  color: var(--blue);
  flex-shrink: 0;
}
.location-item-icon svg { display: block; }
.location-item-body {
  min-width: 0;
}
.location-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.location-item-address {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.45;
}
.location-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--brand-navy);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.location-phone svg {
  color: var(--brand-cyan);
  flex-shrink: 0;
}
.location-phone:hover {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
}
.location-phone:hover svg { color: var(--white); }
.accreditation {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.accreditation strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

@media (min-width: 992px) {
  .offer-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── REGISTRATION FORM ─── */
.section-form { padding: 80px 0; background: var(--bg-soft); }
.form-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-card-header {
  background: var(--navy);
  padding: 32px;
  text-align: center;
  color: var(--white);
}
.form-card-header .badge {
  background: rgba(0,180,216,0.2);
  color: var(--cyan);
  margin-bottom: 12px;
}
.form-card-header h2 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.form-card-header p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.form-card-body { padding: 32px; }
.form-step {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cyan-light);
}
.form-step + .form-step { margin-top: 28px; }
.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
  color: var(--navy);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.12);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0;
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.form-checkbox input { margin-top: 3px; flex-shrink: 0; }
.form-feedback {
  margin-bottom: 24px;
  outline: none;
}
.form-feedback.is-visible .form-message--prominent {
  animation: formMessageIn 0.45s ease;
}
.form-message {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-message--prominent {
  padding: 20px 22px;
  border-radius: 16px;
  font-size: 0.9375rem;
  align-items: flex-start;
  margin-bottom: 0;
  border: 2px solid transparent;
}
.form-message--prominent .form-message-icon {
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.form-message--prominent .form-message-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-message--prominent .form-message-content strong {
  font-size: 1.0625rem;
  line-height: 1.3;
}
.form-message--prominent .form-message-content span {
  font-weight: 400;
  line-height: 1.5;
}
.form-message.success { background: #d1fae5; color: #047857; }
.form-message.success.form-message--prominent { border-color: #6ee7b7; }
.form-message.error { background: #fee2e2; color: #b91c1c; }
.form-message.error.form-message--prominent { border-color: #fca5a5; }
.form-message.error a { color: inherit; font-weight: 600; text-decoration: underline; }
.form-card-body--success {
  padding-top: 8px;
}
.form-success-actions {
  margin-top: 20px;
  text-align: center;
}
@keyframes formMessageIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-row.full { grid-template-columns: 1fr; }
}

/* ─── FAQ ─── */
.section-faq { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  color: var(--navy);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-contact {
  margin-top: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-contact p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding-top: 0;
}
.footer-cta-band {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cta-band > .container {
  position: relative;
  z-index: 1;
}
.footer-cta {
  padding: 48px 0;
}
.footer-cta-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.footer-cta .badge { margin-bottom: 12px; }
.footer-cta h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.footer-cta > div > p {
  font-size: 0.9375rem;
  margin-bottom: 20px;
  line-height: 1.65;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}
.footer-cta-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.footer-cta-box p {
  font-size: 0.875rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
}
.footer-cta-box small {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

.footer-main {
  padding: 48px 0;
  display: grid;
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col p { font-size: 0.8125rem; line-height: 1.65; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 6px 0; }
.footer-col ul a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--cyan); }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); }

.footer-locations { padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-locations h4 {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-loc-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.footer-loc {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
}
.footer-loc strong {
  display: block;
  font-size: 0.875rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-loc span { font-size: 0.75rem; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-cta-grid { grid-template-columns: 1.2fr 0.8fr; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-loc-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── STICKY MOBILE CTA ─── */
/* Footer reference match */
.site-footer {
  background: #020817;
  color: rgba(226,232,240,0.78);
}
.site-footer .container {
  max-width: var(--layout-max);
}
.footer-cta {
  padding: 52px 0 56px;
  border-bottom-color: rgba(148,163,184,0.16);
}
.footer-cta-grid {
  gap: 32px;
}
.footer-cta .badge {
  margin-bottom: 14px;
  border-color: rgba(37,99,235,0.75);
  background: rgba(37,99,235,0.14);
  color: #38bdf8;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  padding: 5px 12px;
}
.footer-cta .badge svg {
  color: #2563eb;
  fill: #2563eb;
}
.footer-cta h2 {
  max-width: 610px;
  font-size: clamp(1.625rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
}
.footer-cta h2 .accent {
  color: #00b4d8;
}
.footer-cta > div > p,
.footer-cta h2 + p {
  max-width: 620px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(191,219,254,0.86);
}
.footer-badges {
  gap: 22px;
}
.footer-badge-item {
  gap: 6px;
  font-size: 0.6875rem;
  color: rgba(191,219,254,0.82);
}
.footer-badge-item svg {
  color: #00b4d8;
}
.footer-cta-box {
  width: min(100%, 230px);
  justify-self: end;
  background: #101a30;
  border-color: rgba(148,163,184,0.16);
  border-radius: 16px;
  padding: 25px 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.footer-cta-box p {
  font-size: 0.6875rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
}
.footer-cta-box .btn {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.8125rem;
  box-shadow: none;
}
.footer-cta-box small {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(148,163,184,0.74);
}
.footer-main {
  padding: 50px 0 46px;
  gap: 48px;
  border-bottom: 1px solid rgba(148,163,184,0.16);
}
.footer-col:first-child {
  max-width: 280px;
}
.footer-main .logo-wrap {
  gap: 8px;
  margin-bottom: 14px !important;
}
.footer-logo-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.footer-logo-text strong {
  color: var(--white);
  font-size: 0.8125rem;
  line-height: 1;
}
.footer-logo-text span {
  color: #2563eb;
  font-size: 0.5625rem;
  line-height: 1;
}
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col p {
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(191,219,254,0.78);
}
.footer-col ul li {
  padding: 4px 0;
  font-size: 0.75rem;
  color: rgba(191,219,254,0.82);
}
.footer-col ul a {
  font-size: 0.75rem;
  color: rgba(191,219,254,0.86);
}
.footer-col ul svg {
  color: #00b4d8;
}
.footer-social {
  gap: 12px;
}
.footer-social a {
  width: 25px;
  height: 25px;
  background: #142034;
  color: rgba(226,232,240,0.74);
  font-size: 0.75rem;
  font-weight: 800;
}
.footer-locations {
  padding: 32px 0 20px;
  border-top: 0;
}
.footer-locations h4 {
  font-size: 0.75rem;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-loc-grid {
  gap: 14px;
}
.footer-loc {
  min-height: 62px;
  background: #0e1729;
  border-color: rgba(148,163,184,0.13);
  border-radius: 8px;
  padding: 14px 16px;
}
.footer-loc strong {
  font-size: 0.6875rem;
  margin-bottom: 3px;
}
.footer-loc span {
  display: block;
  font-size: 0.5625rem;
  line-height: 1.45;
  color: rgba(191,219,254,0.74);
}
.footer-bottom {
  padding: 18px 0 28px;
  border-top-color: rgba(148,163,184,0.16);
  font-size: 0.625rem;
  color: rgba(96,165,250,0.75);
}

@media (min-width: 768px) {
  .footer-cta-grid { grid-template-columns: minmax(0, 1fr) 255px; }
}

@media (max-width: 767px) {
  .footer-cta-box {
    justify-self: start;
  }
  .footer-main {
    gap: 30px;
  }
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.30s; }
.fade-in.delay-3 { transition-delay: 0.45s; }

/* ═══════════════════════════════════════
   KID-FRIENDLY ANIMATIONS
   ═══════════════════════════════════════ */

/* Floating decor — all landing sections */
.has-kv-decor {
  position: relative;
  overflow: hidden;
}
.has-kv-decor > .container {
  position: relative;
  z-index: 1;
}
.cta-banner.has-kv-decor {
  position: relative;
  overflow: hidden;
}
.cta-banner.has-kv-decor > *:not(.kv-floating-decor) {
  position: relative;
  z-index: 1;
}

.kv-floating-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.kv-fd-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(0.5px);
  animation: floatBubble 6s ease-in-out infinite;
}
.kv-fd-bubble-blue {
  background: radial-gradient(circle, rgba(41, 171, 226, 0.3), transparent 70%);
}
.kv-fd-bubble-yellow {
  background: radial-gradient(circle, rgba(240, 90, 40, 0.28), transparent 70%);
  animation-direction: reverse;
}
.kv-fd-bubble-cyan {
  background: radial-gradient(circle, rgba(118, 192, 67, 0.28), transparent 70%);
}
.kv-fd-bubble-purple {
  background: radial-gradient(circle, rgba(228, 0, 124, 0.22), transparent 70%);
  animation-direction: reverse;
}

.kv-fd-star {
  position: absolute;
  font-size: 1.2rem;
  color: var(--yellow);
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.55);
  animation: twinkle 2.5s ease-in-out infinite;
  line-height: 1;
}

.kv-fd-emoji {
  position: absolute;
  font-size: 1.65rem;
  animation: floatEmoji 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(10, 22, 40, 0.12));
  line-height: 1;
}

/* Dark sections (navy bg) */
.kv-fd-dark .kv-fd-star {
  color: #fde68a;
  text-shadow: 0 0 14px rgba(253, 230, 138, 0.45);
}
.kv-fd-dark .kv-fd-bubble { opacity: 0.35; }
.kv-fd-dark .kv-fd-emoji {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  opacity: 0.92;
}

/* Legacy hero aliases (fallback) */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }

@keyframes floatBubble {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.08); }
  66% { transform: translate(-8px, 10px) scale(0.95); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(20deg); }
}
@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

/* Hero entrance */
.anim-hero-in > * { opacity: 0; animation: fadeUpIn 0.7s ease forwards; }
.anim-bounce-in { animation: bounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important; animation-delay: 0.05s !important; }
.anim-hero-title { animation-delay: 0.12s !important; }
.anim-hero-visual {
  opacity: 0;
  animation: slideInRight 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.anim-gradient-text {
  background: linear-gradient(90deg, var(--brand-green), var(--brand-cyan), var(--brand-pink), var(--brand-orange), var(--brand-green));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.6) translateY(20px); }
  70% { transform: scale(1.05) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeUpIn 0.65s ease forwards;
  animation-delay: var(--anim-delay, 0s);
}

/* Stagger pop (hero) */
.anim-stagger > .anim-pop {
  opacity: 0;
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.anim-stagger > .anim-pop:nth-child(1) { animation-delay: 0.25s; }
.anim-stagger > .anim-pop:nth-child(2) { animation-delay: 0.35s; }
.anim-stagger > .anim-pop:nth-child(3) { animation-delay: 0.45s; }
.anim-stagger > .anim-pop:nth-child(4) { animation-delay: 0.55s; }
.anim-stagger > .anim-pop:nth-child(5) { animation-delay: 0.65s; }
.anim-stagger > .anim-pop:nth-child(6) { animation-delay: 0.75s; }

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.5) translateY(16px); }
  70% { transform: scale(1.08) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Floating hero elements */
.anim-float-slow { animation: floatSlow 5s ease-in-out infinite; }
.anim-float-card { animation: floatCard 3.5s ease-in-out infinite; animation-delay: -0.5s; }
.anim-pulse-badge { animation: pulseBadge 2s ease-in-out infinite; }
.anim-wiggle { animation: wiggle 3s ease-in-out infinite; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes pulseBadge {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35); }
  50% { transform: scale(1.06); box-shadow: 0 12px 32px rgba(0, 102, 255, 0.5); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

/* Countdown boxes */
.anim-countdown-box { transition: transform 0.2s ease; }
.anim-countdown-box.tick { animation: countTick 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes countTick {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); background: var(--cyan-light); }
  100% { transform: scale(1); }
}

/* Scroll-triggered stagger */
.anim-stagger-scroll > * {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anim-stagger-scroll.visible > *:nth-child(1) { transition-delay: 0.05s; }
.anim-stagger-scroll.visible > *:nth-child(2) { transition-delay: 0.12s; }
.anim-stagger-scroll.visible > *:nth-child(3) { transition-delay: 0.19s; }
.anim-stagger-scroll.visible > *:nth-child(4) { transition-delay: 0.26s; }
.anim-stagger-scroll.visible > *:nth-child(5) { transition-delay: 0.33s; }
.anim-stagger-scroll.visible > *:nth-child(6) { transition-delay: 0.40s; }
.anim-stagger-scroll.visible > *:nth-child(7) { transition-delay: 0.47s; }
.anim-stagger-scroll.visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Icon boxes bounce on card hover */
.why-card:hover .icon-box,
.get-item:hover .icon-box,
.activity-card:hover .icon-box {
  animation: iconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes iconBounce {
  0% { transform: scale(1) rotate(0); }
  40% { transform: scale(1.2) rotate(-8deg); }
  100% { transform: scale(1) rotate(0); }
}

.program-card-visual:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
}
.program-card-visual {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.section-head h2 .accent {
  display: inline-block;
  transition: transform 0.3s ease;
}
.section-head:hover h2 .accent {
  animation: wiggleSmall 0.5s ease;
}
@keyframes wiggleSmall {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-decor,
  .kv-floating-decor { display: none; }
  .anim-stagger-scroll > *,
  .fade-in,
  .anim-hero-in > *,
  .anim-hero-visual {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ─── PROGRAM CARD IMAGES ─── */
.program-card-visual {
  padding: 0;
  overflow: hidden;
}
.program-card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}
.program-card-thumb-sm { aspect-ratio: 16 / 9; }
.program-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.program-card-visual:hover .program-thumb-img { transform: scale(1.04); }
.program-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.program-card-compact .program-card-body {
  padding: 20px;
}
.program-card-compact h3 {
  font-size: 1.0625rem;
  line-height: 1.3;
}
.program-card-compact .subtitle {
  font-size: 0.625rem;
  margin-bottom: 10px;
}
.program-card-compact .desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.program-card-compact .program-learn {
  margin-bottom: 4px;
}
.program-card-compact .program-learn h4 {
  margin-bottom: 8px;
}
.program-card-compact .program-learn ul {
  margin-bottom: 14px;
}
.program-card-compact .program-learn li {
  font-size: 0.8125rem;
  padding: 6px 0;
}
.program-card-compact .program-box {
  padding: 12px;
  margin-bottom: 10px;
}
.program-card-compact .program-box p {
  font-size: 0.75rem;
  line-height: 1.5;
}
.program-card-compact .program-card-header {
  margin-bottom: 12px;
}
.program-card-compact .program-card-header .badge {
  font-size: 0.5625rem;
  padding: 4px 10px;
}
.program-card-compact .btn {
  font-size: 0.8125rem;
  padding: 10px 16px;
}

/* ─── MONTH PICKER ─── */
.month-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.month-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}
.month-card strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--navy);
}
.month-card span {
  font-size: 0.625rem;
  color: var(--gray-500);
}
.month-card.highlight {
  background: linear-gradient(135deg, var(--brand-cyan-light), var(--brand-green-light));
  border-color: rgba(41, 171, 226, 0.35);
}
.schedule-card-image {
  margin: -1px -1px 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  max-height: 160px;
}
.schedule-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.schedule-card.dark .schedule-card-content { padding: 24px; }

/* ─── GET SECTION ─── */
.section-get {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-warm), var(--white));
}
.get-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.get-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.get-item:hover { box-shadow: var(--shadow); transform: translateY(-4px) scale(1.02); }
.get-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 8px;
}
.get-item p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }
.get-item-wide { grid-column: 1 / -1; }
@media (min-width: 640px) { .get-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .get-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── ACTIVITY IMAGES ─── */
.activity-card-visual {
  padding: 0;
  overflow: hidden;
}
.activity-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.activity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.activity-card-visual:hover .activity-img { transform: scale(1.08) rotate(1deg); }
.activity-card-visual:hover { transform: translateY(-6px) rotate(-0.5deg); }
.activity-card-visual { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.activity-card-body { padding: 20px 24px 24px; }

/* ─── GALLERY ─── */
.section-gallery {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}
.section-gallery .section-head h2 { color: var(--white); }
.section-gallery .section-head p { color: rgba(255,255,255,0.72); }
.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.gallery-item-lg { grid-row: span 2; }
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06) rotate(-1deg); }
.gallery-item { transition: transform 0.35s ease; }
.gallery-item:hover { transform: translateY(-4px); z-index: 1; }
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .gallery-item-lg { grid-row: 1 / 3; grid-column: 1; }
}

/* ═══════════════════════════════════════
   MOBILE FIXES (max 767px)
   ═══════════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --layout-gutter: 12px;
  }
  .container { padding: 0 var(--layout-gutter); }

  /* Global */
  .btn {
    white-space: normal;
    font-size: 0.8125rem;
    padding: 10px 18px;
  }
  .btn-lg {
    font-size: 0.8125rem;
    padding: 11px 20px;
  }
  .section-head { margin-bottom: 32px; }
  .section-why,
  .section-programs,
  .section-schedule,
  .section-get,
  .section-activities,
  .section-gallery,
  .section-ai,
  .section-trust,
  .section-testimonials,
  .section-offer,
  .section-form,
  .section-faq { padding: 48px 0; }
  .hero { padding: 28px 0 40px; }

  /* Top bar */
  .top-bar-inner {
    flex-direction: column;
    gap: 6px;
    padding: 10px 16px;
    font-size: 0.75rem;
    line-height: 1.45;
  }
  .top-bar-pulse { display: none; }
  .top-bar-link { font-size: 0.8125rem; }

  /* Header */
  .header-inner { padding: 12px 16px; }
  .logo-wrap .logo-img { max-height: 52px; max-width: min(230px, 62vw); }
  .footer-logo-img { max-height: 48px; }

  /* Hero */
  .hero h1 {
    font-size: clamp(1.625rem, 7vw, 2rem);
    line-height: 1.18;
  }
  .hero-badge {
    font-size: 0.5625rem;
    padding: 5px 10px;
    line-height: 1.4;
  }
  .hero-lead {
    font-size: 0.9375rem;
    max-width: none;
    margin-bottom: 20px;
  }
  .hero-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 20px;
  }
  .hero-pill { padding: 10px 6px; }
  .hero-pill strong { font-size: 0.6875rem; line-height: 1.3; }
  .hero-pill small { font-size: 0.5625rem; }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }
  .hero-trust-item { font-size: 0.6875rem; }

  /* Hero image + float card — no overflow */
  .hero-visual { margin-top: 4px; }
  .hero-slides,
  .hero-main-img { aspect-ratio: 16 / 11; }
  .hero-slide .hero-image-badge {
    top: 12px;
    right: 12px;
    padding: 8px 12px;
  }
  .hero-slide .hero-image-badge strong { font-size: 1rem; }
  .hero-float-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 12px;
    flex-wrap: wrap;
    padding: 14px;
    gap: 10px;
  }
  .hero-float-card > div:not(.hero-float-icon) {
    flex: 1;
    min-width: 0;
  }
  .hero-float-seats {
    margin-left: 0;
    width: 100%;
    text-align: center;
    padding: 8px;
  }
  .hero-float-card p { font-size: 0.6875rem; }

  /* Countdown hero */
  .countdown-compact {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
  }
  .countdown-compact .countdown-item {
    min-width: 0;
    padding: 8px 4px;
  }
  .countdown-compact .countdown-item strong { font-size: 1rem; }

  /* Floating decor — lighter on mobile */
  .kv-fd-bubble {
    opacity: 0.28;
    transform: scale(0.65);
  }
  .kv-fd-emoji {
    font-size: 1.25rem;
    opacity: 0.85;
  }
  .kv-fd-star {
    font-size: 0.875rem;
    opacity: 0.65;
  }
  .anim-float-slow,
  .anim-float-card { animation: none !important; }

  /* Why section */
  .why-split { gap: 24px; }
  .why-visual {
    margin: 0 auto 8px;
    max-width: min(260px, 72vw);
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .why-main-img {
    aspect-ratio: auto;
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    object-position: center top;
    box-shadow: none;
    border-radius: 0;
  }
  .why-visual-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 12px;
  }
  .section-head-left { text-align: center; }
  .section-head-left .badge { display: inline-flex; }
  .why-card { padding: 20px; }

  /* CTA banner */
  .cta-banner {
    width: calc(100% - 2 * var(--layout-gutter));
    margin: 0 auto 48px;
    border-radius: var(--radius);
    height: auto;
    overflow: visible;
  }
  .cta-banner-visual {
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
  }
  .cta-banner-visual-img {
    flex: none;
    width: 100%;
    height: 210px;
    max-height: none;
    min-height: 0;
    overflow: hidden;
  }
  .cta-banner-photo {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
  }
  .cta-banner-visual .cta-banner-inner {
    padding: 16px 18px 10px;
  }
  .cta-banner-visual .cta-banner-inner h3 {
    font-size: 1rem;
    line-height: 1.4;
  }
  .cta-banner-badge {
    font-size: 0.625rem;
  }
  .cta-banner-visual .btn {
    margin: 0 18px 16px;
    align-self: stretch;
    width: auto;
    font-size: 0.8125rem;
    padding: 11px 18px;
  }

  /* Age tabs — stacked, pa scroll */
  .age-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 0 0 12px;
    padding: 0;
    overflow: visible;
  }
  .age-tab {
    width: 100%;
    flex-shrink: 1;
    padding: 12px 16px;
    font-size: 0.8125rem;
    text-align: center;
    justify-content: center;
  }
  .age-hint {
    font-size: 0.75rem;
    text-align: center;
    padding: 0 4px;
  }

  /* Testimonial tabs — stacked, pa scroll */
  .testimonial-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 24px;
  }
  .testimonial-tab {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.8125rem;
    text-align: center;
  }

  /* Program cards */
  .program-card-body { padding: 18px; }
  .program-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .program-card h3 { font-size: 1.0625rem; }

  /* Schedule */
  .schedule-card { padding: 20px; }
  .schedule-card.dark { padding: 0; overflow: hidden; }
  .schedule-card.dark .schedule-card-content { padding: 20px; }
  .schedule-card-image { max-height: 140px; }
  .schedule-card-img { height: 140px; }
  .schedule-features { grid-template-columns: 1fr; }
  .schedule-feat { padding: 12px; font-size: 0.75rem; }
  .schedule-card h3 { font-size: 1.125rem; }
  .schedule-card-badges { flex-direction: column; align-items: flex-start; }
  .month-picker { grid-template-columns: 1fr; gap: 6px; }
  .month-card { padding: 10px; }

  /* Offer */
  .offer-dark { padding: 24px 20px; }
  .countdown { gap: 6px; }
  .countdown-item { padding: 10px 4px; }
  .countdown-item strong { font-size: 1.375rem; }
  .offer-phase {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px;
  }
  .offer-price-now { font-size: 1.5rem; }
  .offer-price-was { font-size: 0.8125rem; }
  .offer-contact { padding: 24px 20px; }
  .location-item {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
  .location-phone {
    grid-column: 1 / -1;
    width: 100%;
  }

  /* Gallery — single column */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-lg { grid-row: auto; }
  .gallery-img { min-height: 200px; aspect-ratio: 16 / 10; }

  /* Testimonials */
  .testimonial-cta-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .testimonial-cta-bar .btn { width: 100%; }

  /* Form */
  .form-card { border-radius: var(--radius); }
  .form-card-header { padding: 24px 20px; }
  .form-card-body { padding: 20px; }

  /* Footer */
  .footer-cta {
    padding: 44px 20px 52px;
  }
  .footer-cta h2 { font-size: 1.375rem; }
  .footer-cta-grid {
    gap: 28px;
  }
  .footer-cta-box {
    width: 100%;
    padding: 24px 20px;
  }
  .footer-loc-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Trust stats */
  .trust-stat { padding: 18px; }
  .trust-stat strong { font-size: 1.375rem; }

  /* Activity cards */
  .activity-card-body { padding: 16px 18px 20px; }
  .activity-card:not(.activity-card-visual) { padding: 20px; }

  /* Disable hover tilt on touch */
  .why-card:hover,
  .get-item:hover,
  .program-card-visual:hover,
  .activity-card-visual:hover,
  .gallery-item:hover {
    transform: none;
  }
}

@media (max-width: 380px) {
  .hero-pills { grid-template-columns: 1fr; }
  .hero-pill { display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 10px 14px; }
  .hero-pill small { margin-bottom: 0; }
  .trust-stats { grid-template-columns: 1fr; }
}
