/* ═══════════════════════════════════════════
   LEARN.SANESTIX — AGENTIC AI MASTERY
   Black × Green Gradient Premium Theme
   ═══════════════════════════════════════════ */

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

:root {
  --bg:       #060b07;
  --bg2:      #0a1209;
  --bg3:      #0e1a0f;
  --bg4:      #132016;
  --bg5:      #182a1a;

  --g1:       #00e676;
  --g2:       #00c853;
  --g3:       #1b5e20;
  --g4:       #0a2e10;
  --g5:       #052209;

  --glow:     rgba(0,230,118,0.12);
  --glow2:    rgba(0,230,118,0.06);
  --glass-bg: rgba(10, 18, 11, 0.58);
  --glass-bg-strong: rgba(7, 14, 8, 0.84);
  --glass-stroke: rgba(255,255,255,0.10);
  --glass-highlight: rgba(255,255,255,0.06);
  --glass-shadow: 0 18px 48px rgba(0,0,0,0.34);

  --text:     #e8f5e9;
  --text2:    #81c784;
  --text3:    #4a7c52;
  --text4:    #2e4d34;

  --red:      #ff5252;
  --redd:     #1a0505;
  --red2:     #ff8a80;

  --amber:    #ffab40;
  --purple:   #9c6fff;
  --purpd:    #1a0e35;

  --border:   rgba(0,230,118,0.10);
  --border2:  rgba(0,230,118,0.20);
  --border3:  rgba(0,230,118,0.30);

  --radius:   10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font-head: 'Clash Display', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: linear-gradient(135deg, var(--g1), #69f0ae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g1);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text2);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.section { padding: 88px 0; }
.section-dark { background: var(--bg2); }

/* ── BUTTONS ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color: #030a04;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-cta-lg { font-size: 16px; padding: 16px 36px; }
.btn-cta-full { width: 100%; justify-content: center; font-size: 16px; padding: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--g1); background: var(--glow2); }
.btn-ghost-lg { font-size: 16px; padding: 15px 30px; }

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(90deg, #001a06, #003314, #001a06);
  color: var(--g1);
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.topbar strong { color: #fff; }
.topbar-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--g1);
  flex-shrink: 0;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)),
    var(--glass-bg);
  border: 1px solid var(--glass-stroke);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 18px 40px rgba(0,0,0,0.28);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
nav::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0.6;
  pointer-events: none;
}
nav.scrolled {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025)),
    var(--glass-bg-strong);
  border-color: rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), var(--glass-shadow);
}
.nav-inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 16px 0 22px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0,230,118,0.3);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo-learn { color: var(--text); }
.logo-dot-sep { color: var(--g1); }
.logo-brand { color: var(--g1); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text2);
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  transition: color 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)), rgba(37,211,102,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-wa-btn:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)), rgba(37,211,102,0.14);
  border-color: rgba(37,211,102,0.45);
  transform: translateY(-1px);
}
.nav-cta { font-size: 13px; padding: 9px 20px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  padding: 8px;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: background 0.15s, border-color 0.15s;
}
.nav-hamburger:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 20px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(8,14,9,0.88);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  margin-top: 10px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 14px;
  color: var(--text2);
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s, background 0.15s;
  border-radius: 10px;
}
.nav-mobile a:hover {
  color: var(--g1);
  background: rgba(255,255,255,0.04);
}
.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  flex-wrap: wrap;
}

/* ── HERO ── */
.hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 35%, black 0%, transparent 70%);
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.3;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-1 {
  top: -180px; left: -140px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,230,118,0.09) 0%, transparent 60%);
}
.hero-glow-2 {
  bottom: -100px; right: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,200,83,0.07) 0%, transparent 60%);
}
.hero-glow-3 {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,230,118,0.025) 0%, transparent 70%);
}

/* Hero layout — two columns on desktop */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 52px;
  position: relative;
  z-index: 2;
}

/* ── HERO LEFT ── */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--g1);
  border: 1px solid var(--border2);
  background: rgba(0,230,118,0.06);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 26px;
  animation: fadeSlideUp 0.6s ease both;
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 22px;
  animation: fadeSlideUp 0.6s 0.1s ease both;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
  animation: fadeSlideUp 0.6s 0.15s ease both;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}
.bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.bullet-check {
  width: 19px; height: 19px;
  min-width: 19px;
  border-radius: 50%;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--g1);
  margin-top: 1px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.6s 0.25s ease both;
}
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--red2);
  margin-bottom: 28px;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}
.urgency-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

/* Stat pills */
.hero-stat-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  animation: fadeSlideUp 0.6s 0.35s ease both;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 100px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--g1);
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  color: var(--text3);
  font-weight: 400;
}

/* ── HERO RIGHT ── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}

/* Media grid: photo + video side by side */
.hero-media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
  align-items: stretch;
}

/* Photo card */
.hero-photo-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)), rgba(10,18,11,0.56);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--glass-shadow);
  position: relative;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,11,7,0.1) 30%,
    rgba(6,11,7,0.88) 100%
  );
}
.hero-photo-badge {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--g1);
  background: rgba(6,11,7,0.75);
  border: 1px solid var(--border2);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 4px 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pulse-dot-sm {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--g1);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.hero-photo-bottom {
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
}
.instructor-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.instructor-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}
.instructor-chip-sep {
  font-size: 10px;
  color: var(--text3);
}
.instructor-av {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.instructor-av-teal { background: linear-gradient(135deg, #00bfa5, #00897b); color: #fff; }
.instructor-av-purple { background: linear-gradient(135deg, #9c6fff, #7c4dff); color: #fff; }
.hero-photo-caption {
  font-size: 10px;
  color: var(--text3);
  margin: 0;
}

/* Video card */
.hero-video-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)), rgba(10,18,11,0.60);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 48px rgba(0,0,0,0.30);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.hero-video-label-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  flex-shrink: 0;
}
.hero-video-label-row span:first-of-type { flex: 1; }
.hero-video-dur {
  font-size: 10px;
  color: var(--text3);
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
}
.hero-video-embed-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 140px;
  background: var(--bg5);
  cursor: pointer;
}
.hero-video-embed-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.hero-video-placeholder {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.hero-video-dim {
  position: absolute; inset: 0;
  background: rgba(6,11,7,0.4);
  transition: background 0.2s;
}
.hero-video-placeholder:hover .hero-video-dim { background: rgba(6,11,7,0.2); }
.play-btn-ring {
  position: relative;
  z-index: 2;
}
.play-btn-ring::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,230,118,0.35);
  animation: ringPulse 2s infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.2); }
}
.play-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,230,118,0.45);
  transition: transform 0.2s;
  position: relative;
  z-index: 2;
}
.hero-video-placeholder:hover .play-circle { transform: scale(1.1); }
.play-label {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.hero-video-footer {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* Bottom stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  gap: 0;
}
.hero-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--g1);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 10px;
  color: var(--text3);
  font-weight: 400;
  line-height: 1.3;
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border2);
  flex-shrink: 0;
  margin: 0 4px;
}

/* Fade-slide animation */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--g1);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
/* SEATS CARD (shared, used in other sections) */
.seats-card {
  margin-top: 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.seats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.seats-label { font-size: 13px; color: var(--text2); }
.seats-count { font-size: 13px; font-weight: 500; color: var(--red2); }
.seats-bar {
  height: 5px;
  background: var(--bg5);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}
.seats-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--g1), var(--g2));
  border-radius: 99px;
  transition: width 1s ease;
}
.seats-note { font-size: 11px; color: var(--text3); }

/* ── AUTHORITY STRIP ── */
.authority-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.authority-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.auth-cell {
  padding: 22px 36px;
  border-right: 1px solid var(--border);
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.auth-cell:last-child { border-right: none; }
.auth-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 5px;
}
.auth-value {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* ACTIVITY BAR */
.activity-bar {
  background: linear-gradient(90deg, var(--g5), var(--bg3), var(--g5));
  border-bottom: 1px solid var(--border);
  padding: 9px 24px;
}
.activity-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.activity-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--g1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--g1);
  animation: pulse 1.5s infinite;
}
.activity-text { font-size: 13px; color: var(--text2); }

/* URGENCY STRIP */
.urgency-strip {
  background: linear-gradient(90deg, var(--redd), #180a0a, var(--redd));
  border-top: 1px solid rgba(255,82,82,0.2);
  border-bottom: 1px solid rgba(255,82,82,0.2);
  padding: 12px 0;
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.urg-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--red2);
}
.urg-left strong { color: #fff; }
.countdown { display: flex; gap: 6px; align-items: center; }
.cd-unit {
  background: #200808;
  border: 1px solid rgba(255,82,82,0.3);
  border-radius: 7px;
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
}
.cd-n {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  display: block;
  line-height: 1;
}
.cd-l { font-size: 9px; color: #c05050; margin-top: 2px; letter-spacing: 0.05em; }
.cd-sep { font-size: 18px; font-weight: 700; color: var(--red); }

/* ── PROBLEM ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-top: 52px;
  align-items: start;
}
.problem-items { display: flex; flex-direction: column; gap: 0; }
.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.problem-item:last-child { border-bottom: none; }
.problem-x {
  width: 24px; height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(255,82,82,0.1);
  border: 1px solid rgba(255,82,82,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  color: var(--red);
  margin-top: 2px;
}
.problem-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.problem-item p { font-size: 14px; font-weight: 300; color: var(--text2); line-height: 1.65; }
.problem-callout {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.callout-quote {
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 28px;
  border-left: 3px solid var(--purple);
  padding-left: 18px;
}
.callout-stat {
  font-family: var(--font-head);
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--g1), #69f0ae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.callout-stat-label { font-size: 13px; color: var(--text2); margin-top: 5px; margin-bottom: 24px; }
.callout-divider { height: 1px; background: var(--border); margin: 20px 0; }
.callout-note { font-size: 14px; font-weight: 300; color: var(--text2); line-height: 1.7; }

/* ── LEARN GRID ── */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.learn-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.learn-card:hover { border-color: var(--g1); transform: translateY(-2px); }
.lcard-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.lcard-icon-teal {
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.2);
  color: var(--g1);
}
.learn-card h4 { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.learn-card p { font-size: 13px; font-weight: 300; color: var(--text2); line-height: 1.65; }

/* ── CURRICULUM ── */
.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
}
.week-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}
.week-card:hover { border-color: var(--purple); }
.week-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(156,111,255,0.1);
  color: var(--purple);
  border: 1px solid rgba(156,111,255,0.25);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 13px;
}
.week-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.week-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.week-card ul li { font-size: 13px; font-weight: 300; color: var(--text2); display: flex; gap: 9px; }
.week-card ul li::before { content: '→'; color: var(--g1); font-weight: 700; flex-shrink: 0; }

/* ── SCHEDULE ── */
.schedule-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-top: 48px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.sched-item {
  flex: 1;
  min-width: 160px;
  padding: 0 32px;
}
.sched-item:first-child { padding-left: 0; }
.sched-item:last-child { padding-right: 0; }
.sched-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  min-height: 60px;
}
.sched-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 6px;
}
.sched-value {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.sched-sub { font-size: 12px; font-weight: 300; color: var(--text2); }
.sched-link { color: var(--g1); font-size: 15px; }

/* ── PROJECTS ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.project-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)), rgba(10,18,11,0.54);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.project-card:hover {
  border-color: rgba(245,158,11,0.35);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
}
.proj-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 15px;
}
.project-card h4 { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.project-card p { font-size: 13px; font-weight: 300; color: var(--text2); line-height: 1.6; }

/* ── TRANSFORM ── */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 52px;
}
.transform-col {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.transform-before { border-top: 2px solid var(--red); }
.transform-after { border-top: 2px solid var(--g1); }
.transform-col h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.transform-before h3 { color: var(--red); }
.transform-after h3 { color: var(--g1); }
.transform-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.transform-before ul li { color: var(--text2); font-weight: 300; display: flex; gap: 10px; font-size: 14px; }
.transform-before ul li::before { content: '✕'; color: var(--red); font-weight: 700; }
.transform-after ul li { color: var(--text); font-weight: 400; display: flex; gap: 10px; font-size: 14px; }
.transform-after ul li::before { content: '✓'; color: var(--g1); font-weight: 700; }
.transform-arrow {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, var(--g1), #69f0ae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── TESTIMONIALS ── */
.testi-video-feature {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}
.testi-vid-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  padding-top: 177.78%; /* 9:16 vertical ratio for Shorts */
  background: var(--bg4);
  cursor: pointer;
  max-width: 340px;
}
.testi-vid-placeholder {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  transition: border-color 0.2s;
  cursor: pointer;
}
.testi-vid-placeholder:hover { border-color: var(--g1); }
.testi-play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.testi-vid-placeholder:hover .testi-play-btn { transform: scale(1.08); }
.testi-vid-name { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--text); }
.testi-vid-role { font-size: 12px; color: var(--text2); }
.testi-vid-label {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-weight: 600;
  background: var(--g4);
  color: var(--g1);
  border: 1px solid var(--g3);
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.testi-vid-quote blockquote {
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  border-left: 3px solid var(--g1);
  padding-left: 18px;
}
.tcard-stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,230,118,0.1);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--g1);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text2); }
.testi-outcome {
  display: inline-block;
  margin-top: 4px;
  background: rgba(0,230,118,0.08);
  color: var(--g1);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 500;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.tcard {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s;
}
.tcard:hover { border-color: var(--g1); }
.tcard-text {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}
.tcard-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* SMALL VIDEO TESTIMONIALS */
.testi-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testi-vid-sm {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.testi-vid-sm:hover { border-color: var(--g1); }
.testi-vid-sm iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
}
.testi-play-sm {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.testi-vid-sm:hover .testi-play-sm { transform: scale(1.05); }
.testi-sm-label {
  position: absolute; top: 10px; right: 10px;
  font-size: 10px;
  background: var(--g4);
  color: var(--g1);
  border: 1px solid var(--g3);
  padding: 2px 7px;
  border-radius: 99px;
}
/* ── INSTRUCTORS ── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}
.founder-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)), rgba(10,18,11,0.58);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.founder-card:hover {
  border-color: rgba(0,230,118,0.26);
  box-shadow: 0 20px 42px rgba(0,0,0,0.24);
  transform: translateY(-2px);
}
.founder-top { display: flex; align-items: center; gap: 16px; }
.founder-av {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}
.founder-av-teal { background: rgba(0,230,118,0.1); border: 2px solid rgba(0,230,118,0.3); color: var(--g1); }
.founder-av-purple { background: rgba(156,111,255,0.1); border: 2px solid rgba(156,111,255,0.3); color: var(--purple); }
.founder-name { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.founder-role { font-size: 13px; color: var(--g1); font-weight: 400; }
.founder-bio { font-size: 14px; font-weight: 300; color: var(--text2); line-height: 1.75; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ftag {
  font-size: 11px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 4px 11px;
  border-radius: 99px;
}
.founder-links { display: flex; gap: 14px; }
.founder-link { font-size: 13px; font-weight: 600; color: var(--g1); transition: color 0.15s; }
.founder-link:hover { color: #fff; }
.instructor-note {
  margin-top: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
}
.instructor-note p { font-size: 15px; font-weight: 300; color: var(--text2); line-height: 1.75; }
.instructor-note strong { color: var(--text); }

/* ── PRICING ── */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-top: 52px;
  align-items: start;
}
.offer-list { display: flex; flex-direction: column; gap: 10px; }
.offer-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 17px;
  transition: border-color 0.2s;
}
.offer-item:hover { border-color: var(--g1); }
.offer-check {
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--g1);
  margin-top: 1px;
}
.offer-title { font-size: 14px; font-weight: 600; display: block; margin-bottom: 2px; color: var(--text); }
.offer-desc { font-size: 12px; font-weight: 300; color: var(--text2); line-height: 1.5; }
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 38px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--g1), #69f0ae, var(--g2));
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.12);
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.price-old { font-size: 15px; color: var(--text3); text-decoration: line-through; margin-bottom: 6px; }
.price-main {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}
.price-main sup { font-size: 24px; vertical-align: super; margin-right: 2px; }
.price-note { font-size: 13px; font-weight: 300; color: var(--text2); margin-bottom: 28px; }
.price-scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--red2);
  margin-top: 12px;
}
.price-deadline { font-size: 12px; color: var(--text3); margin-top: 7px; }
.pricing-divider { height: 1px; background: var(--border); margin: 22px 0; }
.installment-label { font-size: 12px; font-weight: 300; color: var(--text2); margin-bottom: 5px; }
.installment-link { font-size: 14px; font-weight: 600; color: var(--g1); }

/* ── FAQ ── */
.faq-wrap {
  max-width: 700px;
  margin: 48px auto 0;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.faq-arrow { font-size: 18px; color: var(--g1); transition: transform 0.2s; }
.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text2);
  line-height: 1.75;
  padding: 0 0 20px;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(90deg); }

/* ── FORM ── */
.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--g1), #69f0ae, var(--g2));
}
.form-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  color: var(--text);
}
.form-sub { font-size: 14px; font-weight: 300; color: var(--text2); text-align: center; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
}
.label-opt { color: var(--text4); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-group input,
.form-group select {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text4); }
.form-group input:focus,
.form-group select:focus { border-color: var(--g1); }
.form-group select option { background: var(--bg3); }
.form-submit { margin-top: 8px; }
.form-privacy { font-size: 12px; font-weight: 300; color: var(--text3); text-align: center; margin-top: 12px; }
.form-privacy a { color: var(--g1); }
.form-or {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 0;
}
.form-or hr { flex: 1; border: none; border-top: 1px solid var(--border); }
.form-or span { font-size: 12px; color: var(--text3); white-space: nowrap; }
.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.22);
  border-radius: 9px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #25d366;
  transition: background 0.15s;
  text-decoration: none;
}
.wa-btn:hover { background: rgba(37,211,102,0.13); }

/* ── FINAL CTA ── */
.final-cta-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(0,230,118,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-h {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text);
}
.final-cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text2);
  max-width: 480px;
  margin: 0 auto 32px;
}
.final-seats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--red2);
  margin-top: 14px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-dot { color: var(--g1); }
.footer-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text2);
  line-height: 1.7;
  max-width: 250px;
  margin-bottom: 14px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text2);
}
.footer-contact a { color: var(--g1); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--g1);
  opacity: 0.8;
}
.footer-link-icon {
  display: flex !important;
  align-items: center;
  gap: 7px;
}
.footer-link-icon svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.footer-link-icon:hover svg { opacity: 1; }
.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: var(--text2);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--g1); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text3);
}

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,18,9,0.96);
  border-top: 1px solid var(--border2);
  backdrop-filter: blur(16px);
  z-index: 90;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-text { font-size: 13px; color: var(--text2); }
.sticky-text strong { color: var(--text); }
.sticky-btn { font-size: 13px; padding: 10px 22px; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 72px; right: 22px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  padding: 11px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 89;
  transition: transform 0.15s, opacity 0.15s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.04); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-left { align-items: center; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-bullets { align-items: flex-start; text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-urgency { justify-content: center; }
  .hero-right { max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-media-grid { grid-template-columns: 1.1fr 0.9fr; }
  .hero-photo-wrap { min-height: 220px; }
}
@media (max-width: 900px) {
  .learn-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .testi-video-feature { grid-template-columns: 1fr; }
  .testi-vid-wrap { max-width: 280px; margin: 0 auto; }
  .founders-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .transform-grid { grid-template-columns: 1fr; }
  .transform-arrow { display: none; }
}
@media (max-width: 720px) {
  nav {
    width: calc(100% - 24px);
    top: 12px;
  }
  .nav-inner {
    padding: 0 12px 0 18px;
    min-height: 62px;
  }
  .nav-links { display: none; }
  .nav-wa-btn { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 680px) {
  .learn-grid { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-video-grid { grid-template-columns: 1fr; }
  .hero-bullets { flex-direction: column; }
  .problem-grid { grid-template-columns: 1fr; }
  .schedule-card { flex-direction: column; gap: 22px; }
  .sched-sep { width: 100%; height: 1px; min-height: auto; }
  .sched-item { padding: 0; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .sticky-text { display: none; }
  .authority-inner { flex-direction: column; }
  .auth-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .auth-cell:last-child { border-bottom: none; }
  .hero-stat-pills { flex-direction: column; gap: 8px; }
  .stat-pill { width: 100%; }
}

/* ═══════════════════════════════════════════
   VIDEO TESTIMONIALS SECTION
   ═══════════════════════════════════════════ */

/* ── VERTICAL SHORT TESTIMONIALS ── */
.testi-vertical-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 420px;
  margin: 0 auto;
}

/* The Short Video Card */
.testi-short-card {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.testi-short-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.testi-short-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.testi-short-label {
  font-size: 12px;
  color: var(--text3);
  font-weight: 500;
}

/* 9:16 Short embed area */
.testi-short-embed {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-height: 580px;
  background: #000;
  position: relative;
  overflow: hidden;
}

.testi-short-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a2a1a 0%, #0d1f0d 60%, #0a1a0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  transition: filter 0.2s;
}
.testi-short-placeholder:hover { filter: brightness(1.1); }

.testi-short-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(120,200,80,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.play-circle {
  width: 64px;
  height: 64px;
  background: var(--g1, #8bd946);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(139,217,70,0.12), 0 0 0 24px rgba(139,217,70,0.05);
  transition: transform 0.2s;
}
.testi-short-placeholder:hover .play-circle { transform: scale(1.08); }

.play-label {
  color: #e2f0d4;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
.play-sublabel {
  color: rgba(226,240,212,0.5);
  font-size: 12px;
  margin: 0;
}

.testi-short-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.testi-short-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}

.testi-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text2);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.testi-yt-link:hover { color: var(--g1); }

/* Stats Row */
.testi-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.testi-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 12px;
  text-align: center;
}

.testi-stat-icon { font-size: 20px; }

.testi-stat-num {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--g1, #8bd946);
  line-height: 1;
}

.testi-stat-label {
  font-size: 11px;
  color: var(--text3);
  font-weight: 500;
  line-height: 1.3;
}

.testi-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Proof Cards Grid */
.testi-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
}

@media (max-width: 560px) {
  .testi-proof-grid { grid-template-columns: 1fr; }
  .testi-vertical-wrap { max-width: 100%; }
  .testi-short-embed { max-height: 440px; }
}

.testi-proof-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color 0.2s;
}
.testi-proof-card:hover { border-color: var(--border2); }

.testi-proof-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.testi-proof-card h4 {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.testi-proof-card p {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
  margin: 0;
}
