/* ==============================================
   Capital Finplus Academy — V5 Master
   Theme: Galaxy Dark · Manrope · Purple Accent
   Built: 2026
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&display=swap');

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: #0a0804;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (pointer: fine) { body { cursor: none; } }

/* ─── CUSTOM CURSOR ──────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: #F4C20D;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(244,194,13,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

/* ─── GALAXY CANVAS ──────────────────────────── */
#galaxy-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── NOISE OVERLAY ──────────────────────────── */
.noise-overlay {
  position: fixed; inset: 0;
  z-index: 1; pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── CONTENT WRAPPER ────────────────────────── */
.content-wrapper { position: relative; z-index: 2; }

/* ─── CSS VARIABLES ──────────────────────────── */
:root {
  --purple: #F4C20D;
  --purple-dim: rgba(244,194,13,0.12);
  --purple-mid: rgba(244,194,13,0.35);
  --purple-bright: rgba(244,194,13,0.6);
  --purple-glow: rgba(244,194,13,0.5);
  --lilac: #FFE066;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --muted-2: rgba(255,255,255,0.3);
  --surface-1: rgba(16,12,2,0.65);
  --surface-2: rgba(20,16,4,0.75);
  --surface-3: rgba(28,22,6,0.85);
  --border: rgba(244,194,13,0.14);
  --border-hover: rgba(244,194,13,0.45);
  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ─── UTILITIES ──────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 5vw; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

.section-tag {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.25rem;
  display: block;
}

.purple-line {
  width: 44px; height: 1px;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  margin-bottom: 1.75rem;
}

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 3px;
  cursor: pointer; text-decoration: none;
  transition: all 0.3s ease; border: none;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 0.7rem; }
.btn-primary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--purple);
  box-shadow: 0 0 20px rgba(244,194,13,0.25), inset 0 0 20px rgba(244,194,13,0.06);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,194,13,0.2) 0%, transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(244,194,13,0.55), inset 0 0 30px rgba(244,194,13,0.12);
  transform: translateY(-2px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* ─── NAVIGATION ─────────────────────────────── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 500;
  display: flex; align-items: center;
  padding: 0 2.5vw 0 5vw;
  background: rgba(10,8,3,0.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(244,194,13,0.08);
  transition: background 0.4s;
  justify-content: space-between;
}
nav#navbar.scrolled { background: rgba(10,8,3,0.88); }

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem; font-weight: 300;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-logo .logo-lambda { font-family: 'Montserrat', sans-serif; }
.nav-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.nav-logo-dot {
  width: 30px; height: 31px;
  flex-shrink: 0;
  overflow: visible;
  filter: drop-shadow(0 0 5px rgba(244,194,13,0.55)) drop-shadow(0 0 14px rgba(244,194,13,0.2));
  transition: filter 0.3s;
}
.nav-logo:hover .nav-logo-dot {
  filter: drop-shadow(0 0 9px rgba(244,194,13,0.85)) drop-shadow(0 0 24px rgba(244,194,13,0.4));
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 10px var(--purple); }
  50% { opacity:0.5; transform:scale(0.7); box-shadow: 0 0 4px var(--purple); }
}
.nav-logo span { color: var(--purple); }

/* Profile-icon button (My Account) — replaces the plain text nav link */
.nav-account-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(244,194,13,0.1); border: 1px solid rgba(244,194,13,0.35);
  color: var(--purple); flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-account-btn svg { width: 18px; height: 18px; }
.nav-account-btn:hover { background: var(--purple); border-color: var(--purple); color: #0c0a02; }
.mobile-nav .nav-account-btn-mobile {
  display: flex; align-items: center; gap: 10px;
}
.mobile-nav .nav-account-btn-mobile svg { width: 18px; height: 18px; color: var(--purple); }

.nav-right {
  display: flex; align-items: center; gap: 1.75rem;
}
.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
  list-style: none;
}
/* The "My Account" link added a 7th nav item — tighten gaps just below
   1400px (common laptop widths) so it doesn't overflow before the
   hamburger breakpoint kicks in at 1024px. */
@media (max-width: 1400px) {
  .nav-right { gap: 1.6rem; }
  .nav-links { gap: 1.4rem; }
}
.nav-links a {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--purple);
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* Knowledge dropdown (Blog + Backtesting) */
.nav-dropdown { position: relative; padding-bottom: 0.4rem; margin-bottom: -0.4rem; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer; background: none; border: none;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-family: 'Manrope', sans-serif;
  transition: color 0.25s;
}
.nav-dropdown-toggle .caret { font-size: 0.6rem; transition: transform 0.25s; }
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle { color: #fff; }
.nav-dropdown:hover .caret,
.nav-dropdown.open .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 170px; padding: 0.5rem;
  background: rgba(16,12,2,0.97);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 60; list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: block; padding: 0.55rem 0.75rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-radius: 6px; transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: rgba(244,194,13,0.1); color: #fff; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,8,3,0.97);
  border-bottom: 1px solid var(--border);
  padding: 2rem 5vw;
  z-index: 499;
  flex-direction: column; gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.88rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: #fff; }

/* ─── HERO ───────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,194,13,0.1);
  border: 1px solid rgba(244,194,13,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lilac); margin-bottom: 1.75rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-headline .thin { font-weight: 300; }
.hero-headline .accent {
  color: var(--purple);
  text-shadow: 0 0 40px rgba(244,194,13,0.45);
}
.hero-sub {
  font-size: 0.97rem; color: var(--muted);
  line-height: 1.8; max-width: 460px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}
.hero-sub .hero-ask-us { color: #fff; font-weight: 700; white-space: nowrap; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero card */
.hero-card {
  background: rgba(20,16,4,0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(244,194,13,0.08);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.hc-label { font-size: 0.7rem; color: var(--muted); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.hc-value { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; }
.hc-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  padding: 4px 10px; border-radius: 100px;
  font-size: 0.76rem; font-weight: 600;
}
.hc-chart { width: 100%; height: 90px; margin-bottom: 1.5rem; }
.hc-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(244,194,13,0.1);
}
.hc-metric-label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.hc-metric-val { font-size: 1rem; font-weight: 700; }
.hc-tickers { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }
.hc-ticker {
  background: rgba(244,194,13,0.1);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem; font-weight: 600;
}
.hc-ticker .pos { color: #4ade80; margin-left: 4px; }
.hc-ticker .neg { color: #f87171; margin-left: 4px; }

/* ─── STATS STRIP ────────────────────────────── */
#stats {
  background: rgba(12,9,4,0.8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 4rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 40px rgba(244,194,13,0.65), 0 0 80px rgba(244,194,13,0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  display: block;
}
[data-target] { transition: opacity 0.3s; }
.stats-pre-animate [data-target] { opacity: 0.4; }
.stat-label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ─── ABOUT / FOUNDER ────────────────────────── */
#about {
  background: rgba(16,12,2,0.7);
  border-top: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-left { order: 2; }
.about-right { order: 1; }
.about-left h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.about-left p {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.85; margin-bottom: 1rem;
}
.credential-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.75rem;
}
.cred-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(244,194,13,0.08);
  border: 1px solid rgba(244,194,13,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lilac);
  transition: all 0.25s;
}
.cred-badge:hover {
  background: rgba(244,194,13,0.18);
  border-color: var(--purple);
  box-shadow: 0 0 16px rgba(244,194,13,0.2);
}
.cred-badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--purple); flex-shrink: 0;
}

/* Founder card */
.founder-card {
  background: rgba(20,16,4,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(20px);
  position: sticky; top: calc(var(--nav-h) + 1.5rem);
}
.founder-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(244,194,13,0.4), rgba(154,115,0,0.4));
  border: 2px solid rgba(244,194,13,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800; color: var(--lilac);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 30px rgba(244,194,13,0.25);
  overflow: hidden;
}
.founder-avatar.has-photo {
  width: 140px; height: 140px;
  background: #120e02;
}
.founder-avatar.has-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
/* Enlarged after removing the CFA/SEBI stat tiles below, so the card's
   overall height still roughly matches the left column. */
.founder-avatar.founder-avatar-lg.has-photo { width: 190px; height: 190px; }
.founder-stats-grid-2 { grid-template-columns: 1fr 1fr; }
.blur-name { filter: blur(4px); user-select: none; }
.founder-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.founder-title { font-size: 0.78rem; color: var(--purple); letter-spacing: 0.06em; margin-bottom: 1.5rem; }
.founder-divider {
  height: 1px;
  background: linear-gradient(to right, var(--purple), transparent);
  margin-bottom: 1.5rem; opacity: 0.4;
}
.founder-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.85rem; margin-bottom: 1.5rem;
}
.f-stat-val { font-size: 1.3rem; font-weight: 800; color: #fff; }
.f-stat-lbl { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.founder-bio {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.75; font-style: italic;
  border-left: 2px solid rgba(244,194,13,0.3);
  padding-left: 1rem;
}

/* ─── PHILOSOPHY STRIP ────────────────────────── */
#philosophy {
  background: rgba(12,9,4,0.85);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-header { text-align: left; margin-bottom: 3.5rem; }
.philosophy-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.015em;
}
.philosophy-mission {
  max-width: 680px; margin: 1rem 0 0;
  font-size: 0.92rem; color: var(--muted); line-height: 1.8;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.philosophy-card {
  background: rgba(18,14,5,0.7);
  padding: 2.25rem;
  display: flex; flex-direction: column; gap: 1rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.philosophy-card:last-child { border-right: none; }
.philosophy-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .philosophy-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid-4 .philosophy-card:nth-child(2n) { border-right: none; }
  .philosophy-grid-4 .philosophy-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .philosophy-grid-4 { grid-template-columns: 1fr; }
  .philosophy-grid-4 .philosophy-card { border-right: none; border-bottom: 1px solid var(--border); }
  .philosophy-grid-4 .philosophy-card:last-child { border-bottom: none; }
}
.philosophy-card:hover { background: rgba(28,22,6,0.8); }
.philosophy-icon {
  width: 48px; height: 48px;
  background: rgba(244,194,13,0.1);
  border: 1px solid rgba(244,194,13,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.philosophy-icon svg { width: 22px; height: 22px; }
.philosophy-card h3 { font-size: 1rem; font-weight: 700; }
.philosophy-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ─── SERVICES ───────────────────────────────── */
#services {
  background: rgba(16,12,2,0.72);
  border-top: 1px solid var(--border);
}
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 4rem;
}
.services-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.015em;
}
.services-header-right {
  max-width: 300px;
  color: var(--muted); font-size: 0.88rem;
  line-height: 1.7; text-align: right;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.service-card {
  background: rgba(16,12,2,0.8);
  border: 1px solid var(--border);
  border-left: 2px solid var(--purple);
  padding: 2.25rem 2rem;
  position: relative; overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(244,194,13,0.08), transparent 65%);
  opacity: 0; transition: opacity 0.35s;
}
.service-card:hover {
  border-color: var(--purple-bright);
  box-shadow: 0 0 40px rgba(244,194,13,0.12);
  transform: translateY(-3px);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 44px; height: 44px; margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.service-icon svg {
  width: 100%; height: 100%;
  stroke: var(--purple); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 {
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.85rem;
  position: relative; z-index: 1;
}
.service-card p {
  font-size: 0.87rem; color: var(--muted);
  line-height: 1.78; position: relative; z-index: 1;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); background: none; border: none;
  cursor: pointer; margin-top: 1.25rem;
  transition: gap 0.25s, text-shadow 0.25s;
  position: relative; z-index: 1;
}
.service-link:hover { gap: 10px; text-shadow: 0 0 10px var(--purple); }

/* ─── DIFFERENTIATOR ─────────────────────────── */
#differentiator {
  background: rgba(12,9,4,0.82);
  border-top: 1px solid var(--border);
}
.diff-header { text-align: center; margin-bottom: 4rem; }
.diff-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.015em;
}
.diff-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.diff-col-header {
  padding: 1.25rem 2rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.diff-col-header.us {
  background: rgba(244,194,13,0.12);
  color: var(--lilac);
  border-right: 1px solid var(--border);
}
.diff-col-header.them {
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}
.diff-row {
  display: contents;
}
.diff-cell {
  padding: 1.4rem 2rem;
  font-size: 0.88rem; line-height: 1.6;
  border-bottom: 1px solid rgba(244,194,13,0.07);
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.diff-row:last-child .diff-cell { border-bottom: none; }
.diff-cell.us {
  background: rgba(244,194,13,0.04);
  color: rgba(255,255,255,0.85);
  border-right: 1px solid var(--border);
}
.diff-cell.them {
  color: var(--muted);
  background: rgba(255,255,255,0.01);
}
.diff-icon { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

/* ─── COURSES ────────────────────────────────── */
#courses {
  background: rgba(16,12,2,0.72);
  border-top: 1px solid var(--border);
}
.courses-header { margin-bottom: 3.5rem; }
.courses-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.015em; line-height: 1.05;
}
.courses-grid { display: block; }
.courses-group-heading {
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 1rem;
  text-align: center;
}
.courses-row { display: grid; gap: 1.5rem; }
.courses-row-pair { grid-template-columns: repeat(2, 1fr); }
.courses-row-single { grid-template-columns: 1fr; margin-top: 1.5rem; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.plans-grid .course-footer { flex-direction: column; align-items: stretch; gap: 1rem; }
.plans-grid .course-enroll { justify-content: center; width: 100%; }
.plans-grid .course-card h3 { text-transform: uppercase; letter-spacing: 0.01em; }
.courses-subheading {
  text-align: center; font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--purple); margin: 0 0 2rem;
}
@media (max-width: 900px) { .courses-row-pair { grid-template-columns: 1fr; } .plans-grid { grid-template-columns: 1fr; } }

.objective-card {
  position: relative;
  max-width: 760px;
  margin: 5rem auto 0;
  padding: 3.5rem 3rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(244,194,13,0.05), rgba(16,12,2,0.6));
  overflow: hidden;
}
.objective-glow {
  position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(244,194,13,0.18), transparent 70%);
  pointer-events: none;
}
.objective-heading {
  position: relative; font-size: 1.9rem; font-weight: 800; color: #fff;
  margin: 0.6rem 0 1.25rem; letter-spacing: -0.01em;
  text-transform: uppercase; line-height: 1.05;
}
.objective-lead {
  position: relative; color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem;
}
.objective-pillars {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-bottom: 2.25rem;
}
.objective-pillar {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  padding: 1.25rem 0.75rem;
  border: 1px solid var(--border); border-radius: 12px;
  color: var(--lilac); font-size: 0.95rem; font-weight: 700;
  background: rgba(244,194,13,0.03);
  transition: border-color 0.3s, transform 0.3s;
}
.objective-pillar:hover { border-color: var(--purple-bright); transform: translateY(-3px); }
.objective-pillar-num {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--purple);
}
.objective-footer {
  position: relative; color: var(--muted); font-style: italic; font-size: 0.95rem; margin: 0;
}
.objective-footer em { color: var(--purple); font-style: normal; font-weight: 700; }
@media (max-width: 700px) {
  .objective-card { padding: 2.5rem 1.5rem; }
  .objective-pillars { grid-template-columns: repeat(2, 1fr); }
}
.course-card {
  background: rgba(16,12,2,0.85);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.course-card:hover {
  border-color: var(--purple-bright);
  box-shadow: 0 0 40px rgba(244,194,13,0.15);
  transform: translateY(-4px);
}
.course-top-border {
  height: 2px;
  background: linear-gradient(90deg, var(--purple), rgba(244,194,13,0.08));
}
.course-body {
  padding: 2rem; flex: 1;
  display: flex; flex-direction: column;
}
.course-level {
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 0.85rem; font-weight: 600;
}
.course-card h3 {
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.01em; line-height: 1.35;
  margin-bottom: 0.5rem;
}
.course-subtitle {
  font-size: 0.78rem; color: var(--purple);
  font-style: italic; margin-bottom: 1rem;
}
.course-desc {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 1.25rem; flex: 1;
}
#course-features-content { padding: 2.25rem 2.5rem 2.5rem; }
.course-features-modal-top {
  height: 2px; margin: 0 -2.5rem 1.5rem; margin-top: -2.25rem;
  background: linear-gradient(90deg, var(--purple), rgba(244,194,13,0.05));
}
.course-features-modal-head { margin-bottom: 1.25rem; }
.course-features-modal-level {
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 0.6rem; font-weight: 600;
}
.course-features-modal-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.course-features-modal-sub { font-size: 0.85rem; color: var(--purple); font-style: italic; }
#course-features-content .course-features { margin-top: 1rem; }
.course-features { list-style: none; margin-bottom: 1.75rem; }
.course-features li {
  font-size: 0.82rem; color: var(--muted);
  padding: 0.4rem 0;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.course-features li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--purple);
  border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 6px var(--purple);
}
/* Multi-section bundle features (e.g. ESSENTIALS + EDGE + PRECISION) —
   rendered from course.featuresRich instead of a flat course.features
   list. 3+ sections lay out side by side (paired with .modal-wide on the
   modal itself); collapses to stacked below 900px regardless. */
.course-features-columns {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) { .course-features-columns { grid-template-columns: 1fr; gap: 0; } }
.course-features-group { margin-bottom: 1.75rem; }
.course-features-columns .course-features-group { margin-bottom: 0; }
.course-features-group:last-of-type { margin-bottom: 0; }
.course-features-closing {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(244,194,13,0.15);
  text-align: center;
}
.course-features-closing p {
  color: var(--lilac); font-size: 0.95rem; font-style: italic; line-height: 1.7;
}
.course-features-closing p:first-child {
  color: #fff; font-style: normal; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem;
}
.course-features-group-heading {
  font-size: 1rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--purple);
  text-decoration: underline; text-decoration-color: rgba(244,194,13,0.4);
  margin-bottom: 0.6rem;
}
.course-features-tagline { font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.course-features-intro { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.4rem; }
.course-features-learn-label { font-size: 0.78rem; font-weight: 700; color: var(--muted); margin: 0.75rem 0 0.4rem; }
.course-features-group .course-features { margin-bottom: 0.85rem; }
.course-features-outcome {
  font-size: 0.83rem; color: rgba(255,255,255,0.75); line-height: 1.65;
  background: rgba(244,194,13,0.08); border: 1px solid rgba(244,194,13,0.18);
  border-radius: 8px; padding: 0.85rem 1rem; margin-top: 0.5rem;
}
.course-features-outcome strong { color: var(--purple); }
.course-doc-preview { margin-top: 1.25rem; }
.course-doc-page {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem 1.5rem;
  overflow: hidden;
}
.course-doc-pagehead {
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.85rem;
  padding-bottom: 0.6rem; border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.course-doc-line {
  font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.8;
}
.course-doc-blur-wrap { position: relative; margin-top: 0.2rem; }
.course-doc-blur-wrap .course-doc-line {
  filter: blur(4px); user-select: none; pointer-events: none;
}
.course-doc-lock-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4rem; text-align: center;
  background: linear-gradient(180deg, rgba(16,12,2,0.2), rgba(16,12,2,0.9) 60%);
}
.course-doc-lock-icon { font-size: 1.3rem; }
.course-doc-lock-overlay p {
  font-size: 0.76rem; color: var(--lilac); font-weight: 600; max-width: 220px; margin: 0;
}
.course-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: auto; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.course-price {
  font-size: 1.4rem; font-weight: 800;
  color: var(--purple);
  text-shadow: 0 0 20px rgba(244,194,13,0.35);
}
.course-price-sub {
  font-size: 0.68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 2px;
}
.course-enroll {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  border: 1px solid rgba(244,194,13,0.4);
  padding: 9px 18px; border-radius: 3px;
  transition: all 0.3s; cursor: pointer;
  background: none; font-family: inherit;
}
.course-enroll:hover {
  border-color: var(--purple);
  color: var(--lilac);
  box-shadow: 0 0 20px rgba(244,194,13,0.3);
  gap: 10px;
}
.course-enroll svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

/* ─── TESTIMONIALS MARQUEE ────────────────────── */
#testimonials {
  background: rgba(12,9,4,0.8);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.testimonials-header { margin-bottom: 3rem; }
.testimonials-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.015em;
  text-transform: uppercase; line-height: 1.05;
}
.marquee-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.marquee-wrap::-webkit-scrollbar { display: none; }
.marquee-wrap::before,
.marquee-wrap::after {
  content: ''; position: absolute;
  top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(10,8,3,1), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(10,8,3,1), transparent);
}
.marquee-track {
  display: flex; gap: 1.25rem;
  width: max-content;
  cursor: grab;
}
.marquee-track.dragging { cursor: grabbing; }
.t-card {
  background: rgba(18,14,5,0.85);
  border: 1px solid var(--border);
  border-left: 2px solid var(--purple);
  border-radius: var(--radius);
  padding: 1.75rem;
  width: 340px;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
.t-card:hover { box-shadow: 0 0 30px rgba(244,194,13,0.12); }
.t-stars {
  display: flex; gap: 3px;
  color: var(--purple); font-size: 0.85rem;
  margin-bottom: 1rem;
}
.t-quote {
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
  line-height: 1.78; font-style: italic;
  margin-bottom: 1.25rem;
}
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(244,194,13,0.3), rgba(154,115,0,0.3));
  border: 1px solid rgba(244,194,13,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--lilac);
  flex-shrink: 0;
}
.t-name { font-size: 0.85rem; font-weight: 700; }
.t-role { font-size: 0.72rem; color: var(--muted); }

/* ─── BLOG PREVIEW ───────────────────────────── */
#blog-preview {
  background: rgba(16,12,2,0.72);
  border-top: 1px solid var(--border);
}
.blog-header { margin-bottom: 3.5rem; }
.blog-header-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.75rem; }
.blog-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.015em;
  text-transform: uppercase; line-height: 1.05;
}
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: rgba(18,14,5,0.85);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
  position: relative;
}
.blog-card:hover {
  box-shadow: 0 0 35px rgba(244,194,13,0.18);
  transform: translateY(-3px);
  border-color: var(--purple-bright);
}
.blog-card-img {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(18,14,5,0.9), rgba(80,60,5,0.8));
  position: relative; overflow: hidden;
}
.blog-card-img svg { width: 42px; height: 42px; position: relative; z-index: 1; opacity: 0.85; }
.blog-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(244,194,13,0.15), transparent 65%);
}
.blog-card-body {
  padding: 1.5rem; flex: 1;
  display: flex; flex-direction: column;
}
.blog-meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; }
.blog-category {
  font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--purple); font-weight: 600;
}
.blog-tag {
  font-size: 0.6rem; font-weight: 600;
  padding: 2px 8px; border-radius: 3px;
}
.tag-free { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.tag-premium { background: rgba(245,158,11,0.1); color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }
.tag-mostread { background: rgba(239,68,68,0.12); color: #fb7185; border: 1px solid rgba(239,68,68,0.3); }
.post-tag-mostread { background: rgba(239,68,68,0.12); color: #fb7185; border: 1px solid rgba(239,68,68,0.3); display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.64rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Manrope', sans-serif; }
.blog-card h3 {
  font-size: 1rem; font-weight: 700;
  line-height: 1.4; margin-bottom: 0.6rem;
}
.blog-card > .blog-card-body > p {
  font-size: 0.84rem; color: var(--muted);
  line-height: 1.7; flex: 1; margin-bottom: 1.25rem;
}
.blog-link {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap 0.25s, text-shadow 0.25s;
  background: none; border: none; padding: 0;
  cursor: pointer; -webkit-appearance: none; appearance: none;
}
.blog-link:focus { outline: none; }
.blog-link:hover { gap: 9px; text-shadow: 0 0 10px var(--purple); }

/* Locked card overlay */
.blog-card-locked {
  filter: blur(3px);
  pointer-events: none; user-select: none;
  flex: 1; margin-bottom: 1.25rem; overflow: hidden;
  max-height: 80px;
}
.blog-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(10,8,3,0.65);
  z-index: 2; gap: 0.5rem;
  backdrop-filter: blur(2px);
}
.lock-icon { font-size: 2rem; margin-bottom: 0.35rem; }
.blog-view-all { margin-top: 2.5rem; }

/* ─── CONTACT ────────────────────────────────── */
#contact-section {
  background: rgba(16,12,2,0.75);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start;
}
.contact-left h2 {
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.01em; line-height: 0.95;
  margin-bottom: 2rem;
}
.contact-left > p {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 2.5rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
a.contact-info-item,
a.contact-info-item:link,
a.contact-info-item:visited {
  display: flex; align-items: center; gap: 1rem;
  color: var(--muted); text-decoration: none;
  transition: transform 0.2s;
}
a.contact-info-item:hover { transform: translateX(4px); color: var(--muted); text-decoration: none; }
a.contact-info-item:hover .contact-info-icon { background: rgba(244,194,13,0.16); border-color: var(--purple); }
a.contact-info-item .contact-info-text,
a.contact-info-item .contact-info-text span { color: inherit; text-decoration: none; }
a.contact-info-item .contact-info-text strong { color: var(--purple); text-decoration: none; }
.contact-info-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(244,194,13,0.25);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244,194,13,0.06);
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 18px; height: 18px;
  stroke: var(--purple); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}
.contact-info-text { font-size: 0.87rem; color: var(--muted); }
.contact-info-text strong {
  display: block; font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 2px; font-weight: 500;
}
.contact-form-wrap {
  background: rgba(20,16,4,0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
}
.contact-form-wrap h3 {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
.required-asterisk { color: #f87171; }
.form-mandatory-note { font-size: 0.72rem; color: var(--muted-2); margin: -0.5rem 0 0.75rem; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,194,13,0.2);
  border-radius: 3px;
  padding: 11px 14px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.87rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 16px rgba(244,194,13,0.15);
}
.form-input select option { background: #0d0a02; color: #f0ead6; }
textarea.form-input { resize: vertical; min-height: 100px; }
.contact-success { display: none; text-align: center; padding: 2.5rem 0; }
.contact-success.show { display: block; }

/* ─── FINAL CTA ──────────────────────────────── */
#final-cta {
  background: rgba(11,8,3,0.88);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-inner { max-width: 800px; margin: 0 auto; padding: 0 5vw; }
.cta-headline {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 80px rgba(244,194,13,0.25);
}
.cta-sub {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.8; max-width: 480px;
  margin: 0 auto 3rem;
}
.cta-disclaimer {
  font-size: 0.7rem; color: var(--muted-2);
  margin-top: 2rem; line-height: 1.6;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: #000000;
  border-top: 1px solid rgba(244,194,13,0.08);
  padding: 4.5rem 5vw 2.5rem;
  position: relative; z-index: 2;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 300;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 1rem;
}
.footer-logo span { font-family: 'Montserrat', sans-serif; font-weight: 300; text-transform: uppercase; letter-spacing: 0.07em; }
.footer-logo-dot {
  width: 26px; height: 27px;
  flex-shrink: 0;
  overflow: visible;
  filter: drop-shadow(0 0 5px rgba(244,194,13,0.5)) drop-shadow(0 0 12px rgba(244,194,13,0.2));
}
.footer-logo span { color: var(--purple); }
.footer-tagline {
  font-size: 0.83rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 1.5rem;
  max-width: 260px;
}
.social-icons { display: flex; gap: 0.6rem; }
.social-icon {
  width: 36px; height: 36px; border-radius: 7px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-icon:hover {
  background: rgba(244,194,13,0.2);
  color: var(--lilac);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.66rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 1.25rem; font-weight: 700;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.84rem; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 2rem; flex-wrap: wrap;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.footer-disclaimer {
  font-size: 0.7rem; color: rgba(255,255,255,0.18);
  max-width: 600px; line-height: 1.65;
}

/* ─── MODAL ──────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  background: rgba(16,12,2,0.95);
  border: 1px solid rgba(244,194,13,0.35);
  border-radius: var(--radius);
  width: 100%; max-width: 520px;
  margin: 0 1.5rem;
  box-shadow: 0 0 100px rgba(244,194,13,0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), max-width 0.3s;
  overflow: hidden; position: relative;
}
.mc-step2-hint {
  font-size: 0.8rem; color: var(--muted);
  padding: 1rem 1.5rem 0;
  text-align: center;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-top-line {
  height: 2px;
  background: linear-gradient(90deg, var(--purple), rgba(244,194,13,0.08));
}
.modal-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(244,194,13,0.1);
}
.modal-header h3 {
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.modal-header p { font-size: 0.82rem; color: var(--muted); }
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1px solid rgba(244,194,13,0.2);
  color: var(--muted); font-size: 1rem;
  cursor: pointer; transition: color 0.3s, border-color 0.3s;
  width: 32px; height: 32px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: #fff; border-color: var(--purple); }
.modal-body { padding: 2rem; }
.modal-success {
  display: none; padding: 3.5rem 2rem;
  text-align: center;
}
.modal-success.show { display: block; }
.success-icon {
  width: 60px; height: 60px;
  border: 1px solid var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 40px rgba(244,194,13,0.4);
  animation: successPop 0.6s cubic-bezier(0.16,1,0.3,1);
}
@keyframes successPop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.success-icon svg { width: 26px; height: 26px; stroke: var(--purple); fill: none; stroke-width: 2.5; }
.modal-success h3 {
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.modal-success p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .services-header-right { text-align: left; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .diff-table { grid-template-columns: 1fr; }
  .diff-cell.us { border-right: none; }
  .diff-col-header.them,.diff-cell.them { display: none; }
}
@media (max-width: 768px) {
  .section-pad { padding: 75px 0; }
  .nav-links, nav#navbar .btn { display: none; }
  nav#navbar .btn.nav-keep { display: inline-flex; }
  .nav-hamburger { display: flex; }
  nav#navbar { padding: 0 4vw; }
  /* Group account icon + hamburger on the right — prevents icon floating to center */
  .nav-right { margin-left: auto; margin-right: 12px; }
  /* Logo shrinks so the wordmark never overruns the navbar */
  .nav-logo { font-size: 0.9rem; letter-spacing: 0.04em; gap: 8px; }
  .nav-logo span { letter-spacing: 0.04em; }
  .nav-logo-dot { width: 27px; height: 27px; font-size: 0.56rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  /* Buttons: full-width, centered and comfortably tappable */
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 0.85rem; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .btn { padding: 14px 24px; }
  .modal-form-grid { grid-template-columns: 1fr !important; }
}

/* ─── FLOATING WHATSAPP BUTTON ────────────────── */
#wa-float-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(37,211,102,0.4), 0 8px 28px rgba(37,211,102,0.45);
  z-index: 4000;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waPulse 2.6s ease-in-out infinite;
}
#wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 1px rgba(37,211,102,0.6), 0 10px 34px rgba(37,211,102,0.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5), 0 8px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0), 0 8px 28px rgba(37,211,102,0.45); }
}
@media (max-width: 640px) {
  #wa-float-btn { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .container { padding: 0 5vw; }
  /* Testimonials: narrow the edge fades so first/last card content isn't hidden */
  .marquee-wrap::before, .marquee-wrap::after { width: 36px; }
  .marquee-track { padding-left: 4vw; padding-right: 4vw; }
  /* Filter bar: pad right so chips don't hide behind floating action buttons */
  .filter-bar { padding-right: 72px; }
  .modal { margin: 0 1rem; }
  .modal-header { padding: 1.5rem 1.5rem 1.25rem; }
  .modal-body { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .founder-card { padding: 1.75rem; }
  .hero-card { padding: 1.5rem; }
  /* CTA + section buttons full-width on phones */
  #final-cta .btn,
  .cta-inner .btn { width: 100%; justify-content: center; }
  .blog-view-all .btn { width: 100%; justify-content: center; }
}

/* Small phones — keep the wordmark on a single line */
@media (max-width: 430px) {
  nav#navbar { padding: 0 3.5vw; }
  .nav-logo { font-size: 0.74rem; letter-spacing: 0.02em; gap: 7px; }
  .nav-logo span { letter-spacing: 0.02em; }
  .nav-logo-dot { width: 22px; height: 23px; }
  .footer-logo { font-size: 0.85rem; }
  .hero-headline { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .cta-headline { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .contact-left h2 { font-size: clamp(2.2rem, 11vw, 3rem); }
}

/* ─── FREE MASTERCLASS FLOATING WIDGET ────────── */
#masterclass-float-btn {
  position: fixed;
  bottom: 92px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #9A7300);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(244,194,13,0.4), 0 8px 28px rgba(244,194,13,0.45);
  z-index: 4000;
  transition: transform 0.25s, box-shadow 0.25s;
}
#masterclass-float-btn svg { width: 26px; height: 26px; }
#masterclass-float-btn:hover { transform: scale(1.08); }
#masterclass-float-btn.mc-shake { animation: mcShake 0.6s ease-in-out 0s 4; }
@keyframes mcShake {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(6deg); }
}
#masterclass-popup {
  position: fixed;
  bottom: 158px; right: 24px;
  width: min(300px, calc(100vw - 48px));
  background: rgba(16,12,2,0.97);
  border: 1px solid rgba(244,194,13,0.35);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  z-index: 4001;
  opacity: 0; pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.25s, transform 0.25s;
}
#masterclass-popup.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.mc-popup-close {
  position: absolute; top: 0.85rem; right: 0.85rem;
  width: 26px; height: 26px; border-radius: 6px;
  background: none; border: 1px solid rgba(244,194,13,0.2);
  color: rgba(255,255,255,0.5); cursor: pointer; font-size: 0.75rem;
}
.mc-popup-close:hover { color: #fff; border-color: var(--purple); }
.mc-popup-title { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; padding-right: 1.5rem; }
.mc-popup-sub { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
#masterclass-popup .form-group { margin-bottom: 0.85rem; }
@media (max-width: 640px) {
  #masterclass-float-btn { bottom: 80px; right: 16px; width: 52px; height: 52px; }
  #masterclass-float-btn svg { width: 22px; height: 22px; }
  #masterclass-popup { bottom: 140px; right: 16px; }
}

/* View Course Content accordion (course modal + payment page) */
.course-content-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; background: rgba(16,12,2,0.75); border: 1px solid rgba(244,194,13,0.18);
  border-radius: 12px; padding: 1.05rem 1.5rem; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #F4C20D;
  backdrop-filter: blur(16px); transition: border-color 0.25s, background 0.25s;
}
.course-content-toggle:hover { border-color: rgba(244,194,13,0.45); background: rgba(24,18,3,0.85); }
.course-content-caret { font-size: 0.9rem; transition: transform 0.3s ease; }
.course-content-body {
  border: 1px solid rgba(244,194,13,0.14); border-top: none;
  border-radius: 0 0 12px 12px; padding: 1.75rem 1.5rem 0.5rem;
  background: rgba(12,9,2,0.6);
}
