/* ==========================================
   EaseTuitions × TeachSA — FINAL + LOADER
   ========================================== */

:root {
  --bg-white: #FFFFFF; --bg-hero: #0B1628;
  --bg-subjects: #EDE7F6; --bg-programmes: #E8F5E9; --bg-how: #FFF3E0;
  --bg-services: #E3F2FD; --bg-pricing: #E8EAF6; --bg-duration: #F3E5F5;
  --bg-contact: #FFF3E0;
  --green-deep: #2E7D32; --green-mid: #43A047; --green-bright: #66BB6A;
  --green-bold: #388E3C; --green-bg: #C8E6C9; --green-bg-light: #E8F5E9;
  --green-border: rgba(56,142,60,0.25);
  --blue-deep: #1565C0; --blue-mid: #1E88E5; --blue-bright: #42A5F5;
  --blue-bold: #1976D2; --blue-bg: #BBDEFB; --blue-bg-light: #E3F2FD;
  --blue-border: rgba(25,118,210,0.25);
  --text-dark: #0F1D33; --text-mid: #3D5068; --text-muted: #7A8DA4;
  --border: rgba(0,40,100,0.08);
  --shadow-sm: 0 2px 8px rgba(0,40,100,0.05);
  --shadow-fun: 0 10px 36px rgba(0,60,140,0.1);
  --radius-sm: 12px; --radius-md: 18px; --radius-lg: 24px;
  --max-content: 1200px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--bg-hero); color: var(--text-dark); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ==========================================
   LOADER OVERLAY
   ========================================== */
.loader-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-hero);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-overlay.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { display: flex; flex-direction: column; align-items: center; gap: 28px; }

.loader-brand { text-align: center; animation: fadeInDown 0.8s ease-out; }
.loader-logo {
  width: 72px; height: 72px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--green-bold), var(--blue-bold));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 26px; color: white;
  box-shadow: 0 8px 32px rgba(56,142,60,0.35), 0 0 60px rgba(56,142,60,0.15);
}
.loader-brand-name {
  font-family: 'Baloo 2', cursive; font-size: 42px; font-weight: 800;
  color: var(--green-bright); line-height: 1.1;
  text-shadow: 0 0 40px rgba(102,187,106,0.2);
}
.loader-brand-partner {
  font-family: 'Baloo 2', cursive; font-size: 20px; font-weight: 700;
  color: var(--blue-bright); margin-top: -2px;
  opacity: 0; animation: fadeInUp 0.6s ease-out 0.3s forwards;
}
.loader-brand-tagline {
  font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 700;
  margin-top: 8px; letter-spacing: 1px;
  opacity: 0; animation: fadeInUp 0.5s ease-out 0.5s forwards;
}

/* Book */
.loader-scene { width: 180px; height: 230px; perspective: 1600px; transform: translateX(90px); }
.loader-book { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; animation: lbOpen 0.7s ease-out forwards; }
@keyframes lbOpen { 0% { transform: rotateY(0) rotateX(3deg); } 100% { transform: rotateY(-16deg) rotateX(3deg); } }

.lb-back { position: absolute; width: 100%; height: 100%; background: linear-gradient(160deg, #1565C0, #1976D2); border-radius: 3px 10px 10px 3px; box-shadow: 0 14px 40px rgba(0,0,0,0.5); transform: translateZ(-2px); }
.lb-back::after { content: ''; position: absolute; left: 0; top: 0; width: 14px; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.2), transparent); border-radius: 3px 0 0 3px; }
.lb-spine { position: absolute; left: -10px; top: 0; width: 11px; height: 100%; background: linear-gradient(180deg, #0D47A1, #1565C0); transform: rotateY(90deg); transform-origin: right; border-radius: 3px 0 0 3px; }

.lb-cover { position: absolute; width: 100%; height: 100%; background: linear-gradient(160deg, #2E7D32, #43A047); border-radius: 3px 10px 10px 3px; transform-origin: left; transform-style: preserve-3d; animation: lbCoverOpen 0.7s ease-out forwards; z-index: 50; box-shadow: 2px 0 6px rgba(0,0,0,0.15); }
@keyframes lbCoverOpen { 0% { transform: rotateY(0); } 100% { transform: rotateY(-155deg); } }
.lb-cover-f { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 3px 10px 10px 3px; display: flex; align-items: center; justify-content: center; color: white; }
.lb-cover-f::after { content: ''; position: absolute; inset: 7px; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 3px 8px 8px 3px; pointer-events: none; }
.lb-cover-icon { font-size: 40px; }
.lb-cover-b { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; transform: rotateY(180deg); background: #F5F0E8; border-radius: 3px 10px 10px 3px; }

/* Pages */
.lb-page { position: absolute; width: calc(100% - 4px); height: calc(100% - 4px); top: 2px; left: 2px; border-radius: 2px 8px 8px 2px; transform-origin: left; transform-style: preserve-3d; }
.lb-pf, .lb-pb { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 2px 8px 8px 2px; display: flex; align-items: center; justify-content: center; }
.lb-pf { background: #FEFCF8; }
.lb-pb { background: #FAF6EE; transform: rotateY(180deg); }
.lb-pf::before, .lb-pb::before { content: ''; position: absolute; top: 12%; left: 8%; right: 8%; bottom: 12%; background-image: repeating-linear-gradient(to bottom, transparent, transparent 10px, rgba(0,0,0,0.08) 10px, rgba(0,0,0,0.08) 11px); pointer-events: none; }
.lb-page::before { content: ''; position: absolute; left: 0; top: 0; width: 16px; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.06), transparent); border-radius: 2px 0 0 2px; pointer-events: none; z-index: 2; }
.lb-pt { font-family: 'Baloo 2', cursive; font-size: 16px; font-weight: 800; color: rgba(0,0,0,0.15); letter-spacing: 3px; text-transform: uppercase; position: relative; z-index: 1; }
.lb-page:nth-child(even) .lb-pf { background: #FDFAF4; }
.lb-page:nth-child(3n+1) .lb-pf { background: #FFFDF8; }

@keyframes lbFlip { 0% { transform: rotateY(0); } 100% { transform: rotateY(-155deg); } }

.lb-page { --s: 0.45s; }
.lb-page:nth-child(8)   { z-index:40; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 0.8s forwards; }
.lb-page:nth-child(9)   { z-index:39; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 1.0s forwards; }
.lb-page:nth-child(10)  { z-index:38; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 1.2s forwards; }
.lb-page:nth-child(11)  { z-index:37; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 1.4s forwards; }
.lb-page:nth-child(12)  { z-index:36; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 1.6s forwards; }
.lb-page:nth-child(13)  { z-index:35; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 1.8s forwards; }
.lb-page:nth-child(14)  { z-index:34; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 2.0s forwards; }
.lb-page:nth-child(15)  { z-index:33; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 2.2s forwards; }
.lb-page:nth-child(16)  { z-index:32; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 2.4s forwards; }
.lb-page:nth-child(17)  { z-index:31; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 2.6s forwards; }
.lb-page:nth-child(18)  { z-index:30; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 2.8s forwards; }
.lb-page:nth-child(19)  { z-index:29; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 3.0s forwards; }
.lb-page:nth-child(20)  { z-index:28; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 3.2s forwards; }
.lb-page:nth-child(21)  { z-index:27; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 3.4s forwards; }
.lb-page:nth-child(22)  { z-index:26; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 3.6s forwards; }
.lb-page:nth-child(23)  { z-index:25; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 3.8s forwards; }
.lb-page:nth-child(24)  { z-index:24; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 4.0s forwards; }
.lb-page:nth-child(25)  { z-index:23; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 4.2s forwards; }
.lb-page:nth-child(26)  { z-index:22; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 4.4s forwards; }
.lb-page:nth-child(27)  { z-index:21; animation: lbFlip var(--s) cubic-bezier(.4,0,.2,1) 4.6s forwards; }

/* Done page */
.lb-done { position: absolute; width: calc(100% - 4px); height: calc(100% - 4px); top: 2px; left: 2px; border-radius: 2px 8px 8px 2px; background: #FEFCF8; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.lb-done::before { content: ''; position: absolute; top: 15%; left: 10%; right: 10%; bottom: 15%; background-image: repeating-linear-gradient(to bottom, transparent, transparent 10px, rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 11px); pointer-events: none; }
.lb-done-emoji { font-size: 32px; position: relative; z-index: 1; opacity: 0; animation: lbDoneIn 0.4s ease-out 4.9s forwards; }
.lb-done-text { font-family: 'Baloo 2', cursive; font-size: 24px; font-weight: 800; color: var(--green-deep); position: relative; z-index: 1; opacity: 0; animation: lbDoneIn 0.4s ease-out 5.0s forwards; }
@keyframes lbDoneIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Stack */
.lb-stack { position: absolute; width: calc(100% - 4px); height: calc(100% - 4px); top: 2px; left: 2px; border-radius: 2px 8px 8px 2px; transform-origin: left; }
.lb-stack:nth-child(4) { background: #F5F2EB; z-index: 4; transform: rotateY(-0.5deg); }
.lb-stack:nth-child(5) { background: #F2EFE8; z-index: 3; transform: rotateY(-1deg); }
.lb-stack:nth-child(6) { background: #EFECE5; z-index: 2; transform: rotateY(-1.5deg); }
.lb-stack:nth-child(7) { background: #ECE9E2; z-index: 1; transform: rotateY(-2deg); }

/* Status text */
.loader-status { font-family: 'Baloo 2', cursive; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.4); animation: lbPulse 1s ease-in-out infinite; }
@keyframes lbPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.85; } }
.loader-dots::after { content: ''; animation: lbDots 1.5s steps(3) infinite; }
@keyframes lbDots { 0% { content: ''; } 33% { content: '.'; } 66% { content: '..'; } 100% { content: '...'; } }

/* Site wrapper — hidden until loader done */
.site-wrapper { opacity: 0; transition: opacity 0.6s ease; }
.site-wrapper.visible { opacity: 1; }

/* ==========================================
   NAV
   ========================================== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 12px 40px; display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(16px); background: rgba(255,255,255,0.92); border-bottom: 1px solid var(--border); transition: all 0.3s; }
nav.scrolled { box-shadow: 0 6px 24px rgba(0,40,100,0.07); }
.nav-brand { display: flex; align-items: center; gap: 10px; z-index: 200; position: relative; }
.nav-logo { width: 40px; height: 40px; background: linear-gradient(135deg, var(--green-bold), var(--blue-bold)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 15px; color: white; }
.nav-brand-text { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 19px; }
.nav-brand-text span { color: var(--text-muted); font-weight: 500; margin: 0 5px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-size: 14px; font-weight: 700; transition: color 0.3s; }
.nav-links a:hover { color: var(--green-deep); }
.nav-cta { background: linear-gradient(135deg, var(--green-mid), var(--green-bright)); color: white !important; padding: 10px 22px; border-radius: 50px; font-weight: 800 !important; box-shadow: 0 4px 16px rgba(56,142,60,0.25); transition: all 0.3s !important; }
.nav-cta:hover { box-shadow: 0 6px 24px rgba(56,142,60,0.4); transform: translateY(-2px); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 200; position: relative; }
.mobile-menu-btn span { display: block; width: 24px; height: 2.5px; background: var(--text-dark); border-radius: 3px; transition: all 0.3s; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================
   HERO
   ========================================== */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 40px 50px; position: relative; overflow: hidden; background: var(--bg-hero); color: white; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before { content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse, rgba(56,142,60,0.2) 0%, rgba(25,118,210,0.1) 40%, transparent 70%); filter: blur(40px); }
.hero-bg::after { content: ''; position: absolute; top: 10%; right: 10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(25,118,210,0.15) 0%, transparent 60%); filter: blur(60px); }
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 8px 20px; font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; margin-bottom: 28px; animation: fadeInDown 0.8s ease-out; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--green-bright); border-radius: 50%; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 { font-family: 'Baloo 2', cursive; font-size: 76px; font-weight: 800; line-height: 1.1; margin-bottom: 28px; animation: fadeInUp 0.8s ease-out 0.1s both; }
.hero-brand { color: var(--green-bright); }
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.85); font-size: 52px; }
.hero-points { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 36px; animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero-point { font-size: 16px; color: rgba(255,255,255,0.65); font-weight: 600; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 60px; animation: fadeInUp 0.8s ease-out 0.3s both; }
.btn-primary { background: linear-gradient(135deg, var(--green-mid), var(--green-bright)); color: white; padding: 15px 34px; border-radius: 50px; font-size: 15px; font-weight: 800; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 20px rgba(56,142,60,0.3); font-family: 'Nunito', sans-serif; }
.btn-primary:hover { box-shadow: 0 8px 32px rgba(56,142,60,0.45); transform: translateY(-3px); }
.btn-secondary { color: rgba(255,255,255,0.7); padding: 15px 34px; border-radius: 50px; font-size: 15px; font-weight: 700; text-decoration: none; border: 2px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); cursor: pointer; transition: all 0.3s; font-family: 'Nunito', sans-serif; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.3); color: white; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

/* Carousel */
.carousel-wrapper { width: 100%; position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out 0.4s both; }
.carousel-container { perspective: 1200px; height: 360px; display: flex; align-items: center; justify-content: center; }
.carousel-track { position: relative; width: 260px; height: 340px; transform-style: preserve-3d; animation: autoRotate 30s linear infinite; }
.carousel-track:hover { animation-play-state: paused; }
@keyframes autoRotate { from { transform: rotateY(0); } to { transform: rotateY(360deg); } }
.carousel-card { position: absolute; width: 220px; height: 280px; left: 50%; top: 50%; margin-left: -110px; margin-top: -140px; border-radius: var(--radius-md); overflow: hidden; backface-visibility: hidden; cursor: pointer; }
.carousel-card .card-inner { width: 100%; height: 100%; padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.carousel-card .card-inner::before { content: ''; position: absolute; inset: 0; opacity: 0.08; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.card-icon { font-size: 36px; margin-bottom: 8px; }
.card-title { font-family: 'Baloo 2', cursive; font-size: 24px; color: white; line-height: 1.2; }
.card-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; margin-top: 6px; }
.card-math { background: linear-gradient(160deg, #1565C0, #1E88E5); box-shadow: 0 20px 40px rgba(21,101,192,0.3); }
.card-physics { background: linear-gradient(160deg, #0D47A1, #1976D2); box-shadow: 0 20px 40px rgba(13,71,161,0.3); }
.card-english { background: linear-gradient(160deg, #2E7D32, #43A047); box-shadow: 0 20px 40px rgba(46,125,50,0.3); }
.card-it { background: linear-gradient(160deg, #0D47A1, #1565C0); box-shadow: 0 20px 40px rgba(13,71,161,0.3); }
.card-science { background: linear-gradient(160deg, #2E7D32, #388E3C); box-shadow: 0 20px 40px rgba(46,125,50,0.3); }
.card-acc { background: linear-gradient(160deg, #1565C0, #1976D2); box-shadow: 0 20px 40px rgba(21,101,192,0.3); }
.card-languages { background: linear-gradient(160deg, #2E7D32, #66BB6A); box-shadow: 0 20px 40px rgba(46,125,50,0.3); }
.card-business { background: linear-gradient(160deg, #1565C0, #42A5F5); box-shadow: 0 20px 40px rgba(21,101,192,0.3); }
.card-history { background: linear-gradient(160deg, #0D47A1, #1565C0); box-shadow: 0 20px 40px rgba(13,71,161,0.3); }
.card-primary { background: linear-gradient(160deg, #2E7D32, #66BB6A); box-shadow: 0 20px 40px rgba(46,125,50,0.3); }
.carousel-card:nth-child(1)  { transform: rotateY(0deg) translateZ(380px); }
.carousel-card:nth-child(2)  { transform: rotateY(36deg) translateZ(380px); }
.carousel-card:nth-child(3)  { transform: rotateY(72deg) translateZ(380px); }
.carousel-card:nth-child(4)  { transform: rotateY(108deg) translateZ(380px); }
.carousel-card:nth-child(5)  { transform: rotateY(144deg) translateZ(380px); }
.carousel-card:nth-child(6)  { transform: rotateY(180deg) translateZ(380px); }
.carousel-card:nth-child(7)  { transform: rotateY(216deg) translateZ(380px); }
.carousel-card:nth-child(8)  { transform: rotateY(252deg) translateZ(380px); }
.carousel-card:nth-child(9)  { transform: rotateY(288deg) translateZ(380px); }
.carousel-card:nth-child(10) { transform: rotateY(324deg) translateZ(380px); }
.carousel-reflection { width: 600px; height: 1px; margin: 20px auto 0; background: linear-gradient(90deg, transparent, rgba(102,187,106,0.15), transparent); }

.hero-wave { line-height: 0; margin-top: -1px; background: var(--bg-subjects); }
.hero-wave svg { display: block; width: 100%; height: 50px; }

/* Shared */
section { padding: 64px 40px; position: relative; overflow: hidden; }
.section-emoji { font-size: 38px; margin-bottom: 8px; }
.section-label { font-family: 'Baloo 2', cursive; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-bold); margin-bottom: 8px; }
.section-title { font-family: 'Baloo 2', cursive; font-size: 40px; font-weight: 800; line-height: 1.15; margin-bottom: 10px; }
.section-desc { font-size: 16px; color: var(--text-mid); line-height: 1.7; max-width: 520px; }
.bg-doodle { position: absolute; pointer-events: none; z-index: 0; user-select: none; line-height: 1; opacity: 0.12; }
.bg-doodle.doodle-md { font-size: 50px; } .bg-doodle.doodle-lg { font-size: 70px; } .bg-doodle.doodle-xl { font-size: 95px; }
.section-inner { position: relative; z-index: 1; }

/* Banners */
.section-banner { position: relative; overflow: hidden; padding: 28px 40px; text-align: center; border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); }
.banner-doodle { position: absolute; top: 50%; transform: translateY(-50%); font-size: 36px; opacity: 0.15; pointer-events: none; user-select: none; }
.banner-text { font-family: 'Baloo 2', cursive; font-size: 20px; font-weight: 800; color: var(--text-dark); position: relative; z-index: 1; }
.banner-text em { color: var(--green-bold); font-style: italic; }
.banner-sub { font-size: 13px; color: var(--text-mid); font-weight: 600; margin-top: 4px; position: relative; z-index: 1; }
.banner-subjects-programmes { background: linear-gradient(135deg, var(--bg-subjects), var(--bg-programmes)); }
.banner-programmes-how { background: linear-gradient(135deg, var(--bg-programmes), var(--bg-how)); }
.banner-how-services { background: linear-gradient(135deg, var(--bg-how), var(--bg-services)); }
.banner-services-pricing { background: linear-gradient(135deg, var(--bg-services), var(--bg-pricing)); }
.banner-pricing-duration { background: linear-gradient(135deg, var(--bg-pricing), var(--bg-duration)); }
.banner-duration-contact { background: linear-gradient(135deg, var(--bg-duration), var(--bg-contact)); }

/* Subjects */
.subjects-section { background: var(--bg-subjects); }
.subjects-header { text-align: center; margin-bottom: 36px; }
.subjects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; max-width: var(--max-content); margin: 0 auto; }
.subject-card { background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; transition: all 0.35s; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.subject-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.subject-card.subject-green::before { background: linear-gradient(90deg, var(--green-mid), var(--green-bright)); }
.subject-card.subject-blue::before { background: linear-gradient(90deg, var(--blue-mid), var(--blue-bright)); }
.subject-card:hover { box-shadow: var(--shadow-fun); transform: translateY(-4px); }
.subject-icon { font-size: 30px; margin-bottom: 8px; }
.subject-name { font-family: 'Baloo 2', cursive; font-size: 18px; font-weight: 800; line-height: 1.2; margin-bottom: 4px; }
.subject-info { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.subject-pill { display: inline-block; font-family: 'Baloo 2', cursive; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.spill-green { background: var(--green-bg-light); color: var(--green-deep); border: 1px solid var(--green-border); }
.spill-blue { background: var(--blue-bg-light); color: var(--blue-deep); border: 1px solid var(--blue-border); }

/* Programmes */
.programmes-section { background: var(--bg-programmes); }
.programmes-header { text-align: center; margin-bottom: 36px; }
.programmes-intro { margin: 0 auto; text-align: center; }
.programmes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: var(--max-content); margin: 0 auto; }
.programme-card { background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; overflow: hidden; transition: all 0.35s; box-shadow: var(--shadow-sm); }
.programme-card:hover { box-shadow: var(--shadow-fun); transform: translateY(-5px); }
.programme-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.accent-green { background: linear-gradient(90deg, var(--green-deep), var(--green-bright)); }
.accent-blue { background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright)); }
.programme-header-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.programme-badge { font-family: 'Baloo 2', cursive; font-size: 13px; font-weight: 700; padding: 4px 14px; border-radius: 50px; }
.badge-green { background: var(--green-bg); color: var(--green-deep); border: 1px solid var(--green-border); }
.badge-blue { background: var(--blue-bg); color: var(--blue-deep); border: 1px solid var(--blue-border); }
.programme-grade-pill { font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 50px; color: white; }
.pill-green { background: var(--green-bold); } .pill-blue { background: var(--blue-bold); }
.programme-name { font-family: 'Baloo 2', cursive; font-size: 28px; font-weight: 800; line-height: 1.15; margin-bottom: 10px; }
.programme-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.programme-desc strong { color: var(--text-dark); font-weight: 800; }
.programme-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.programme-feature { display: flex; gap: 12px; align-items: flex-start; }
.feature-emoji { font-size: 20px; flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.feature-green { background: var(--green-bg-light); border: 1px solid var(--green-border); }
.feature-blue { background: var(--blue-bg-light); border: 1px solid var(--blue-border); }
.feature-title { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.feature-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.programme-tutor { display: flex; align-items: center; gap: 12px; padding: 14px 0 0; border-top: 2px solid var(--border); }
.tutor-avatar { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 17px; color: white; }
.tutor-avatar-green { background: linear-gradient(135deg, var(--green-deep), var(--green-bold)); }
.tutor-avatar-blue { background: linear-gradient(135deg, var(--blue-deep), var(--blue-bold)); }
.tutor-name { font-family: 'Baloo 2', cursive; font-size: 15px; font-weight: 700; }
.tutor-role { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.programme-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 11px 22px; border-radius: 50px; font-size: 14px; font-weight: 800; color: white; text-decoration: none; transition: all 0.3s; }
.programme-link-blue { background: linear-gradient(135deg, var(--blue-bold), var(--blue-bright)); box-shadow: 0 4px 16px rgba(25,118,210,0.25); }
.programme-link-blue:hover { box-shadow: 0 6px 24px rgba(25,118,210,0.4); transform: translateY(-2px); }
.programme-link svg { transition: transform 0.3s; } .programme-link:hover svg { transform: translate(2px, -2px); }
.programmes-connector { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.connector-line { height: 2px; width: 60px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.connector-badge { font-family: 'Baloo 2', cursive; font-size: 13px; font-weight: 700; color: var(--text-mid); background: var(--bg-white); border: 2px solid var(--border); padding: 6px 18px; border-radius: 50px; box-shadow: var(--shadow-sm); }

/* How */
.how-section { background: var(--bg-how); }
.how-header { text-align: center; margin-bottom: 36px; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; max-width: var(--max-content); margin: 0 auto; }
.how-card { background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.35s; box-shadow: var(--shadow-sm); text-align: center; }
.how-card:hover { box-shadow: var(--shadow-fun); transform: translateY(-5px); }
.how-number { font-family: 'Baloo 2', cursive; font-size: 52px; font-weight: 800; color: var(--green-bold); line-height: 1; margin-bottom: 4px; opacity: 0.2; }
.how-emoji { font-size: 36px; margin-bottom: 10px; }
.how-card-title { font-family: 'Baloo 2', cursive; font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.how-card-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* Services */
.services-section { background: var(--bg-services); }
.services-header { text-align: center; margin-bottom: 36px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: var(--max-content); margin: 0 auto; }
.service-card { background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: all 0.35s; box-shadow: var(--shadow-sm); text-align: center; }
.service-card:hover { box-shadow: var(--shadow-fun); transform: translateY(-5px); border-color: var(--blue-border); }
.service-icon-wrap { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--green-bg-light), var(--blue-bg-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 2px solid var(--border); }
.service-icon { font-size: 30px; }
.service-title { font-family: 'Baloo 2', cursive; font-size: 20px; font-weight: 800; margin-bottom: 10px; line-height: 1.25; }
.service-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; text-align: left; }
.service-desc strong { color: var(--text-dark); font-weight: 800; }

/* Pricing */
.pricing-section { background: var(--bg-pricing); text-align: center; }
.pricing-header { margin-bottom: 36px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.pricing-card { background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 36px 30px; text-align: left; transition: all 0.35s; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.pricing-card:hover { box-shadow: var(--shadow-fun); transform: translateY(-5px); }
.pricing-card.featured { border-color: var(--green-bold); background: linear-gradient(170deg, #FFF 40%, var(--green-bg) 100%); }
.pricing-card.featured::before { content: '⭐ Best Value'; position: absolute; top: 14px; right: 14px; font-family: 'Baloo 2', cursive; font-size: 12px; font-weight: 700; color: var(--green-deep); background: var(--green-bg); padding: 4px 14px; border-radius: 50px; border: 1px solid var(--green-border); }
.pricing-emoji { font-size: 32px; margin-bottom: 8px; }
.pricing-tier { font-family: 'Baloo 2', cursive; font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.pricing-amount { font-family: 'Baloo 2', cursive; font-size: 48px; font-weight: 800; line-height: 1; }
.pricing-amount span { font-family: 'Nunito', sans-serif; font-size: 17px; color: var(--text-muted); font-weight: 600; }
.pricing-free-badge { margin-top: 12px; padding: 8px 16px; background: linear-gradient(135deg, #FFF8E1, #FFECB3); border: 2px solid #FFD54F; border-radius: 50px; font-size: 14px; font-weight: 800; color: #E65100; text-align: center; font-family: 'Baloo 2', cursive; }
.pricing-details { margin-top: 18px; padding-top: 18px; border-top: 2px solid var(--border); }
.pricing-detail-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); margin-bottom: 8px; font-weight: 600; }
.pricing-check { width: 22px; height: 22px; background: var(--green-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--green-bold); flex-shrink: 0; font-weight: 800; }
.pricing-cta { display: block; width: 100%; margin-top: 20px; padding: 13px; border-radius: 50px; font-size: 15px; font-weight: 800; text-align: center; text-decoration: none; cursor: pointer; transition: all 0.3s; font-family: 'Nunito', sans-serif; border: none; }
.pricing-card:not(.featured) .pricing-cta { background: var(--green-bg-light); color: var(--green-bold); border: 2px solid var(--green-border); }
.pricing-card:not(.featured) .pricing-cta:hover { background: var(--green-bg); }
.pricing-card.featured .pricing-cta { background: linear-gradient(135deg, var(--green-bold), var(--green-bright)); color: white; box-shadow: 0 4px 16px rgba(56,142,60,0.25); }
.pricing-card.featured .pricing-cta:hover { box-shadow: 0 6px 24px rgba(56,142,60,0.4); transform: translateY(-2px); }

/* Duration */
.duration-strip { display: flex; justify-content: center; align-items: center; gap: 40px; padding: 28px 40px; background: var(--bg-duration); }
.duration-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-mid); font-weight: 700; }
.duration-item strong { color: var(--text-dark); }
.duration-emoji { font-size: 26px; }
.duration-divider { width: 2px; height: 36px; background: rgba(128,90,213,0.2); border-radius: 2px; }

/* Contact */
.contact-section { background: var(--bg-contact); }
.contact-header { text-align: center; margin-bottom: 36px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.contact-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.35s; box-shadow: var(--shadow-sm); }
.contact-green { border: 2px solid var(--green-border); }
.contact-blue { border: 2px solid var(--blue-border); }
.contact-card:hover { box-shadow: var(--shadow-fun); transform: translateY(-4px); }
.contact-org { font-family: 'Baloo 2', cursive; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.contact-green .contact-org { color: var(--green-bold); }
.contact-blue .contact-org { color: var(--blue-bold); }
.contact-name { font-family: 'Baloo 2', cursive; font-size: 24px; font-weight: 800; margin-bottom: 2px; }
.contact-role-text { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; font-weight: 600; }
.contact-detail { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); margin-bottom: 8px; font-weight: 600; }
.contact-detail-icon { font-size: 16px; flex-shrink: 0; }
.contact-detail a { color: var(--text-mid); text-decoration: none; transition: color 0.3s; }
.contact-detail a:hover { color: var(--text-dark); }
.contact-website-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 14px; font-weight: 800; color: white; text-decoration: none; padding: 8px 18px; border-radius: 50px; transition: all 0.3s; }
.contact-website-blue { background: linear-gradient(135deg, var(--blue-bold), var(--blue-bright)); box-shadow: 0 3px 12px rgba(25,118,210,0.2); }
.contact-website-blue:hover { box-shadow: 0 5px 20px rgba(25,118,210,0.35); transform: translateY(-1px); }
.contact-website-link svg { transition: transform 0.3s; } .contact-website-link:hover svg { transform: translate(2px, -2px); }

/* Footer */
footer { background: var(--bg-hero); color: rgba(255,255,255,0.6); }
.footer-inner { max-width: var(--max-content); margin: 0 auto; padding: 40px 40px 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 44px; height: 44px; background: linear-gradient(135deg, var(--green-bold), var(--blue-bold)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 16px; color: white; }
.footer-brand-name { font-family: 'Baloo 2', cursive; font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.85); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 600; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; font-weight: 700; transition: color 0.3s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 24px 0 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; font-weight: 600; }
.footer-made { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); }
.footer-made a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 800; transition: color 0.3s; }
.footer-made a:hover { color: white; }

/* Hero badges row */
.hero-badges { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; animation: fadeInDown 0.8s ease-out; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 8px 20px; font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--green-bright); border-radius: 50%; animation: pulseDot 2s infinite; }
.hero-badge-discord { border-color: rgba(88,101,242,0.4); background: rgba(88,101,242,0.12); color: #A5B4FC; gap: 7px; }

/* Stats Bar */
.stats-bar { background: var(--bg-hero); padding: 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.stats-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; max-width: var(--max-content); margin: 0 auto; padding: 0 40px; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 28px 40px; gap: 4px; }
.stat-number { font-family: 'Baloo 2', cursive; font-size: 36px; font-weight: 800; color: white; line-height: 1; }
.stat-number span { font-size: 22px; color: var(--green-bright); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 700; letter-spacing: 0.5px; text-align: center; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.08); }

/* Discord Section */
.discord-section { background: #F5F3FF; }
.discord-header { text-align: center; margin-bottom: 40px; }
.discord-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--max-content); margin: 0 auto; }
.discord-card { background: var(--bg-white); border: 2px solid rgba(88,101,242,0.1); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.35s; box-shadow: var(--shadow-sm); }
.discord-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(88,101,242,0.12); border-color: rgba(88,101,242,0.25); }
.discord-card-icon { font-size: 32px; margin-bottom: 12px; }
.discord-card-title { font-family: 'Baloo 2', cursive; font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.discord-card-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.discord-cta-wrap { text-align: center; margin-top: 36px; }
.discord-cta-badge { display: inline-flex; align-items: center; gap: 10px; background: #5865F2; color: white; padding: 14px 28px; border-radius: 50px; font-size: 15px; font-weight: 800; font-family: 'Baloo 2', cursive; box-shadow: 0 6px 24px rgba(88,101,242,0.35); }

/* 5-step how grid */
.how-grid-5 { grid-template-columns: repeat(5, 1fr); }

/* Testimonials */
.testimonials-section { background: #FFFBF5; }
.testimonials-header { text-align: center; margin-bottom: 40px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: var(--max-content); margin: 0 auto; }
.testimonial-card { background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.35s; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-fun); }
.testimonial-stars { color: #F59E0B; font-size: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 2px solid var(--border); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 17px; color: white; flex-shrink: 0; }
.testimonial-name { font-family: 'Baloo 2', cursive; font-size: 15px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* FAQ */
.faq-section { background: #F0FDF9; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.faq-item:hover { border-color: var(--green-border); }
.faq-item.open { border-color: var(--green-border); box-shadow: var(--shadow-fun); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: 'Baloo 2', cursive; font-size: 16px; font-weight: 700; color: var(--text-dark); text-align: left; gap: 16px; }
.faq-icon { font-size: 22px; font-weight: 400; color: var(--green-bold); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 200px; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
/* Mobile card strip — hidden on desktop */
.mobile-card-strip { display: none; background: var(--bg-hero); overflow: hidden; }
.mobile-strip-inner { display: flex; gap: 12px; padding: 8px 20px 20px; width: max-content; animation: mobileStripScroll 28s linear infinite; }
.mobile-card-strip:hover .mobile-strip-inner, .mobile-card-strip:active .mobile-strip-inner { animation-play-state: paused; }
@keyframes mobileStripScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.mobile-strip-card { flex: 0 0 150px; height: 185px; border-radius: 16px; padding: 18px 14px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.mobile-strip-card::before { content: ''; position: absolute; inset: 0; opacity: 0.08; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.strip-icon { font-size: 26px; margin-bottom: 6px; position: relative; z-index: 1; }
.strip-title { font-family: 'Baloo 2', cursive; font-size: 15px; font-weight: 800; color: white; line-height: 1.2; position: relative; z-index: 1; }
.strip-desc { font-size: 11px; color: rgba(255,255,255,0.72); line-height: 1.4; margin-top: 4px; position: relative; z-index: 1; }

/* Floating loader particles */
.loader-overlay { overflow: hidden; }
.loader-particles { position: fixed; inset: 0; pointer-events: none; z-index: 10000; }
.lp { position: absolute; font-size: 20px; opacity: 0; animation: lpFloat 1.2s ease-out forwards; left: calc(50% + 90px); top: 55%; }
.lp-1  { animation-delay: 0.9s;  --dx: -120px; --dy: -160px; --dr: -30deg; }
.lp-2  { animation-delay: 1.2s;  --dx:   30px; --dy: -180px; --dr:  15deg; }
.lp-3  { animation-delay: 1.5s;  --dx:  130px; --dy: -140px; --dr:  45deg; }
.lp-4  { animation-delay: 1.8s;  --dx: -150px; --dy: -100px; --dr: -50deg; }
.lp-5  { animation-delay: 2.1s;  --dx:  160px; --dy:  -80px; --dr:  60deg; }
.lp-6  { animation-delay: 2.4s;  --dx:  -60px; --dy: -190px; --dr: -20deg; }
.lp-7  { animation-delay: 2.7s;  --dx:  100px; --dy: -170px; --dr:  35deg; }
.lp-8  { animation-delay: 3.0s;  --dx: -140px; --dy: -130px; --dr: -65deg; }
.lp-9  { animation-delay: 3.3s;  --dx:   80px; --dy: -160px; --dr:  25deg; }
.lp-10 { animation-delay: 3.6s;  --dx: -100px; --dy: -150px; --dr: -40deg; }
.lp-11 { animation-delay: 3.9s;  --dx:  150px; --dy: -120px; --dr:  70deg; }
.lp-12 { animation-delay: 4.2s;  --dx:  -80px; --dy: -170px; --dr: -25deg; }
@keyframes lpFloat {
  0%   { opacity: 0;   transform: translate(0,0) rotate(0deg) scale(0.5); }
  20%  { opacity: 1;   transform: translate(calc(var(--dx)*0.3), calc(var(--dy)*0.3)) rotate(calc(var(--dr)*0.3)) scale(1.2); }
  80%  { opacity: 0.7; transform: translate(calc(var(--dx)*0.9), calc(var(--dy)*0.9)) rotate(calc(var(--dr)*0.9)) scale(0.9); }
  100% { opacity: 0;   transform: translate(var(--dx), var(--dy)) rotate(var(--dr)) scale(0.6); }
}

/* Page subject content */
.lb-pg-content { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; position: relative; z-index: 1; }
.lb-pg-icon { font-size: 22px; line-height: 1; }
.lb-pg-subj { font-family: 'Baloo 2', cursive; font-size: 9px; font-weight: 800; color: rgba(0,0,0,0.25); letter-spacing: 1.5px; text-transform: uppercase; text-align: center; line-height: 1.2; }

@media (max-width: 900px) {
  nav { padding: 12px 16px; }
  .mobile-menu-btn { display: flex; }
  .nav-links { display: none; position: fixed; inset: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 100; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; color: var(--text-dark); }
  .hero { padding: 110px 20px 40px; }
  .hero h1 { font-size: 44px; } .hero h1 em { font-size: 32px; }
  .hero-point { font-size: 14px; }
  .hero-badges { flex-direction: column; gap: 8px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 40px; }
  section { padding: 48px 16px; }
  .section-title { font-size: 30px; }
  .section-banner { padding: 20px 16px; }
  .banner-text { font-size: 16px; } .banner-doodle { font-size: 24px; opacity: 0.1; }
  .programmes-grid, .services-grid { grid-template-columns: 1fr; }
  .how-grid, .how-grid-5 { grid-template-columns: 1fr; }
  .pricing-grid, .contact-grid { grid-template-columns: 1fr; }
  .discord-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .duration-strip { flex-direction: column; gap: 14px; padding: 24px 16px; }
  .duration-divider { width: 40px; height: 2px; }
  .carousel-container { display: none; }
  .carousel-reflection { display: none; }
  .mobile-card-strip { display: block; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 18px 20px; }
  .stat-number { font-size: 28px; }
  .stat-divider { display: none; }
  .bg-doodle.doodle-xl { font-size: 60px; } .bg-doodle.doodle-lg { font-size: 45px; } .bg-doodle { opacity: 0.08; }
  .footer-inner { padding: 28px 16px 20px; }
  .footer-top { flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .loader-brand-name { font-size: 30px; }
  .loader-brand-partner { font-size: 16px; }
  .loader-logo { width: 56px; height: 56px; font-size: 20px; border-radius: 16px; }
  .loader-scene { width: 150px; height: 195px; transform: translateX(75px); }
  .lp { left: calc(50% + 75px); font-size: 16px; }
}