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

:root {
  /* Backgrounds — deep dark navy from logo */
  --bg:       #040d1c;
  --bg-2:     #071525;
  --bg-3:     #0a1e35;
  --bg-4:     #0f2845;
  --bg-card:  #060f1e;

  /* Navy blue — logo "VERI" + book */
  --navy:       #0D47A1;
  --navy-light: #1976D2;
  --navy-pale:  #42A5F5;
  --navy-glow:  rgba(13,71,161,0.3);

  /* Teal — logo checkmark + arrow */
  --teal:       #00ACC1;
  --teal-light: #26C6DA;
  --teal-bright:#4DD0E1;
  --teal-glow:  rgba(0,172,193,0.25);

  /* Accent */
  --green:    #10b981;
  --red:      #ef4444;
  --white:    #ffffff;
  --gray-100: #f0f4f8;
  --gray-300: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;

  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  --transition:      0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Typography ── */
.gradient-text {
  background: linear-gradient(135deg, var(--navy-pale), var(--teal-light), var(--teal-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-sub { color: var(--gray-300); font-size: 1.05rem; line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(13,71,161,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,172,193,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--teal-light);
  border: 1.5px solid rgba(0,172,193,0.35);
}
.btn-outline:hover {
  background: rgba(0,172,193,0.08);
  border-color: var(--teal-light);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ──────────────────────────────────────────────
   LOGO IMAGE
────────────────────────────────────────────── */
.logo-img {
  display: block;
  object-fit: contain;
  background: rgba(255,255,255,0.94);
  border-radius: 8px;
  transition: opacity var(--transition-fast);
}
.logo-img--nav {
  height: 42px;
  width: auto;
  max-width: 200px;
  padding: 4px 10px;
}
.logo-img--footer {
  height: 52px;
  width: auto;
  max-width: 230px;
  padding: 5px 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: block;
}
.logo-img--nav:hover { opacity: 0.9; }
.logo-text-fallback {
  display: none;
  align-items: center;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
}
.logo-text-fallback--footer { font-size: 1.5rem; margin-bottom: 16px; }
.logo-veri { color: var(--navy-pale); }
.logo-tark { color: var(--teal-light); }
.footer-logo-link { display: inline-block; }

/* ──────────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), border-color var(--transition);
}
#navbar.scrolled {
  background: rgba(4,13,28,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,172,193,0.12);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  background: linear-gradient(135deg, var(--navy), var(--teal)) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px var(--teal-glow) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,172,193,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,172,193,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.orb-1 { width: 600px; height: 600px; top: -150px; right: -100px; background: radial-gradient(circle, rgba(13,71,161,0.18) 0%, transparent 70%); }
.orb-2 { width: 400px; height: 400px; bottom: 0; left: -80px; background: radial-gradient(circle, rgba(0,172,193,0.12) 0%, transparent 70%); }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid rgba(0,172,193,0.3);
  border-radius: 99px;
  padding: 6px 16px;
  margin-bottom: 28px;
  background: rgba(0,172,193,0.06);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(0,172,193,0.25);
  color: var(--teal-light);
  background: rgba(0,172,193,0.06);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Dashboard Card ── */
.hero-visual { position: relative; }
.dashboard-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,172,193,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 0 80px rgba(13,71,161,0.15), 0 32px 64px rgba(0,0,0,0.4);
}
.dc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.dc-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.dc-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.dc-role {
  font-size: 0.75rem;
  color: var(--gray-300);
}
.dc-company { color: var(--teal-light); }
.dc-badge-green {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 99px;
  padding: 3px 10px;
  background: rgba(16,185,129,0.08);
}
.dc-progress-section { margin-bottom: 16px; }
.dc-prog-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray-300);
  margin-bottom: 8px;
}
.dc-pct { color: var(--teal-light); font-weight: 600; }
.dc-bar {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}
.dc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy-light), var(--teal));
  border-radius: 99px;
  transition: width 1.5s ease;
}
.dc-fill.complete { background: linear-gradient(90deg, var(--teal), var(--teal-bright)); }
.dc-stats-row {
  display: flex;
  gap: 0;
  margin: 20px 0 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.dc-stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.dc-stat:last-child { border-right: none; }
.dc-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal-light);
}
.dc-stat-lbl {
  font-size: 0.65rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dc-mentor-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dc-mentor-avatars { display: flex; }
.dm-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  margin-left: -6px;
  border: 2px solid var(--bg-card);
}
.dm-av:first-child { margin-left: 0; }
.dc-mentor-text { font-size: 0.75rem; color: var(--gray-300); }

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-3);
  border: 1px solid rgba(0,172,193,0.2);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.float-badge svg { width: 16px; height: 16px; color: var(--green); }
.badge-top  { top: -18px; right: 20px; }
.badge-bottom { bottom: -16px; left: 20px; }
.badge-bottom svg { color: var(--teal-light); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gray-500), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.2); opacity: 0; }
}

/* ──────────────────────────────────────────────
   STATS BAR
────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-light);
  display: inline;
}
.stat-sym {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-pale);
}
.stat-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 2px;
}
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.07); }

/* ──────────────────────────────────────────────
   WHY
────────────────────────────────────────────── */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,172,193,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.wc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 20px;
}
.wc-icon.teal { background: rgba(0,172,193,0.1); color: var(--teal-light); border: 1px solid rgba(0,172,193,0.2); }
.wc-icon.blue { background: rgba(25,118,210,0.1); color: var(--navy-pale); border: 1px solid rgba(25,118,210,0.2); }
.wc-icon.navy { background: rgba(13,71,161,0.12); color: var(--navy-pale); border: 1px solid rgba(13,71,161,0.25); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.875rem; color: var(--gray-300); line-height: 1.7; }

/* ──────────────────────────────────────────────
   PROGRAMS
────────────────────────────────────────────── */
.programs { background: var(--bg-2); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.prog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.prog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,172,193,0.2);
  box-shadow: 0 20px 52px rgba(0,0,0,0.4);
}
.prog-card.featured {
  border-color: rgba(0,172,193,0.25);
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-4) 100%);
  box-shadow: 0 0 60px rgba(0,172,193,0.08);
}
.prog-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.pc-popular {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  padding: 4px 10px;
  border-radius: 99px;
}
.pc-icon { width: 48px; height: 48px; color: var(--teal-light); }
.prog-card.featured .pc-icon { color: var(--teal-bright); }
.prog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.prog-card p { font-size: 0.875rem; color: var(--gray-300); line-height: 1.65; flex: 1; }
.pc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pc-meta span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-500);
  background: rgba(255,255,255,0.05);
  border-radius: 99px;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.07);
}
.pc-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pc-skills span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal-light);
  border: 1px solid rgba(0,172,193,0.25);
  border-radius: 4px;
  padding: 2px 8px;
  background: rgba(0,172,193,0.06);
}
.pc-btn { margin-top: auto; }
.programs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 16px;
}
.programs-footer p { color: var(--gray-300); font-size: 0.9rem; }

/* ──────────────────────────────────────────────
   HOW IT WORKS
────────────────────────────────────────────── */
.how { background: var(--bg); }
.how-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.how-connector {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,172,193,0.3), rgba(13,71,161,0.3), transparent);
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.hs-node {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1.5px solid rgba(0,172,193,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 0 0 6px var(--bg);
}
.how-step:hover .hs-node {
  border-color: var(--teal-light);
  background: rgba(0,172,193,0.1);
  box-shadow: 0 0 0 6px var(--bg), 0 0 28px var(--teal-glow);
}
.hs-node span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-light);
}
.hs-body { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hs-icon { width: 26px; height: 26px; color: var(--teal); }
.hs-body h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}
.hs-body p {
  font-size: 0.78rem;
  color: var(--gray-300);
  line-height: 1.55;
}

/* ──────────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────────── */
.testimonials { background: var(--bg-2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform var(--transition), border-color var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,172,193,0.18);
}
.tc-stars {
  color: var(--teal-light);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.tc-quote {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tc-name { font-weight: 700; font-size: 0.9rem; }
.tc-role { font-size: 0.75rem; color: var(--gray-300); margin-top: 2px; }
.tc-hike {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px;
  padding: 4px 10px;
}
.testi-logos { text-align: center; }
.testi-logos p {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.company-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.company-list span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}
.company-list span:hover { color: var(--gray-300); }

/* ──────────────────────────────────────────────
   ENROLL
────────────────────────────────────────────── */
.enroll { background: var(--bg); }
.enroll-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  border: 1px solid rgba(0,172,193,0.15);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  box-shadow: 0 0 100px rgba(13,71,161,0.1);
}
.enroll-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,172,193,0.08) 0%, transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}
.enroll-left .section-tag { margin-bottom: 12px; }
.enroll-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.enroll-left > p {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.enroll-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.enroll-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-300);
}
.enroll-perks svg {
  width: 16px; height: 16px;
  color: var(--teal-light);
  flex-shrink: 0;
}

/* ── Form ── */
.enroll-form {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.enroll-form h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.form-group select option { background: var(--bg-3); }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(0,172,193,0.45);
  box-shadow: 0 0 0 3px rgba(0,172,193,0.1);
}
.form-group input::placeholder { color: var(--gray-500); }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 13px 16px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 500;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-success.show { display: flex; }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 12px;
}

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 240px;
}
.footer-reg { margin-top: 10px; font-size: 0.75rem !important; }
.footer-parent { color: var(--teal-light); transition: color var(--transition-fast); }
.footer-parent:hover { color: var(--white); }
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li {
  color: var(--gray-500);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--gray-500);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ──────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner   { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; padding-bottom: 60px; }
  .hero-visual  { display: none; }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .programs-grid{ grid-template-columns: repeat(2, 1fr); }
  .how-steps    { grid-template-columns: repeat(3, 1fr); }
  .how-connector{ display: none; }
  .enroll-box   { grid-template-columns: 1fr; padding: 48px 36px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(4,13,28,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0; padding: 16px 0;
    border-bottom: 1px solid rgba(0,172,193,0.12);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 1rem; }
  .nav-cta { margin: 8px 24px; text-align: center; border-radius: var(--radius-sm) !important; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .stats-inner  { justify-content: center; gap: 20px; }
  .stat-divider { display: none; }
  .why-grid     { grid-template-columns: 1fr; }
  .programs-grid{ grid-template-columns: 1fr; }
  .testi-grid   { grid-template-columns: 1fr; }
  .how-steps    { grid-template-columns: repeat(2, 1fr); }
  .enroll-box   { padding: 36px 24px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .how-steps { grid-template-columns: 1fr; }
  .programs-footer { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
