:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #6366f1;
  --secondary: #0ea5e9;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-gradient: #fef3c7;
  --text: #1e293b;
  --text-light: #475569;
  --muted: #64748b;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --danger: #ef4444;
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* Hide default cursor on desktop */
  /* Optimize scrolling for mobile */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

/* Show default cursor on mobile/tablet */
@media (max-width: 960px) {
  body {
    cursor: auto;
  }
}

/* CUSTOM CURSOR */
.custom-cursor {
  pointer-events: none;
  position: fixed;
  z-index: 10000;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  z-index: 10001;
}

.cursor-outline {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease,
    opacity 0.3s ease;
  opacity: 0.5;
  z-index: 10000;
}

/* Cursor hover states */
body.cursor-hover .cursor-dot {
  width: 16px;
  height: 16px;
  background: var(--accent);
}

body.cursor-hover .cursor-outline {
  width: 48px;
  height: 48px;
  border-color: var(--accent);
  opacity: 0.8;
}

body.cursor-click .cursor-dot {
  width: 12px;
  height: 12px;
}

body.cursor-click .cursor-outline {
  width: 40px;
  height: 40px;
}

/* Hide custom cursor on mobile */
@media (max-width: 960px) {
  .custom-cursor {
    display: none;
  }
}

/* PAGE LOADER */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  animation: fadeIn 0.6s ease;
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: slideInDown 0.6s ease;
}

.loader-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.loader-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-top-color: rgba(255, 255, 255, 0.6);
  animation-duration: 2s;
  animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-top-color: rgba(255, 255, 255, 0.4);
  animation-duration: 2.5s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  animation: fadeIn 0.8s ease 0.3s both;
}

/* SMOOTH ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Scroll-triggered animations */
section,
.card,
.trust-badge,
.stat-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.animate-in,
.card.animate-in,
.trust-badge.animate-in,
.stat-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Initial visible elements (hero area) */
.hero-wrapper,
.hero-wrapper section,
.hero-wrapper .card {
  opacity: 1;
  transform: none;
}

/* Force teacher section and cards to be visible */
.teacher-grid .teacher-card,
.testimonial-toggle,
.testimonials-container,
.activity-gallery,
.video-testimonials {
  opacity: 1 !important;
  transform: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

header:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  animation: pulse 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.logo-badge:hover {
  transform: rotate(360deg);
  animation: none;
}

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
}

.logo-text span {
  font-weight: 400;
  opacity: 0.9;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
}

nav a {
  color: var(--text-light);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* HERO WRAPPER */
.hero-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(99, 102, 241, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(14, 165, 233, 0.4) 0%,
      transparent 50%
    );
  animation: float 8s ease-in-out infinite;
}

.hero-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 70%);
  z-index: 1;
}

/* HERO */
.hero {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.hero-grid > div:first-child {
  animation: slideInLeft 0.8s ease-out;
}

.hero-grid > div:last-child {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: scaleIn 0.5s ease-out 0.3s both;
}

.hero-label span {
  font-size: 1.1rem;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  color: #fbbf24;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 560px;
  margin-bottom: 24px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-badge {
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out both;
}

.hero-badge:nth-child(1) {
  animation-delay: 0.4s;
}
.hero-badge:nth-child(2) {
  animation-delay: 0.5s;
}
.hero-badge:nth-child(3) {
  animation-delay: 0.6s;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  animation: fadeIn 0.8s ease-out 0.7s both;
}

.hero-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.hero-right {
  position: relative;
}

.hero-card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 22px;
  padding: 18px 18px 14px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  position: relative;
  z-index: 2;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(244, 114, 182, 0.7),
    rgba(96, 165, 250, 0.9)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
}

.hero-card-title {
  font-weight: 700;
  font-size: 0.96rem;
  margin-bottom: 6px;
}

.hero-card-list {
  font-size: 0.86rem;
  list-style: none;
}

.hero-card-list li {
  margin-bottom: 6px;
  display: flex;
  gap: 6px;
}

.hero-card-list li::before {
  content: "✔";
  font-size: 0.82rem;
  margin-top: 2px;
  color: #a5b4fc;
}

.hero-highlight {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background-color: rgba(254, 243, 199, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.6);
  font-size: 0.8rem;
  color: #fef3c7;
}

.hero-figure {
  position: absolute;
  right: -40px;
  top: -30px;
  width: 220px;
  filter: drop-shadow(0 26px 50px rgba(15, 23, 42, 0.9));
}

.hero-figure img {
  border-radius: 26px;
}

/* SECTION BASE */
section {
  padding: 80px 0;
  position: relative;
}

@media (max-width: 960px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  section {
    padding: 48px 0;
  }
}

.section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
  padding: 6px 16px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.section-eyebrow:hover {
  background: rgba(79, 70, 229, 0.15);
  transform: scale(1.05);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .section-title {
    font-size: 1.6rem;
  }
  .section-description {
    font-size: 0.95rem;
  }
}

.section-soft {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.section-colored {
  background: linear-gradient(135deg, #f0f9ff 0%, #fef3c7 50%, #f0f9ff 100%);
  position: relative;
}

.section-colored::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(14, 165, 233, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* GENERIC CARD & GRID */
.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
}

.card ul {
  padding-left: 24px;
  margin-top: 14px;
  line-height: 1.8;
}

.card ul li {
  color: var(--text-light);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.card ul li:hover {
  color: var(--text);
}

.muted {
  color: var(--text-light);
}

.quote {
  border-left: 4px solid var(--primary);
  padding-left: 14px;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: 12px;
  background: rgba(79, 70, 229, 0.03);
  padding: 12px 12px 12px 14px;
  border-radius: 0 8px 8px 0;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.gallery-item {
  border-radius: 18px;
  background: radial-gradient(circle at top left, #e0e7ff, #f5f3ff);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  padding: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

/* PROGRAM */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  border: 1px solid rgba(79, 70, 229, 0.2);
  transition: all 0.3s ease;
}

.pill:hover {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  transform: translateY(-1px);
}

.program-card {
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.program-card ul {
  padding-left: 22px;
  font-size: 0.9rem;
}

.program-card ul li {
  margin-bottom: 8px;
  color: var(--text-light);
}

/* FEATURED PROGRAMS (The Quest & The Elevate) */
.program-grid-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 32px;
}

.featured-program-card {
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.quest-card {
  border-top: 4px solid var(--primary);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, #ffffff 40%);
}

.elevate-card {
  border-top: 4px solid var(--success);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.03) 0%, #ffffff 40%);
}

.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.featured-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quest-card .featured-header h3 {
  color: var(--primary);
}

.elevate-card .featured-header h3 {
  color: var(--success);
}

.featured-icon {
  font-size: 1.3em;
}

.age-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.featured-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.featured-fit-for {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.featured-fit-for strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 600;
}

.quest-card .featured-fit-for strong {
  color: var(--primary);
}

.elevate-card .featured-fit-for strong {
  color: var(--success);
}

.fit-icon {
  font-size: 1.1em;
}

.featured-fit-for p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--secondary);
  font-style: italic;
  margin: 0;
}

/* BEFORE / AFTER */
.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.before {
  border-top: 5px solid var(--danger);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.05) 0%, #ffffff 30%);
  position: relative;
}

.before::before {
  content: "❌";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.2;
}

.after {
  border-top: 5px solid var(--success);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, #ffffff 30%);
  position: relative;
}

.after::before {
  content: "✅";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.2;
}

.before-after h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.before-after ul {
  padding-left: 24px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.before-after ul li {
  margin-bottom: 10px;
}

/* HI SECTION */
.hi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.hi-grid ul {
  padding-left: 18px;
  font-size: 0.86rem;
}

/* STATS & COMPARISON */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.stat-box {
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef2ff 0%, #fef3c7 100%);
  border: 2px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: scaleIn 0.6s ease-out both;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(245, 158, 11, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.2);
  border-color: var(--primary);
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-box:nth-child(1) {
  animation-delay: 0.1s;
}
.stat-box:nth-child(2) {
  animation-delay: 0.2s;
}
.stat-box:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  position: relative;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  position: relative;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  background-color: #e5e7eb;
  color: #374151;
  margin-bottom: 4px;
}

.tag-highlight {
  background-color: #e0e7ff;
  color: #1d4ed8;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.pricing-grid .card {
  border: 2px solid var(--border);
  position: relative;
  overflow: visible;
}

.pricing-grid .card:hover {
  border-color: var(--primary);
  transform: translateY(-8px) scale(1.02);
}

/* Pricing Display */
.price-main {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 8px 0;
  display: block;
  line-height: 1.2;
  position: relative;
}

.price-period {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}

.price-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.promo-icon {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.promo-text {
  flex: 1;
  text-align: center;
}

.price-breakdown {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  border: 1px solid var(--border);
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.breakdown-item:last-of-type {
  border-bottom: none;
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 4px 0;
  margin-top: 8px;
  border-top: 2px solid var(--primary);
}

.breakdown-label {
  font-size: 0.9rem;
  color: var(--text);
}

.breakdown-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.price-strike {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.9rem;
}

.price-discount-hint {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.breakdown-total .breakdown-label {
  font-size: 1rem;
}

.breakdown-total .breakdown-value {
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.promo-cta-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px dashed #f59e0b;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  text-align: center;
}

.promo-hint {
  font-size: 0.9rem;
  color: #78350f;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.promo-hint strong {
  color: #92400e;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
}

/* Pricing Toggle Features */
.benefits-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.benefits-hidden.show {
  max-height: 1000px;
  opacity: 1;
  margin-top: 8px;
}

.toggle-benefits-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
  width: 100%;
  justify-content: center;
}

.toggle-benefits-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.toggle-benefits-btn:active {
  transform: translateY(0);
}

.toggle-benefits-btn .arrow {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.toggle-benefits-btn.active .arrow {
  transform: rotate(180deg);
}

/* FAQ */
.faq-list {
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: 14px;
  border-radius: 12px;
  padding: 20px 24px;
  background-color: #ffffff;
  border: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease-out both;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.1);
  transform: translateX(4px);
}

.faq-question {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
  transform: rotate(180deg);
}

.faq-question span:first-of-type {
  flex: 1;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}

/* TEACHER PROFILES */
.teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.teacher-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  visibility: visible;
}

.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.15);
  border-color: var(--primary-light);
}

.teacher-image {
  position: relative;
  background: linear-gradient(135deg, #e0e7ff, #f0f9ff);
  padding: 40px 20px 20px;
  text-align: center;
}

.teacher-avatar {
  font-size: 5rem;
  margin-bottom: 12px;
  animation: float 3s ease-in-out infinite;
}

.teacher-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 4px solid white;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.2);
  margin: 0 auto 12px;
  display: block;
  transition: all 0.3s ease;
  background-color: #e0e7ff;
}

.teacher-photo:not([src]) {
  content: "👤";
  font-size: 4rem;
  line-height: 150px;
  text-align: center;
}

.teacher-card:hover .teacher-photo {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.3);
}

.teacher-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.teacher-info {
  padding: 24px;
}

.teacher-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.teacher-role {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.teacher-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.teacher-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.skill-tag:hover {
  background: rgba(79, 70, 229, 0.2);
  transform: translateY(-2px);
}

/* TESTIMONIALS */
/* Testimonial Toggle Buttons */
.testimonial-toggle {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.toggle-btn {
  padding: 12px 32px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toggle-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

/* Testimonials Container */
.testimonials-container {
  display: none;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.testimonials-container.active {
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.6s ease-out;
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg-soft);
}

.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
  flex-shrink: 0;
}

.testimonial-photo-placeholder {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.testimonial-info h4 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 12px;
}

.testimonial-content p:last-child {
  margin-bottom: 0;
}

.testimonial-highlight {
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.05),
    rgba(14, 165, 233, 0.05)
  );
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  margin-top: 16px;
}

/* Legacy testimonials (keeping for backward compatibility) */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.testimonial {
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-left: 4px solid var(--primary);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 3rem;
  color: rgba(79, 70, 229, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  position: relative;
  z-index: 1;
  color: var(--text-light);
}

.testimonial strong {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

/* ACTIVITY GALLERY / DOKUMENTASI KEGIATAN */
.activity-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
  animation: fadeIn 0.6s ease-out;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.2);
  z-index: 10;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 24px 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Masonry-like effect untuk variasi */
.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.15s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.25s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.35s;
}
.gallery-item:nth-child(7) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(8) {
  animation-delay: 0.45s;
}
.gallery-item:nth-child(9) {
  animation-delay: 0.5s;
}
.gallery-item:nth-child(10) {
  animation-delay: 0.55s;
}

/* VIDEO TESTIMONIALS */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

@media (min-width: 1200px) {
  .video-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.video-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e7ff, #f0f9ff);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 20px;
}

.video-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.video-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid;
}

.badge-level {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  color: #92400e;
  border-color: rgba(251, 146, 60, 0.3);
}

.badge-duration {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  color: var(--primary);
  border-color: rgba(99, 102, 241, 0.2);
}

.video-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #e0f2fe 0%, #eef2ff 50%, #fef3c7 100%);
  border-top: 2px solid rgba(79, 70, 229, 0.1);
  border-bottom: 2px solid rgba(79, 70, 229, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(99, 102, 241, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(245, 158, 11, 0.08) 0%,
      transparent 50%
    );
  animation: float 8s ease-in-out infinite;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.cta-big {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.3;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

form {
  background-color: #ffffff;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border);
  font-size: 0.95rem;
  animation: scaleIn 0.5s ease-out;
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 2px solid var(--border);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background-color: #ffffff;
  transform: translateY(-1px);
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--primary-light);
}

textarea {
  resize: vertical;
  min-height: 70px;
}

.form-helper {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

.wa-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
}

/* FOOTER */
footer {
  padding: 18px 0 22px;
  font-size: 0.8rem;
  color: var(--muted);
  background-color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

footer a {
  color: var(--primary-dark);
}

/* NEW COMPONENTS */
.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.problem-card {
  border-left: 5px solid var(--danger);
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(239, 68, 68, 0.05) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

.solution-card {
  border-left: 5px solid var(--success);
  background: linear-gradient(135deg, #d1fae5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.05) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite reverse;
}

.problem-card > *,
.solution-card > * {
  position: relative;
  z-index: 1;
}

.urgency-box {
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease-out;
}

.urgency-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.urgency-box h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #92400e;
  font-weight: 700;
  position: relative;
}

.urgency-box p {
  font-size: 0.95rem;
  color: #78350f;
  margin: 0;
  line-height: 1.6;
  position: relative;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  padding: 28px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 16px;
  margin: 0;
  border: 1px solid var(--border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out both;
}

.trust-badge:nth-child(1) {
  animation-delay: 0.1s;
}
.trust-badge:nth-child(2) {
  animation-delay: 0.2s;
}
.trust-badge:nth-child(3) {
  animation-delay: 0.3s;
}
.trust-badge:nth-child(4) {
  animation-delay: 0.4s;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.15);
  border-color: var(--primary-light);
}

.trust-badge-icon {
  font-size: 1.3rem;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.2);
  z-index: 50;
  display: none;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky-cta-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta-text {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.sticky-cta .btn {
  background: white;
  color: var(--primary-dark);
  padding: 8px 18px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.95);
  z-index: 100;
  padding: 80px 24px 24px;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mobile-nav ul {
  list-style: none;
  width: 100%;
  max-width: 300px;
}

.mobile-nav li {
  margin-bottom: 24px;
}

.mobile-nav a {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.close-mobile-nav {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fecaca, #fef3c7);
  border: 2px solid #ef4444;
  font-size: 0.9rem;
  font-weight: 700;
  color: #991b1b;
  margin-top: 12px;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease,
    transform 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whatsapp-float.hide {
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
}

.whatsapp-float:not(.hide):hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float:not(.hide):active {
  transform: scale(0.95);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  color: white;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
  transform: rotate(-10deg);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
  }
}

/* Hide on mobile when sticky CTA is visible */
@media (max-width: 960px) {
  .whatsapp-float {
    bottom: 80px;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 80px;
    right: 16px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* PWA INSTALL PROMPT */
.pwa-install-prompt {
  position: fixed;
  bottom: 24px;
  left: 24px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
  z-index: 998;
  transition: all 0.3s ease;
  animation: slideInLeft 0.5s ease, pulse 2s ease-in-out 1s infinite;
}

.pwa-install-prompt:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.6);
}

.pwa-install-prompt:active {
  transform: translateY(-2px) scale(1);
}

@media (max-width: 640px) {
  .pwa-install-prompt {
    left: 16px;
    bottom: 150px;
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

/* RESPONSIVE */
/* Tablet: 2 columns for teacher grid */
@media (max-width: 1200px) and (min-width: 961px) {
  .teacher-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .future-vision,
  .two-column,
  .program-grid,
  .program-grid-featured,
  .before-after,
  .hi-grid,
  .stats-grid,
  .comparison-grid,
  .pricing-grid,
  .testimonials,
  .teacher-grid,
  .video-testimonials,
  .cta-grid,
  .gallery-grid,
  .problem-solution-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .hero-figure {
    position: static;
    width: 210px;
    margin: 22px auto 0;
  }

  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .sticky-cta {
    display: block;
  }

  .sticky-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta .btn {
    width: 100%;
  }

  .card {
    padding: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-toggle {
    gap: 12px;
  }

  .toggle-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  /* Activity Gallery Responsive */
  .activity-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .hero-wrapper::after {
    height: 70px;
  }

  /* Disable transforms on mobile for smooth scrolling */
  .hero-wrapper,
  .hero,
  .hero-card {
    transform: none !important;
    opacity: 1 !important;
    will-change: auto;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .testimonial-photo {
    width: 60px;
    height: 60px;
  }

  .testimonial-header {
    gap: 12px;
  }

  .testimonial-info h4 {
    font-size: 1rem;
  }

  .testimonial-content p {
    font-size: 0.9rem;
  }

  /* Activity Gallery Mobile */
  .activity-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 24px;
  }

  .gallery-overlay p {
    font-size: 0.85rem;
    padding: 16px 12px 12px;
  }

  .card {
    padding: 18px;
    font-size: 0.9rem;
  }

  .program-card,
  .pricing-card {
    padding: 20px;
  }

  /* Pricing Mobile Adjustments */
  .price-main {
    font-size: 2rem;
  }

  .price-period {
    font-size: 0.9rem;
  }

  .price-label {
    font-size: 0.7rem;
  }

  .price-breakdown {
    padding: 12px;
    margin: 12px 0;
  }

  .breakdown-item,
  .breakdown-total {
    padding: 6px 0;
  }

  .breakdown-label {
    font-size: 0.85rem;
  }

  .breakdown-value {
    font-size: 0.9rem;
  }

  .price-strike {
    font-size: 0.85rem;
  }

  .price-discount-hint {
    font-size: 0.7rem;
    padding: 2px 6px;
  }

  .breakdown-total .breakdown-label,
  .breakdown-total .breakdown-value {
    font-size: 0.95rem;
  }

  .promo-cta-section {
    padding: 12px;
    margin: 12px 0;
  }

  .promo-hint {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .promo-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .promo-icon {
    font-size: 1rem;
  }

  input,
  textarea {
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .trust-badges {
    gap: 12px;
  }

  .trust-badge {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}
