/* ============================================
   CODJU AI CREATOR CAMP — Design System & Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Caveat:wght@500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Primary palette */
  --purple-50: #f5f0ff;
  --purple-100: #ede5ff;
  --purple-200: #d9c7ff;
  --purple-300: #b794f6;
  --purple-400: #9f67ff;
  --purple-500: #7c3aed;
  --purple-600: #6d28d9;
  --purple-700: #5b21b6;
  --purple-800: #4c1d95;
  --purple-900: #3b0f7a;
  --purple-950: #1e0a3e;

  /* Accent / Indigo */
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;

  /* Functional */
  --success: #22c55e;
  --warning: #f59e0b;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--purple-950) 0%, #1a0533 40%, #0f0720 100%);
  --gradient-card: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(99,102,241,0.04) 100%);
  --gradient-cta: linear-gradient(135deg, var(--purple-500) 0%, var(--indigo-600) 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.15) 0%, transparent 70%);
  --gradient-purple-soft: linear-gradient(135deg, var(--purple-100) 0%, var(--purple-50) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.05);
  --shadow-purple: 0 8px 32px rgba(124,58,237,0.18);
  --shadow-glow: 0 0 40px rgba(124,58,237,0.2);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Spacing */
  --section-py: 100px;
  --section-px: 24px;
  --container-max: 1200px;
  --card-radius: 16px;
  --btn-radius: 12px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--white);
  border-left: 1px solid var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-200);
  border: 2px solid var(--white);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple-400);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

/* --- Section Base --- */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section--purple-light {
  background: var(--gradient-purple-soft);
}

.section--dark {
  background: var(--gradient-hero);
  color: var(--white);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header__eyebrow {
  display: inline-block;
  background: rgba(124, 58, 237, 0.08);
  color: var(--purple-600);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section--dark .section-header__title {
  color: var(--white);
}

.section-header__subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section--dark .section-header__subtitle {
  color: rgba(255,255,255,0.65);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--btn-radius);
  padding: 14px 32px;
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: var(--shadow-purple);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 35%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.25) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  animation: auto-shine-sweep 5s infinite linear;
}

.btn--primary:hover {
  filter: brightness(1.1);
}

@keyframes auto-shine-sweep {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

@keyframes pulse-primary {
  0% {
    transform: scale(1);
    box-shadow: var(--shadow-purple);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(124,58,237,0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: var(--shadow-purple);
  }
}

.btn--secondary {
  background: var(--white);
  color: var(--purple-600);
  border: 1.5px solid var(--purple-200);
}

.btn--secondary:hover {
  background: var(--purple-50);
  border-color: var(--purple-400);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid var(--gray-200);
  padding: 28px;
  transition: all var(--transition-fast);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--purple-200);
}

.card--glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}

.card--glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(124,58,237,0.1);
  color: var(--purple-600);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.badge--dark {
  background: rgba(124,58,237,0.1);
  color: var(--purple-700);
  border: 1px solid rgba(124,58,237,0.2);
}

.badge--outline {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--purple-500);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.badge__dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: rgba(124,58,237,0.3);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--section-px);
  transition: all var(--transition-fast);
}

.nav--scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-200);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-cta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 1rem;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.nav__links a:hover {
  color: var(--purple-600);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Animate hamburger lines to X */
.nav__mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile-menu {
  display: flex;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-md);
  
  /* Smooth Fade & Slide Transition */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.nav__mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__mobile-menu a:not(.btn) {
  color: var(--gray-700);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background-color: var(--purple-50);
  background-image: 
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__top {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hero__eyebrow-script {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--purple-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

.hero__eyebrow-bold {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple-900);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.hero__eyebrow-bold:last-child::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: -2px;
  width: calc(100% + 4px);
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0,3 Q50,6 100,2' stroke='%237c3aed' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M3,7 Q50,4 98,5' stroke='%237c3aed' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.hero__top-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero__badge {
  margin-bottom: 16px;
}

.hero__left-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--purple-600);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero__left-subtitle {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 540px;
}

.hero__left-subtitle a,
.hero__expand-link {
  color: var(--gray-900);
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.hero__left-subtitle a:hover,
.hero__expand-link:hover {
  color: var(--purple-600);
}

.hero__divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--purple-200) 0%, transparent 100%);
  margin-bottom: 16px;
  width: 100%;
}

.hero__list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
}

.hero__list-icon {
  color: var(--purple-500);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.hero__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-fast);
}

.hero__link:hover {
  color: var(--gray-900);
}

/* Hero visual */
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__video-wrapper {
  background: var(--white);
  border: 1px solid var(--purple-200);
  box-shadow: var(--shadow-xl);
  border-radius: 24px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
}

.hero__video-wrapper video,
.hero__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: none;
  display: block;
}

.hero__mascot {
  position: absolute;
  width: 100px;
  height: auto;
  z-index: 10;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
  pointer-events: none;
}

.hero__mascot--dino {
  bottom: -40px;
  left: -40px;
}

.hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-600);
  font-size: 1.8rem;
  padding-left: 6px; /* offset for optical alignment of triangle */
  box-shadow: 0 8px 32px rgba(124,58,237,0.25);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.hero__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(124,58,237,0.3);
}

/* Floating elements */
.hero__float {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(124, 58, 237, 0.15);
  box-shadow: var(--shadow-md);
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 0.85rem;
  color: var(--gray-800);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: float 6s ease-in-out infinite;
  z-index: 5;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.hero__float--1 {
  top: 10%;
  right: -10px;
  animation-delay: 0s;
}

.hero__float--2 {
  bottom: 15%;
  left: -10px;
  animation-delay: 2s;
}

.hero__float--3 {
  bottom: 5%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   PROGRAM OVERVIEW CARDS
   ============================================ */
.overview-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.overview-card {
  width: calc(33.333% - 16px);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-items: center;
  text-align: left;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--purple-100);
  border-radius: 16px;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-2px);
  border-color: var(--purple-500);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.2) !important;
}

.overview-card__icon {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  background: var(--gradient-purple-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0;
}

.overview-card__title {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: 2px;
  align-self: end;
}

.overview-card__desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  align-self: start;
}

/* ============================================
   LEARNING TABS
   ============================================ */
.learning-tabs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Tabs Nav */
.tabs-nav {
  display: flex;
  justify-content: center;
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
  padding: 8px;
  border-radius: 20px;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  flex: 1;
  flex-basis: 0;
  min-width: 200px;
  height: 76px;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(0);
  box-shadow: none;
}

.tab-btn.active {
  background: var(--white);
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.tab-btn.active .tab-icon {
  color: var(--purple-600);
  background: rgba(124, 58, 237, 0.1);
}

.tab-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--gray-500);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.tab-icon svg {
  width: 18px;
  height: 18px;
}

.tab-text {
  display: flex;
  flex-direction: column;
}

.tab-btn.active strong {
  color: var(--purple-700);
}

.tab-text strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-900);
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.tab-text span {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.3;
}

/* Tab Content */
.tabs-content-container {
  background: rgba(124, 58, 237, 0.02);
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: 24px;
  padding: 32px;
}

.tab-pane {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
  display: flex;
}

.session-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  min-height: 380px;
}

.session-card__visual {
  width: 380px;
  flex-shrink: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.session-card__visual--padded {
  padding: 72px;
}

.session-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.session-card__content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.session-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--purple-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.session-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.session-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.session-card__list li {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.session-card__list li::before {
  content: '•';
  color: var(--purple-500);
  font-size: 1.2rem;
  line-height: 1;
  margin-right: 8px;
  margin-top: -2px;
}

.session-card__takeaway {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin-top: auto;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TOOL GRID
   ============================================ */
.tools-grid-container {
  background: #f8fafc;
  padding: 64px 40px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 40px 16px;
  justify-items: center;
}

.tool-card {
  text-align: center;
  background: transparent;
  box-shadow: none;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
}

.tool-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.tool-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  padding: 8px;
  transition: transform var(--transition-fast, 0.2s) ease;
}

.tool-card:hover .tool-card__icon img {
  transform: scale(1.1);
}

.tool-card__name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.2;
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-date-card {
  background: linear-gradient(135deg, #141416 0%, #1c1326 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(124, 58, 237, 0.08);
  flex-wrap: wrap;
  gap: 24px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  position: relative;
  overflow: hidden;
}

.schedule-date-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 60%);
  pointer-events: none;
}

.schedule-date-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.schedule-date-card__label {
  font-size: 0.85rem;
  color: var(--purple-300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.schedule-date-card__date {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.01em;
}

.schedule-list {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.02);
  padding: 8px;
  display: flex;
  flex-direction: column;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-radius: 16px;
  background: transparent;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  flex-wrap: nowrap;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row:hover {
  background: #f8fafc;
  transform: translateX(4px);
}

.schedule-row__day {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-start;
}

.schedule-row__badge {
  background: rgba(124, 58, 237, 0.06);
  color: var(--purple-600);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.schedule-row__day strong {
  font-family: var(--font-heading);
  color: var(--gray-900);
  font-size: 1.05rem;
  font-weight: 600;
}

.schedule-row__date {
  color: var(--gray-500);
  font-size: 0.95rem;
  flex: 1;
  text-align: center;
}

.schedule-row__slots {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}

.slot-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.slot-badge--morning {
  color: var(--gray-700);
}

.slot-badge--morning svg {
  color: #f59e0b;
}

.slot-badge--evening {
  color: var(--gray-700);
}

.slot-badge--evening svg {
  color: var(--purple-600);
}

/* ============================================
   FEATURE SPLIT CARD (Recognition & Support)
   ============================================ */
.feature-split-card {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-100);
}

.feature-split-card__image {
  flex: 1;
  min-width: 400px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.feature-split-card__image > img {
  max-width: 380px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

/* Support Interactive Container Overrides */
#support-image-container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  align-self: stretch;
}

/* Horizontal Slide Animation Container */
.support-img-track {
  display: flex;
  width: 400%; /* 4 slides (including clone), 100% each of the parent container */
  height: 100%;
  flex-shrink: 0; /* Prevent flexbox from squishing the track */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Premium smooth slide */
}

.support-img-slide {
  width: 25%; /* 1/4 of track */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.support-img-slide img {
  width: 100%;
  max-width: 380px;
  max-height: 380px;
  object-fit: contain;
}

.feature-split-card__content {
  flex: 1;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-list-item__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-top: 2px;
}

.feature-list-item__text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.feature-list-item__text p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.support-feature-btn {
  padding: 16px 24px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  margin: -8px -24px; /* Fix vertical overlap while keeping left/right alignment */
}

.support-feature-btn .feature-list-item__icon {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.support-feature-btn:hover {
  background: rgba(0, 0, 0, 0.02);
}

.support-feature-btn--active {
  background: #f3f4f6;
}

.support-feature-btn--active .feature-list-item__icon {
  color: #10b981;
}



@media (max-width: 800px) {
  .feature-split-card {
    flex-direction: column;
  }
  .feature-split-card__image {
    min-width: 100%;
    padding: 24px;
  }
  #support-image-container {
    height: 280px;
    width: 100%;
    align-self: center;
  }
  .support-img-slide {
    padding: 20px;
  }
  .feature-split-card__content {
    padding: 32px 24px;
  }
  .support-feature-btn {
    margin: -16px;
    padding: 16px;
  }
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.founder-grid__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--purple-400);
  filter: blur(120px);
  opacity: 0.15;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

.founder__portrait {
  width: 320px;
  height: 400px;
  border-radius: 24px;
  background: var(--gradient-cta);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(124, 58, 237, 0.15);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.founder__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.founder__content {
  max-width: 600px;
  position: relative;
}

.founder__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple-600);
  margin-bottom: 12px;
  background: rgba(124, 58, 237, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
}

.founder__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.founder__credentials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.founder__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.founder__badge svg {
  color: var(--purple-500);
}

.founder__bio {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.founder__quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.6;
  letter-spacing: -0.01em;
  position: relative;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 16px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 12px 24px rgba(0,0,0,0.03);
}

.founder__quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 900;
  color: var(--purple-100);
  z-index: 0;
  line-height: 1;
}

.founder__quote span {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   TRUST & IMPACT (SOCIAL PROOF)
   ============================================ */
.section--trust-premium {
  background: radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
              #fafaff; /* Premium soft technical light violet-tint background */
  padding: 100px 0;
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  position: relative;
}

.section--trust-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

.section-header__eyebrow--trust {
  color: var(--purple-600);
  background: var(--white);
  border: 1px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
  padding: 6px 18px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.stats-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.stat-premium-card {
  position: relative;
  text-align: center;
  padding: 44px 28px 36px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(124, 58, 237, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015), 0 2px 4px rgba(124, 58, 237, 0.01);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  overflow: hidden;
}

.stat-premium-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-500), var(--indigo-500));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.stat-premium-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
  border-color: rgba(124, 58, 237, 0.2);
}

.stat-premium-card:hover::after {
  opacity: 1;
}

.stat-premium-card__icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.05);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.4s var(--ease-out), background-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

.stat-premium-card:hover .stat-premium-card__icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--purple-500);
  color: var(--white);
}

.stat-premium__number {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-premium-card:nth-child(1) .stat-premium__number {
  background-image: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-800) 100%);
}

.stat-premium-card:nth-child(2) .stat-premium__number {
  background-image: linear-gradient(135deg, var(--indigo-500) 0%, var(--purple-600) 100%);
}

.stat-premium-card:nth-child(3) .stat-premium__number {
  background-image: linear-gradient(135deg, var(--purple-500) 0%, var(--indigo-600) 100%);
}

.stat-premium-card:nth-child(4) .stat-premium__number {
  background-image: linear-gradient(135deg, var(--purple-600) 0%, var(--indigo-500) 100%);
}

.stat-premium__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .stats-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }
}

@media (max-width: 600px) {
  .stats-premium-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stat-premium__number {
    font-size: 2.35rem;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
/* ============================================
   THE BIGGER PICTURE (WHY THIS CAMP MATTERS)
   ============================================ */
.section--why {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--gray-100);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(124, 58, 237, 0.05);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  position: relative;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.15);
}

.why-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.why-card__source {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 4px 10px;
  border-radius: 6px;
}

.why-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.04);
  color: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.why-card:hover .why-card__icon {
  background: var(--purple-500);
  color: var(--white);
}

.why-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.why-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-card {
    padding: 28px 20px;
  }
}
/* ============================================
   FREQUENTLY ASKED QUESTIONS (FAQ)
   ============================================ */
.section--faq {
  background: radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.02) 0%, transparent 40%),
              #ffffff;
  padding: 100px 0;
  border-top: 1px solid var(--gray-100);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(124, 58, 237, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.18);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.04);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.06);
  background: var(--white);
  transform: translateY(0);
}

.faq-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--gray-900);
  cursor: pointer;
  outline: none;
  font-family: inherit;
}

.faq-item__question {
  font-size: 1.15rem;
  font-weight: 700;
  padding-right: 28px;
  font-family: var(--font-heading);
  color: var(--gray-800);
  transition: color 0.3s ease;
}

.faq-item:hover .faq-item__question {
  color: var(--purple-700);
}

.faq-item.active .faq-item__question {
  color: var(--purple-600);
}

.faq-item__trigger-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover .faq-item__trigger-btn {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.15);
  color: var(--purple-700);
}

.faq-item.active .faq-item__trigger-btn {
  background: var(--purple-600);
  border-color: var(--purple-600);
  color: var(--white);
}

.faq-item__icon-svg {
  transition: transform 0.4s var(--ease-out);
}

.faq-item.active .faq-item__icon-svg {
  transform: rotate(180deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item__content {
  padding: 0 28px 28px 28px;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.98rem;
}

@media (max-width: 600px) {
  .faq-item__header {
    padding: 20px;
  }
  .faq-item__question {
    font-size: 1rem;
    padding-right: 16px;
  }
  .faq-item__content {
    padding: 0 20px 20px 20px;
    font-size: 0.92rem;
  }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--purple-50) 0%, #ffffff 100%);
  border-top: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Background ambient glows */
.final-cta__glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  z-index: 0;
  pointer-events: none;
}

.final-cta__glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  z-index: 0;
  pointer-events: none;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-200), transparent);
}

.final-cta__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta__left-col {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow label */
.final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(124, 58, 237, 0.08);
  color: var(--purple-700);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.final-cta__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Text gradient utility */
.text-gradient {
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--indigo-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta__subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.65;
}

.final-cta__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Upgraded button with icon */
.btn--outline-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--purple-600);
  color: var(--purple-600);
  transition: all 0.3s var(--ease-out);
}

.btn--outline-purple:hover {
  background: rgba(124, 58, 237, 0.04);
  color: var(--purple-700);
  border-color: var(--purple-700);
  transform: translateY(-2px);
}

.btn-icon {
  transition: transform 0.3s var(--ease-out);
}

.btn--outline-purple:hover .btn-icon {
  transform: translateY(2px);
}

/* Guarantee Box */
.final-cta__guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-600);
  background: rgba(124, 58, 237, 0.03);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(124, 58, 237, 0.15);
  max-width: max-content;
}

.guarantee-icon {
  color: var(--purple-500);
  flex-shrink: 0;
}

/* Right Column: Contact Card */
.final-cta__right-col {
  display: flex;
  justify-content: center;
  width: 100%;
}

.final-cta__contact-card {
  background: var(--white);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.final-cta__contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Admissions Counselors Header */
.mentor-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.mentor-card__avatar-group {
  display: flex;
  position: relative;
  align-items: center;
}

.mentor-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.mentor-card__avatar--1 {
  background: var(--purple-600);
  z-index: 2;
}

.mentor-card__avatar--2 {
  background: var(--indigo-500);
  margin-left: -12px;
  z-index: 1;
}

.mentor-card__status-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border: 2px solid var(--white);
  border-radius: 50%;
  position: absolute;
  bottom: -2px;
  right: -2px;
  z-index: 3;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.mentor-card__meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mentor-card__status-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.mentor-card__response-time {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.final-cta__contact-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gray-900);
  margin-bottom: 8px;
  text-align: left;
}

.final-cta__contact-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.5;
  text-align: left;
}

.final-cta__contact-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-cta__contact-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-sizing: border-box;
}

.contact-icon {
  color: var(--purple-500);
  flex-shrink: 0;
  transition: color 0.3s var(--ease-out);
}

.badge-arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease-out);
  color: inherit;
}

.final-cta__contact-badge:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.final-cta__contact-badge:hover .badge-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Individual badge hovers */
.phone-badge:hover {
  background: var(--purple-50);
  border-color: var(--purple-200);
  color: var(--purple-700);
}

.whatsapp-badge:hover {
  background: #eafaf1;
  border-color: #c2f0d5;
  color: #1a8a47;
}

.whatsapp-badge:hover .contact-icon {
  color: #25D366;
}

.email-badge:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #3730a3;
}

.email-badge:hover .contact-icon {
  color: #4f46e5;
}

.web-badge:hover {
  background: #faf5ff;
  border-color: #f3e8ff;
  color: #6b21a8;
}

.web-badge:hover .contact-icon {
  color: #9333ea;
}

@media (max-width: 992px) {
  .final-cta__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .final-cta__left-col,
  .final-cta__right-col {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .final-cta__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta__buttons {
    justify-content: center;
  }
  .final-cta__guarantee {
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta__contact-card {
    max-width: 100%;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 60px 0 40px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo {
  display: inline-flex;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.footer__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.footer__social-btn:hover {
  background: var(--purple-600);
  border-color: var(--purple-600);
  color: var(--white);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.footer__social-icon {
  display: block;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--gray-600);
  transition: color 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.footer__links a:hover {
  color: var(--purple-600);
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }
  .footer__brand {
    align-items: center;
  }
  .footer__socials {
    justify-content: center;
  }
  .footer__links {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    max-width: 500px;
    margin: 0 auto;
    order: -1;
  }

  /* Scale down hero assets on tablet */
  .hero__mascot--dino {
    width: 80px;
    bottom: -25px;
    left: -20px;
  }

  .hero__float {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .overview-card {
    width: calc(50% - 12px);
  }

  .session-card {
    flex-direction: column;
    min-height: auto;
  }
  .session-card__visual {
    width: 100%;
    height: 240px;
  }
  .tabs-content-container {
    min-height: auto;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .founder__portrait {
    margin: 0 auto;
    width: 260px;
    height: 300px;
  }

  .founder__content {
    margin: 0 auto;
  }

  .founder__quote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--purple-300);
    padding-top: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav__links {
    display: none;
  }

  .nav__cta .btn--secondary,
  .nav__cta .btn--outline-white {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }
}

/* Tablet & Mobile Curriculum Tabs and Schedule Row Stack */
@media (max-width: 768px) {
  /* Scrollable tabs instead of vertical block stack */
  .tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding: 6px;
    scrollbar-width: none;
    border-radius: 16px;
  }
  
  .tabs-nav::-webkit-scrollbar {
    display: none;
  }
  
  .tab-btn {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    height: auto;
    padding: 10px 16px;
    gap: 8px;
    border-radius: 10px;
  }
  
  .tab-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }
  
  .tab-icon svg {
    width: 15px;
    height: 15px;
  }

  .tab-text span {
    display: none; /* Hide description for sleek horizontal list */
  }

  .tab-text strong {
    font-size: 0.85rem;
    margin-bottom: 0;
  }

  /* Schedule Stack */
  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
  }
  
  .schedule-row__day {
    width: 100%;
  }
  
  .schedule-row__date {
    width: 100%;
    text-align: left;
    padding-left: 0;
    margin-top: -4px;
    margin-bottom: 4px;
    font-size: 0.9rem;
  }
  
  .schedule-row__slots {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 4px;
  }

  .session-card__visual {
    height: 200px;
  }

  .session-card__visual--padded {
    padding: 20px;
  }

  /* Slot badges stack on smaller tablets */
  .slot-badge {
    font-size: 0.85rem;
  }

  /* Schedule date card tighter */
  .schedule-date-card {
    padding: 24px 28px;
  }

  .schedule-date-card__date {
    font-size: 1.45rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-py: 60px;
    --section-px: 16px;
  }

  /* --- HERO MOBILE OVERHAUL --- */
  .hero {
    padding: 100px 0 48px;
    min-height: auto;
  }

  .hero__top {
    margin-bottom: 20px;
  }

  .hero__eyebrow-script {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .hero__eyebrow-bold {
    font-size: 1.1rem;
  }

  .hero__top-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero__left-title {
    font-size: 1.35rem;
  }

  .hero__left-subtitle {
    font-size: 0.88rem;
    margin-bottom: 12px;
  }

  .hero__badge .badge--outline {
    font-size: 0.75rem;
    padding: 6px 12px;
    gap: 6px;
  }

  .hero__list li {
    font-size: 0.88rem;
    gap: 8px;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero__link {
    font-size: 0.88rem;
    text-align: center;
    display: block;
  }

  /* Hero video area mobile */
  .hero__visual {
    max-width: 90%;
    width: 100%;
    margin: 0 auto 24px;
  }

  .hero__video-wrapper {
    border-radius: 16px;
  }

  .hero__video-wrapper video,
  .hero__video-wrapper iframe {
    border-radius: 16px;
  }

  .hero__play-btn {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    padding-left: 4px;
  }

  .hero__mascot--dino {
    width: 55px;
    bottom: -16px;
    left: -10px;
  }

  .hero__float {
    padding: 6px 10px;
    font-size: 0.72rem;
    border-radius: 10px;
  }

  /* --- BUTTONS MOBILE --- */
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .btn--large {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .btn--small {
    padding: 8px 18px;
    font-size: 0.82rem;
  }

  /* Reduce pulse animation on mobile for performance */
  .btn--primary {
    animation: none;
  }

  /* --- SECTION HEADERS MOBILE --- */
  .section-header {
    margin-bottom: 32px;
  }

  .section-header__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .section-header__subtitle {
    font-size: 0.92rem;
  }

  .section-header__eyebrow {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  /* --- OVERVIEW CARDS MOBILE --- */
  .overview-card {
    width: 100%;
    padding: 18px 20px;
  }

  .overview-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .overview-card__title {
    font-size: 0.95rem;
  }

  .overview-card__desc {
    font-size: 0.82rem;
  }

  /* --- LEARNING TABS MOBILE --- */
  .tab-btn {
    min-width: max-content;
  }

  .tabs-content-container {
    padding: 14px;
    border-radius: 16px;
  }

  .session-card {
    border-radius: 12px;
  }

  .session-card__visual {
    height: 180px;
  }

  .session-card__visual--padded {
    padding: 16px;
  }

  .session-card__content {
    padding: 18px;
  }

  .session-card__badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    margin-bottom: 10px;
  }

  .session-card__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .session-card__list li {
    font-size: 0.82rem;
    padding-left: 14px;
  }

  .session-card__takeaway {
    font-size: 0.8rem;
    padding: 12px 14px;
  }

  /* --- TOOLS GRID MOBILE --- */
  .tools-grid-container {
    padding: 28px 16px;
    border-radius: 16px;
  }

  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 8px;
  }

  .tool-card {
    width: 100%;
    max-width: none;
  }

  .tool-card__icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 6px;
    border-radius: 12px;
  }

  .tool-card__name {
    font-size: 0.7rem;
  }

  /* --- SCHEDULE MOBILE --- */
  .schedule-date-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    border-radius: 18px;
    gap: 16px;
  }

  .schedule-date-card__info {
    align-items: center;
  }

  .schedule-date-card__date {
    font-size: 1.3rem;
  }

  .schedule-date-card__label {
    font-size: 0.78rem;
  }

  .schedule-list {
    border-radius: 18px;
  }

  .schedule-row {
    padding: 16px;
    gap: 8px;
  }

  .schedule-row__badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .schedule-row__day strong {
    font-size: 0.92rem;
  }

  .schedule-row__date {
    font-size: 0.82rem;
  }

  .slot-badge {
    font-size: 0.82rem;
    gap: 6px;
  }

  .slot-badge svg {
    width: 14px;
    height: 14px;
  }

  /* --- FEATURE SPLIT CARD MOBILE --- */
  .feature-split-card {
    border-radius: 18px;
  }

  .feature-split-card__image {
    min-width: 100%;
    padding: 20px;
  }

  .feature-split-card__image > img {
    max-width: 100%;
  }

  .feature-split-card__content {
    padding: 24px 18px;
    gap: 20px;
  }

  .feature-list-item__text h3 {
    font-size: 1rem;
  }

  .feature-list-item__text p {
    font-size: 0.85rem;
  }

  .support-feature-btn {
    padding: 12px 16px;
    margin: -4px -16px;
    border-radius: 12px;
  }

  #support-image-container {
    height: 240px;
  }

  .support-img-slide {
    padding: 16px;
  }

  .support-img-slide img {
    max-width: 260px;
    max-height: 240px;
  }

  /* --- FOUNDER MOBILE --- */
  .founder__portrait {
    width: 200px;
    height: 240px;
    border-radius: 20px;
  }

  .founder__name {
    font-size: 1.6rem;
  }

  .founder__tag {
    font-size: 0.78rem;
    padding: 5px 12px;
  }

  .founder__credentials {
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
  }

  .founder__badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .founder__bio {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .founder__quote {
    padding: 18px;
    font-size: 1rem;
    border-radius: 14px;
  }

  .founder__quote::before {
    font-size: 4rem;
    top: -12px;
    left: 6px;
  }

  /* --- TRUST / STATS MOBILE --- */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* --- WHY GRID MOBILE --- */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .why-card__number {
    font-size: 2rem;
  }

  .why-card__text {
    font-size: 0.88rem;
  }

  /* --- FAQ MOBILE --- */
  .faq-item {
    border-radius: 14px;
  }

  .faq-item__header {
    padding: 18px 16px;
  }

  .faq-item__question {
    font-size: 0.95rem;
    padding-right: 12px;
  }

  .faq-item__trigger-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .faq-item__content {
    padding: 0 16px 18px 16px;
    font-size: 0.88rem;
  }

  /* --- TESTIMONIALS MOBILE --- */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* --- RECOGNITION GRID MOBILE --- */
  .recognition-grid {
    grid-template-columns: 1fr;
  }

  /* --- FINAL CTA MOBILE --- */
  .final-cta {
    padding: 60px 0;
  }

  .final-cta__grid {
    gap: 36px;
  }

  .final-cta__title {
    font-size: 1.5rem;
  }

  .final-cta__subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .final-cta__buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }

  .final-cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .final-cta__contact-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .final-cta__contact-title {
    font-size: 1.15rem;
  }

  .final-cta__contact-desc {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .final-cta__contact-badge {
    padding: 12px 16px;
    font-size: 0.88rem;
    border-radius: 10px;
  }

  .final-cta__guarantee {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px;
    font-size: 0.8rem;
  }

  .mentor-card__header {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .mentor-card__status-text {
    font-size: 0.82rem;
  }

  .mentor-card__response-time {
    font-size: 0.7rem;
  }

  /* --- FOOTER MOBILE --- */
  .footer {
    padding: 40px 0 28px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__links {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .footer__links a {
    font-size: 0.82rem;
  }

  .footer__copy {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (≤480px) — tight viewport cleanup */
@media (max-width: 480px) {
  .hero__float {
    display: none; /* Hide floating tags to prevent edge overflow */
  }

  .hero__top-title {
    font-size: 1.3rem;
  }

  .hero__left-title {
    font-size: 1.2rem;
  }

  .hero__eyebrow-script {
    font-size: 1rem;
  }

  .hero__eyebrow-bold {
    font-size: 0.95rem;
  }

  /* 3-column tools grid for very small screens */
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 6px;
  }

  .tool-card__icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .tool-card__name {
    font-size: 0.65rem;
  }

  /* Stats cards more compact */
  .stat-premium-card {
    padding: 32px 20px 28px;
  }

  .stat-premium__number {
    font-size: 2rem;
  }

  /* Schedule even tighter */
  .schedule-row {
    padding: 14px 12px;
  }

  .slot-badge {
    font-size: 0.78rem;
  }

  /* FAQ more compact */
  .faq-item__header {
    padding: 16px 14px;
  }

  .faq-item__question {
    font-size: 0.9rem;
  }

  .faq-item__content {
    padding: 0 14px 16px 14px;
    font-size: 0.85rem;
  }

  /* Tabs even more compact */
  .tab-btn {
    padding: 8px 12px;
    gap: 6px;
  }

  .tab-text strong {
    font-size: 0.78rem;
  }

  .tab-icon {
    width: 26px;
    height: 26px;
  }

  .tab-icon svg {
    width: 13px;
    height: 13px;
  }

  /* Session cards */
  .session-card__visual {
    height: 160px;
  }

  .session-card__content {
    padding: 16px;
  }

  .session-card__title {
    font-size: 1rem;
  }

  .session-card__list li {
    font-size: 0.78rem;
  }

  /* Support section */
  #support-image-container {
    height: 200px;
  }

  .support-img-slide {
    padding: 12px;
  }

  .support-img-slide img {
    max-width: 220px;
    max-height: 200px;
  }

  .feature-split-card__content {
    padding: 20px 14px;
    gap: 16px;
  }

  .feature-list-item__text h3 {
    font-size: 0.92rem;
  }

  .feature-list-item__text p {
    font-size: 0.8rem;
  }

  /* Founder */
  .founder__portrait {
    width: 180px;
    height: 210px;
    border-radius: 16px;
  }

  .founder__name {
    font-size: 1.4rem;
  }

  .founder__bio {
    font-size: 0.85rem;
  }

  .founder__quote {
    padding: 14px;
    font-size: 0.92rem;
  }

  /* Why cards */
  .why-card__number {
    font-size: 1.8rem;
  }

  .why-card__text {
    font-size: 0.82rem;
  }

  /* Final CTA */
  .final-cta__title {
    font-size: 1.3rem;
  }

  .final-cta__subtitle {
    font-size: 0.9rem;
  }

  .final-cta__buttons {
    max-width: 100%;
  }

  .final-cta__contact-card {
    padding: 20px 14px;
  }

  .final-cta__contact-badge {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
}

/* Extremely small screens (≤360px) — prevent any overflow */
@media (max-width: 360px) {
  :root {
    --section-px: 12px;
  }

  .hero {
    padding: 90px 0 40px;
  }

  .hero__top-title {
    font-size: 1.15rem;
  }

  .hero__left-title {
    font-size: 1.1rem;
  }

  .hero__badge .badge--outline {
    font-size: 0.68rem;
    padding: 5px 10px;
  }

  .hero__list li {
    font-size: 0.82rem;
  }

  .nav__inner {
    height: 60px;
  }

  .nav__mobile-menu {
    top: 60px;
  }

  .nav__logo-img {
    height: 26px !important;
  }

  .section-header__title {
    font-size: 1.3rem;
  }

  .overview-card {
    padding: 14px 16px;
  }

  .overview-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .schedule-date-card {
    padding: 16px;
  }

  .schedule-date-card__date {
    font-size: 1.15rem;
  }

  .btn--large {
    padding: 12px 20px;
    font-size: 0.88rem;
  }
}

/* ============================================
   MOBILE NAVIGATION POLISH
   ============================================ */
@media (max-width: 1024px) {
  .nav__mobile-menu {
    border-bottom: 1px solid var(--gray-200);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav__mobile-menu a:not(.btn) {
    padding: 14px 0;
    font-size: 1rem;
  }

  .nav__mobile-menu .btn {
    margin-top: 8px;
    padding: 14px 24px;
  }
}

/* ============================================
   MOBILE TOUCH & PERFORMANCE OPTIMIZATIONS
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover transforms on touch devices for better perf */
  .card:hover,
  .overview-card:hover,
  .tool-card:hover,
  .stat-premium-card:hover,
  .why-card:hover,
  .faq-item:hover,
  .schedule-row:hover {
    transform: none;
  }

  /* Ensure tap targets are at least 44px */
  .tab-btn {
    min-height: 44px;
  }

  .faq-item__header {
    min-height: 52px;
  }

  .nav__mobile-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .final-cta__contact-badge {
    min-height: 48px;
  }

  .footer__social-btn {
    width: 44px;
    height: 44px;
  }

  /* Reduce heavy animations for battery/performance */
  .hero__mascot {
    animation: none;
  }

  .founder__portrait {
    animation: none;
  }

  .badge__dot::after {
    animation: none;
  }
}

/* ============================================
   SAFE AREA / NOTCH SUPPORT
   ============================================ */
@supports (padding: env(safe-area-inset-bottom)) {
  .nav {
    padding-left: max(var(--section-px), env(safe-area-inset-left));
    padding-right: max(var(--section-px), env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .container {
    padding-left: max(var(--section-px), env(safe-area-inset-left));
    padding-right: max(var(--section-px), env(safe-area-inset-right));
  }
}

/* ============================================
   VERSION 1.1 ADDITIONS
   ============================================ */

/* Subtle Pricing in Hero */
.hero__pricing-subtle {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 6px 0 18px;
}

.hero__price-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple-600);
}

.hero__price-seats {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--indigo-600);
  background: rgba(99, 102, 241, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Social proof below Hero headline */
.hero__top-social-proof {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-top: 10px;
  font-weight: 500;
}

.hero__top-social-proof strong {
  color: var(--purple-600);
  font-weight: 700;
}

/* Trust note below Hero CTA buttons */
.hero__cta-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 12px;
  font-weight: 600;
}

.hero__cta-trust .trust-icon {
  color: var(--success);
  font-weight: 800;
}

/* Curriculum brochure supporting text */
.brochure-support-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 8px;
  font-weight: 500;
}

/* Final CTA Pricing */
.final-cta__pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  text-align: left;
}

.final-cta__price {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--purple-600);
}

.final-cta__pricing-note {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--indigo-600);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Accepted Payment Methods card area */
.final-cta__payment-methods {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  text-align: left;
}

.payment-methods__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.payment-methods__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-methods__list li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}

.payment-methods__list li::before {
  content: "•";
  color: var(--purple-500);
  font-weight: bold;
}

/* Sticky Mobile Button */
.sticky-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
    border-top: 1px solid var(--gray-200);
  }

  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    .sticky-mobile-cta {
      padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
  }

  .sticky-mobile-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Add bottom padding to body to prevent sticky CTA overlay on footer contents */
  body {
    padding-bottom: 80px;
  }
}
