*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2E6B0A;
  --green-mid: #4E9A1A;
  --green-light: rgba(78,154,26,0.18);
  --green-bright: #34D399;
  --teal: #0A6B56;
  --teal-light: rgba(10,107,86,0.18);
  --amber: #F59E0B;
  --amber-light: rgba(245,158,11,0.15);
  --purple: #4A3FB0;
  --purple-light: rgba(74,63,176,0.18);
  --blue: #0A4B7A;
  --blue-light: rgba(10,75,122,0.18);
  --gray-100: rgba(255,255,255,0.08);
  --gray-200: rgba(255,255,255,0.12);
  --gray-400: rgba(255,255,255,0.3);
  --gray-500: rgba(255,255,255,0.45);
  --gray-700: rgba(255,255,255,0.65);
  --gray-900: #ffffff;
  --bg: #080F08;
  --bg-2: #0C1A0C;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.75);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── GLASS MIXIN ── */
.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  pointer-events: none; z-index: 0;
}
.glass::after {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  pointer-events: none;
}
.glass > * { position: relative; z-index: 1; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,15,8,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
  backdrop-filter: blur(20px);
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 18px; color: #34D399;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #34D399;
  animation: pulse 2s ease-in-out infinite;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.45); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #34D399; }
.nav-cta {
  background: rgba(52, 211, 153,0.15);
  border: 1px solid rgba(52, 211, 153,0.35);
  color: #34D399;
  padding: 9px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.2s; font-family: 'Sora', sans-serif;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(52, 211, 153,0.25); border-color: rgba(52, 211, 153,0.6); }

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed; top: 62px; left: 0; right: 0;
  background: rgba(8,15,8,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem 1.5rem;
  z-index: 99;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li a {
  display: block; padding: 12px 0;
  color: rgba(255,255,255,0.65); font-size: 16px; font-weight: 500;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { color: #34D399; }
.mobile-menu-cta {
  display: block; margin-top: 1rem;
  background: rgba(52, 211, 153,0.15);
  border: 1px solid rgba(52, 211, 153,0.35);
  color: #34D399; padding: 12px; border-radius: 10px;
  font-size: 15px; font-weight: 700; text-align: center;
  text-decoration: none; font-family: 'Sora', sans-serif;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 90px 1.5rem 5rem;
  position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
  animation: driftGrid 20s linear infinite;
}
@keyframes driftGrid { 0% { background-position: 0 0; } 100% { background-position: 32px 32px; } }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(70px); }
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(78,154,26,0.2) 0%, transparent 70%); top: 10%; left: 10%; animation: floatOrb 8s ease-in-out infinite; }
.orb-2 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(10,107,86,0.15) 0%, transparent 70%); bottom: 10%; right: 15%; animation: floatOrb 11s ease-in-out infinite reverse; }
.orb-3 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(52, 211, 153,0.1) 0%, transparent 70%); top: 55%; left: 48%; animation: floatOrb 7s ease-in-out infinite 2s; }
@keyframes floatOrb {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-15px,25px) scale(0.95); }
}
.particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: rgba(154,218,80,0.5); animation: particleFloat linear infinite; }
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 1; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1100px; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center; gap: 3rem;
}
.hero-image { display: flex; justify-content: center; align-items: center; animation: heroImgIn 1s cubic-bezier(0.16,1,0.3,1) 0.4s both; }
.hero-image img { width: 100%; max-width: 420px; border-radius: 16px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)); display: block; }
@keyframes heroImgIn { from { opacity: 0; transform: translateX(40px) scale(0.95); } to { opacity: 1; transform: translateX(0) scale(1); } }
.hero-text { animation: heroTextIn 1s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
@keyframes heroTextIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(52, 211, 153,0.1); border: 1px solid rgba(52, 211, 153,0.3);
  color: #34D399; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 1.5rem;
  letter-spacing: 0.04em; font-family: 'Sora', sans-serif;
  animation: heroTextIn 1s cubic-bezier(0.16,1,0.3,1) 0.25s both;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #34D399; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.0vw, 4rem); font-weight: 800; color: #fff; line-height: 1.12;
  margin-bottom: 1.25rem;
  animation: heroTextIn 1s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.hero h1 .green { color: #34D399; }
.hero-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.55);
  max-width: 500px; margin: 0 0 1.5rem;
  animation: heroTextIn 1s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: heroTextIn 1s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 2rem;
}
.hero-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7); font-size: 12px;
  padding: 5px 12px; border-radius: 20px;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.25); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; font-family: 'Sora', sans-serif;
  animation: fadeIn 1s ease 1.5s both; z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.6); opacity: 0.4; } }

/* BUTTONS */
.btn-green {
  background: rgba(52, 211, 153,0.15);
  border: 1px solid rgba(52, 211, 153, 0.45);
  backdrop-filter: blur(8px);
  color: #34D399; padding: 13px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  text-decoration: none; display: inline-block;
  font-family: 'Sora', sans-serif;
  transition: all 0.2s;
}
.btn-green:hover { background: rgba(52, 211, 153,0.28); border-color: rgba(52, 211, 153,0.7); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(52, 211, 153,0.2); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.7);
  padding: 13px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }

/* ═══ SECTIONS ═══ */
.section { padding: 5rem 1.5rem; background: var(--bg); }
.section.alt { background: var(--bg-2); }
.inner { max-width: 1080px; margin: 0 auto; }
.sec-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #34D399; margin-bottom: 0.5rem; font-family: 'Sora', sans-serif; }
.sec-title { font-family: 'Sora', sans-serif; font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; color: #fff; line-height: 1.2; }
.sec-desc { font-size: 15px; color: rgba(255,255,255,0.45); margin-top: 0.6rem; max-width: 480px; }
.sec-head { margin-bottom: 3rem; }

/* ═══ ABOUT ═══ */
.about-intro {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}

/* 50/50 layout */
.about-video,
.about-content {
  flex: 1;
}

/* Responsive video */
.about-video iframe {
  width: 100%;
  height: 315px;
  border-radius: 10px;
}

/* TEXT */
.about-intro-body {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-intro-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}

/* BULLETS */
.about-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}

.about-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.about-bullets li .bullet-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(52, 211, 153,0.15);
  border: 1px solid rgba(52, 211, 153,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-bullets li .bullet-icon i {
  color: #34D399;
  font-size: 9px;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {
  .about-intro {
    flex-direction: column; /* stack */
  }

  .about-video {
    order: 1; /* video first */
    width: 100%;
  }

  .about-content {
    order: 2; /* content below */
  }

  .about-video iframe {
    height: 220px;
  }
}

/* STEM PILLARS */
.stem-subsection { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.07); }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.pillar {
  border-radius: 20px; padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 100%); pointer-events: none; }
.pillar::after { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); }
.pillar > * { position: relative; z-index: 1; }
.pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.pillar-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 1rem; }
.pi-green { background: rgba(52, 211, 153,0.2); border: 1px solid rgba(52, 211, 153,0.3); color: #34D399; }
.pillar h3 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.pillar p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.pillar-tag { display: inline-block; margin-top: 1rem; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 6px; font-family: 'Sora', sans-serif; letter-spacing: 0.04em; background: rgba(52, 211, 153,0.15); color: #34D399; border: 1px solid rgba(52, 211, 153,0.3); }

/* ═══ PROGRAMS ═══ */
.programs-section-title { text-align: center; margin-bottom: 3rem; }
.prog-group-divider { display: flex; align-items: center; gap: 1rem; margin: 2.5rem 0 2rem; }
.prog-group-divider-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.prog-group-divider-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-family: 'Sora', sans-serif; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.prog-group-divider-label i { color: #34D399; font-size: 12px; }
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }

/* glass prog card */
.prog-card {
  position: relative; border-radius: 20px; padding: 2rem 1.75rem 1.75rem;
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.prog-card::before { content: ''; position: absolute; inset: 0; border-radius: 20px; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%); pointer-events: none; z-index: 0; }
.prog-card::after { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); pointer-events: none; }
.prog-card:hover { transform: translateY(-6px) scale(1.02); }
.prog-card.c-green:hover  { box-shadow: 0 24px 60px rgba(78,154,26,0.25), 0 0 0 1px rgba(52, 211, 153,0.3); }
.prog-card.c-teal:hover   { box-shadow: 0 24px 60px rgba(10,107,86,0.25), 0 0 0 1px rgba(10,107,86,0.3); }
.prog-card.c-amber:hover  { box-shadow: 0 24px 60px rgba(245,158,11,0.2), 0 0 0 1px rgba(245,158,11,0.3); }
.prog-card-glow { position: absolute; width: 50px; height: 50px; border-radius: 50%; filter: blur(50px); top: -30px; right: -30px; pointer-events: none; z-index: 0; opacity: 0.2; transition: opacity 0.3s; }
.prog-card:hover .prog-card-glow { opacity: 0.4; }
.c-green  .prog-card-glow { background: #4E9A1A; }
.c-teal   .prog-card-glow { background: #0A6B56; }
.c-amber  .prog-card-glow { background: #F59E0B; }
.prog-card > * { position: relative; z-index: 1; }
.prog-icon-wrap { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 22px; }
.c-green  .prog-icon-wrap { background: rgba(78,154,26,0.2);   border: 1px solid rgba(52, 211, 153,0.3); color: #34D399; }
.c-teal   .prog-icon-wrap { background: rgba(10,107,86,0.2);   border: 1px solid rgba(10,107,86,0.3); color: #3DCFAF; }
.c-amber  .prog-icon-wrap { background: rgba(245,158,11,0.2);  border: 1px solid rgba(245,158,11,0.3); color: #FBB840; }
.prog-badge { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; font-family: 'Sora', sans-serif; letter-spacing: 0.05em; }
.c-green  .prog-badge { background: rgba(52, 211, 153,0.2); color: #34D399; border: 1px solid rgba(52, 211, 153,0.3); }
.c-teal   .prog-badge { background: rgba(10,107,86,0.2);  color: #3DCFAF; border: 1px solid rgba(10,107,86,0.3); }
.c-amber  .prog-badge { background: rgba(245,158,11,0.15);color: #FBB840; border: 1px solid rgba(245,158,11,0.3); }
.prog-card h3 { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; }
.prog-card .prog-grades { font-size: 12px; font-weight: 600; font-family: 'Sora', sans-serif; margin-bottom: 0.85rem; display: flex; align-items: center; gap: 6px; }
.c-green  .prog-grades { color: #34D399; } .c-teal .prog-grades { color: #3DCFAF; }
.c-amber  .prog-grades { color: #FBB840; }
.prog-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.25rem; }
.prog-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.5rem; }
.prog-features li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.6); }
.prog-features li i { font-size: 11px; flex-shrink: 0; }
.c-green  .prog-features li i { color: #34D399; } .c-teal   .prog-features li i { color: #3DCFAF; }
.c-amber  .prog-features li i { color: #FBB840; }
.prog-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1.25rem 0; }
.prog-footer { display: flex; align-items: center; justify-content: space-between; }
.prog-age { font-size: 11px; color: rgba(255,255,255,0.35); font-family: 'Sora', sans-serif; }
.prog-arrow { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; flex-shrink: 0; }
.c-green  .prog-arrow { background: rgba(52, 211, 153,0.15); color: #34D399; }
.c-teal   .prog-arrow { background: rgba(10,107,86,0.2);  color: #3DCFAF; }
.c-amber  .prog-arrow { background: rgba(245,158,11,0.15);color: #FBB840; }
.prog-card:hover .prog-arrow { transform: translateX(4px); }

/* ═══ LEARNING PATH STAGES ═══ */
.stages { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.stage {
  border-radius: 20px; padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.stage::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 100%); pointer-events: none; }
.stage::after { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); }
.stage > * { position: relative; z-index: 1; }
.stage:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.3); transform: translateY(-2px); }
.stage-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 1rem; font-family: 'Sora', sans-serif; letter-spacing: 0.04em; background: rgba(52, 211, 153,0.15); color: #34D399; border: 1px solid rgba(52, 211, 153,0.3); }
.stage-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 0.75rem; background: rgba(52, 211, 153,0.12); border: 1px solid rgba(52, 211, 153,0.2); color: #34D399; }
.stage h3 { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.stage-sub { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ═══ INSTRUCTOR ═══ */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.about-photo {
  aspect-ratio: 4/5; border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; position: relative; overflow: hidden;
}
.about-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(78,154,26,0.12) 0%, rgba(10,107,86,0.08) 100%); pointer-events: none; }
.about-photo::after { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(52, 211, 153,0.3), transparent); }
.about-photo > * { position: relative; z-index: 1; }
.about-photo img { max-width: 100%; object-fit: cover; border-radius: 18px; }
.about-text .sec-title { margin-bottom: 1rem; }
.about-text p { color: rgba(255,255,255,0.5); margin-bottom: 1rem; font-size: 15px; }
.cred-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 1.25rem; }
.cred-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.cred-icon { width: 24px; height: 24px; border-radius: 6px; background: rgba(52, 211, 153,0.12); border: 1px solid rgba(52, 211, 153,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.cred-icon i { color: #34D399; font-size: 10px; }

/* ═══ HOW IT WORKS ═══ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.step {
  text-align: center; padding: 1.75rem 1.25rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 100%); pointer-events: none; }
.step::after { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); }
.step > * { position: relative; z-index: 1; }
.step:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(52, 211, 153,0.15); color: #34D399;
  border: 1px solid rgba(52, 211, 153,0.35);
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  transition: all 0.2s;
}
.step:hover .step-num { background: rgba(52, 211, 153,0.3); border-color: rgba(52, 211, 153,0.6); transform: scale(1.1); }
.step h4 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.step p { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ═══ TESTIMONIALS ═══ */
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.testi {
  border-radius: 20px; padding: 1.75rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testi::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 100%); pointer-events: none; }
.testi::after { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); }
.testi > * { position: relative; z-index: 1; }
.testi:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.3); transform: translateY(-2px); }
.testi-q-icon { font-size: 1.6rem; color: #34D399; margin-bottom: 0.75rem; }
.testi p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; }
.testi-who { display: flex; align-items: center; gap: 10px; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; font-family: 'Sora', sans-serif; background: rgba(52, 211, 153,0.2); color: #34D399; border: 1px solid rgba(52, 211, 153,0.3); }
.testi-name { font-size: 14px; font-weight: 600; color: #fff; font-family: 'Sora', sans-serif; }
.testi-loc { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ═══ GALLERY ═══ */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto auto; gap: 1rem; margin-top: 2.5rem; }
.gallery-item {
  border-radius: 16px; overflow: hidden; position: relative; cursor: pointer;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.gallery-item.featured { grid-column: span 2; }
.gallery-thumb { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item.featured .gallery-thumb { aspect-ratio: 16/9; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%); opacity: 0; transition: opacity 0.25s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.25rem; transform: translateY(6px); opacity: 0; transition: all 0.25s; }
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }
.gallery-caption-title { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; }
.gallery-label { padding: 0.75rem 1rem; border-top: 1px solid rgba(255,255,255,0.07); }
.gallery-label-title { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: #fff; }
.gallery-label-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ═══ CONTACT ═══ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.contact-info .sec-title { margin-bottom: 0.75rem; }
.contact-info > p { color: rgba(255,255,255,0.45); margin-bottom: 1.75rem; font-size: 15px; }
.cdetail {
  display: flex; align-items: center; gap: 12px; padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cdetail:last-of-type { border-bottom: none; }
.cicon { width: 36px; height: 36px; border-radius: 9px; background: rgba(52, 211, 153,0.15); border: 1px solid rgba(52, 211, 153,0.25); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: #34D399; }
.clabel { font-size: 11px; color: rgba(255,255,255,0.35); }
.cval { font-size: 14px; font-weight: 600; color: #fff; font-family: 'Sora', sans-serif; word-break: break-all; }
.wa-note { margin-top: 1.5rem; padding: 1rem 1.25rem; background: rgba(52, 211, 153,0.1); border-radius: 10px; border-left: 3px solid rgba(52, 211, 153,0.5); font-size: 13px; color: #34D399; font-weight: 500; display: flex; align-items: flex-start; gap: 8px; }
.wa-note i { margin-top: 2px; flex-shrink: 0; }
.form-card {
  border-radius: 20px; padding: 2rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative; overflow: hidden;
}
.form-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 100%); pointer-events: none; }
.form-card::after { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); }
.form-card > * { position: relative; z-index: 1; }
.form-card h3 { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; color: #fff; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); margin-bottom: 5px; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  font-size: 14px; color: #fff;
  font-family: 'DM Sans', sans-serif;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  outline: none; transition: border-color 0.2s;
}
.fg input:focus, .fg textarea:focus { border-color: rgba(52, 211, 153,0.5); background: rgba(52, 211, 153,0.05); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.fg textarea { resize: vertical; min-height: 90px; }
.submit {
  width: 100%;
  background: rgba(52, 211, 153,0.15);
  border: 1px solid rgba(52, 211, 153,0.45);
  backdrop-filter: blur(8px);
  color: #34D399; padding: 13px; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: 'Sora', sans-serif; transition: all 0.2s;
}
.submit:hover { background: rgba(52, 211, 153,0.28); border-color: rgba(52, 211, 153,0.7); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(52, 211, 153,0.2); }

/* ═══ FLOATING WHATSAPP BUTTON ═══ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #34D399;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.35);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  letter-spacing: 0.01em;
}
.wa-float i {
  font-size: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.wa-float-label {
  white-space: nowrap;
}
.wa-float-ping {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #34D399;
}
.wa-float-ping::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.7);
  animation: waPing 1.8s ease-out infinite;
}
@keyframes waPing {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(52, 211, 153,0.55), 0 4px 12px rgba(0,0,0,0.3);
  /* background: #1fbc5a; */
}
/* On mobile: collapse to icon-only circle */
@media (max-width: 480px) {
  .wa-float {
    padding: 15px;
    border-radius: 50%;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 58px;
    height: 58px;
    justify-content: center;
  }
  .wa-float-label { display: none; }
}

/* ═══ FOOTER ═══ */
footer { background: #040904; color: rgba(255,255,255,0.4); padding: 2.5rem 1.5rem; text-align: center; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-brand { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; color: #34D399; margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.footer-tagline { font-size: 13px; margin-bottom: 1.25rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.25); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #34D399; }
.footer-copy { font-size: 12px; opacity: 0.8; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .stages { grid-template-columns: repeat(2,1fr); }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .about-grid { gap: 2.5rem; }
  .hero-content { gap: 2rem; }
}

/* ═══════════════════════════════
   RESPONSIVE — Mobile (≤768px)
════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  nav { padding: 0 1.25rem; }

  .hero {
    padding: 80px 1.25rem 4rem;
    min-height: auto;
    padding-bottom: 5rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-text { order: 2; }
  .hero-image { order: 1; }
  .hero-image img { max-width: 90%; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-eyebrow { font-size: 11px; padding: 5px 12px; }
  .hero-sub { font-size: 0.9rem; margin: 0 auto 1.5rem; max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-btns .btn-green,
  .hero-btns .btn-ghost { padding: 11px 22px; font-size: 14px; width: 100%; text-align: center; }
  .hero-tags { justify-content: center; }
  .hero-scroll { display: none; }
  .orb-1, .orb-2, .orb-3 { display: none; }

  .section { padding: 3.5rem 1.25rem; }
  .sec-title { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .about-intro-body p { font-size: 14px;}
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .pillar { padding: 1.25rem 1rem; }
  .prog-group-divider-label { font-size: 10px; white-space: normal; text-align: center; }
  .programs-grid { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
  .prog-card { padding: 1.5rem 1.25rem 1.25rem; }
  .prog-card h3 { font-size: 1rem; }
  .stages { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stage { padding: 1.25rem; }
  .stage h3 { font-size: 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { aspect-ratio: auto; min-height: 300px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .step { padding: 1.25rem 1rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .gallery-item.featured { grid-column: span 2; }
  .gallery-label-title { font-size: 12px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { gap: 1rem; }
}

/* ═══════════════════════════════
   RESPONSIVE — Small (≤480px)
════════════════════════════════ */
@media (max-width: 480px) {
  .hero-image img { max-width: 230px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-tags { gap: 6px; }
  .hero-tag { font-size: 11px; padding: 4px 10px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .stages { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; }
  .prog-group-divider { flex-direction: column; gap: 0.5rem; }
  .prog-group-divider-line { width: 100%; }
  .btn-green, .btn-ghost { padding: 12px 20px; font-size: 14px; }
  .section { padding: 3rem 1rem; }
  .form-card { padding: 1.5rem; }
}