/* ============================================================================
   MONIKA CHUDASAMA — NLP FOUNDATION WORKSHOP
   Premium coaching-brand rebuild · Design system + components
   Stack: Bootstrap 5 + this layer. Fonts: Outfit (display) / Poppins (body)
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS
---------------------------------------------------------------------------- */
:root {
  --ink: #0b0620;            /* near-black purple ink */
  --ink-2: #140b33;
  --primary: #6c3cf0;
  --primary-2: #8b5cf6;
  --violet: #a855f7;
  --accent: #ff8a00;
  --accent-2: #ffb347;
  --gold: #ffd54f;
  --text: #5d5a72;
  --text-light: rgba(255, 255, 255, 0.72);
  --surface: #ffffff;
  --bg: #faf9ff;
  --bg-soft: #f4f1ff;

  --grad-primary: linear-gradient(135deg, #6c3cf0, #8b5cf6 55%, #a855f7);
  --grad-warm: linear-gradient(135deg, #ff8a00, #ff5e62);
  --grad-ink: linear-gradient(160deg, #0b0620 0%, #170b3d 55%, #0b0620 100%);

  --r-sm: 18px;
  --r-md: 26px;
  --r-lg: 34px;

  --shadow-sm: 0 10px 30px rgba(20, 10, 60, 0.07);
  --shadow-md: 0 24px 60px rgba(20, 10, 60, 0.1);
  --shadow-lg: 0 40px 110px rgba(20, 10, 60, 0.16);
  --shadow-glow: 0 25px 70px rgba(108, 60, 240, 0.35);

  --glass-bg: rgba(255, 255, 255, 0.66);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-dark-bg: rgba(255, 255, 255, 0.06);
  --glass-dark-border: rgba(255, 255, 255, 0.14);
}

/* ----------------------------------------------------------------------------
   2. BASE
---------------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
}

a { text-decoration: none; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; }
.container { max-width: 1240px; }

::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--grad-primary); border-radius: 20px; }

section { position: relative; }
.section { padding: 110px 0; }
.section-lg { padding: 130px 0; }

/* ----------------------------------------------------------------------------
   3. SHARED UTILITIES — eyebrow, titles, glass, gradient text, glows
---------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(108, 60, 240, 0.09);
  border: 1px solid rgba(108, 60, 240, 0.18);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.eyebrow.on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--gold);
}
.eyebrow.warm {
  background: rgba(255, 138, 0, 0.1);
  border-color: rgba(255, 138, 0, 0.25);
  color: var(--accent);
}

.sec-title {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  margin-top: 22px;
}
.sec-sub {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text);
  margin-top: 18px;
}
.text-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-grad-warm {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* glass panel — light surfaces */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
/* glass panel — dark surfaces */
.glass-dark {
  background: var(--glass-dark-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--r-md);
}

/* aurora glow blobs (decorative, GPU-cheap: transform-only animation) */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: auroraDrift 12s ease-in-out infinite;
}
.aurora.a-purple { background: rgba(108, 60, 240, 0.22); }
.aurora.a-violet { background: rgba(168, 85, 247, 0.18); }
.aurora.a-warm { background: rgba(255, 138, 0, 0.14); }
@keyframes auroraDrift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.06); }
}

/* generic float animation for badges / imagery */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* SVG section divider */
.divider {
  display: block;
  width: 100%;
  height: 70px;
  margin-bottom: -1px;
}

/* ----------------------------------------------------------------------------
   4. SCROLL PROGRESS BAR
---------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0;
  z-index: 100000;
  background: linear-gradient(90deg, #6c3cf0, #a855f7, #ff8a00);
  box-shadow: 0 0 16px rgba(108, 60, 240, 0.6);
}

/* ----------------------------------------------------------------------------
   5. NAVBAR — floating glass pill
---------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1240px);
  z-index: 9999;
  padding: 10px 26px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  backdrop-filter: blur(26px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 50px rgba(20, 10, 60, 0.08);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  top: 8px;
  padding: 7px 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(20, 10, 60, 0.14);
}
.logo {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .logo-mark {
  width: 40px; height: 40px;
  border-radius: 13px;
  background: var(--grad-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(108, 60, 240, 0.35);
}
.logo span { color: var(--primary); }

.nav-link {
  font-weight: 600;
  font-size: 15px;
  margin-left: 26px;
  color: #3d3856 !important;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad-primary);
  transition: width 0.35s ease;
}
.nav-link:hover { color: var(--primary) !important; }
.nav-link:hover::after { width: 100%; }

.navbar-toggler { border: none; box-shadow: none !important; }

/* ----------------------------------------------------------------------------
   6. BUTTONS — glow, lift, shine sweep, animated arrow
---------------------------------------------------------------------------- */
.btn-glow, .btn-ghost, .btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.btn-nav {
  padding: 12px 28px;
  font-size: 15px;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 14px 32px rgba(108, 60, 240, 0.32);
}
.btn-nav:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 20px 44px rgba(108, 60, 240, 0.45); }

.btn-glow {
  padding: 19px 44px;
  font-size: 17px;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-glow .btn-arrow { transition: transform 0.35s ease; }
.btn-glow:hover { transform: translateY(-6px); color: #fff; box-shadow: 0 35px 90px rgba(108, 60, 240, 0.5); }
.btn-glow:hover .btn-arrow { transform: translateX(6px); }
.btn-glow.warm {
  background: var(--grad-warm);
  box-shadow: 0 25px 70px rgba(255, 110, 30, 0.4);
}
.btn-glow.warm:hover { box-shadow: 0 35px 90px rgba(255, 110, 30, 0.55); }
.btn-glow.light {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}
.btn-glow.light:hover { color: var(--primary); }

/* shine sweep across all primary CTAs */
.btn-glow::before, .btn-nav::before {
  content: "";
  position: absolute;
  top: 0; left: -130%;
  width: 130%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.8s ease;
}
.btn-glow:hover::before, .btn-nav:hover::before { left: 130%; }

.btn-ghost {
  padding: 18px 40px;
  font-size: 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(20, 10, 60, 0.14);
}
.btn-ghost:hover { transform: translateY(-4px); color: var(--primary); border-color: rgba(108, 60, 240, 0.4); box-shadow: var(--shadow-sm); }

/* ----------------------------------------------------------------------------
   7. HERO — trainer-first, layered depth
---------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 175px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 85% 12%, rgba(139, 92, 246, 0.14), transparent 60%),
    radial-gradient(900px 560px at 8% 88%, rgba(255, 138, 0, 0.1), transparent 60%),
    linear-gradient(160deg, #ffffff 0%, #f6f2ff 45%, #eef3ff 100%);
}
/* faint dot grid for texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(108, 60, 240, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(700px 500px at 30% 30%, #000, transparent 75%);
  mask-image: radial-gradient(700px 500px at 30% 30%, #000, transparent 75%);
  pointer-events: none;
}

.hero-eyebrow { animation: floatY 7s ease-in-out infinite; }
.hero-title {
  font-size: clamp(42px, 5.6vw, 74px);
  font-weight: 800;
  line-height: 1.04;
  margin: 28px 0 24px;
}
.hero-desc {
  font-size: 19px;
  line-height: 1.9;
  color: var(--text);
  max-width: 580px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 40px; }

/* trust strip — glass pills under the CTA */
.trust-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 19px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 28px rgba(20, 10, 60, 0.06);
  font-size: 13.5px;
  font-weight: 600;
  color: #33304a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-pill:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20, 10, 60, 0.12); }
.trust-pill i { color: var(--primary); font-size: 14px; }
.trust-pill .stars { color: #ffb400; letter-spacing: 1.5px; font-size: 12px; }

/* hero statistics row */
.hero-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 44px; }
.hero-stat h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 2px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat p { font-size: 13px; color: var(--text); margin: 0; font-weight: 500; }

/* ---- hero visual: trainer is ~70% of the composition ---- */
.hero-visual {
  position: relative;
  min-height: 660px;
  z-index: 1;
}
/* layered glow ring behind trainer */
.hero-visual::before {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  top: 46%; left: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(108, 60, 240, 0.4), rgba(168, 85, 247, 0.16) 45%, transparent 68%);
  filter: blur(55px);
  animation: auroraDrift 10s ease-in-out infinite;
}
/* decorative gradient ring */
.hero-ring {
  position: absolute;
  width: 480px; height: 480px;
  top: 44%; left: 56%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(108, 60, 240, 0.28);
  animation: ringSpin 40s linear infinite;
}
@keyframes ringSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-girl {
  position: absolute;
  bottom: 0;
  right: 30px;
  width: min(520px, 100%);
  z-index: 2;
  filter: drop-shadow(0 50px 80px rgba(88, 40, 220, 0.32));
  animation: floatY 7s ease-in-out infinite;
}

/* floating pricing card — overlaps the trainer */
.hero-price-card {
  position: absolute;
  left: -20px;
  bottom: 40px;
  z-index: 3;
  width: 300px;
  padding: 26px 26px 24px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  backdrop-filter: blur(26px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 40px 100px rgba(20, 10, 60, 0.2);
  animation: floatY 8s ease-in-out infinite;
  animation-delay: 0.6s;
}
.hero-price-card .live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 100px;
  background: rgba(255, 66, 66, 0.1);
  color: #e02424;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
}
.hero-price-card .live-chip i { font-size: 7px; animation: livePulse 1.6s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.hero-price-card h4 { font-size: 19px; font-weight: 800; margin: 14px 0 4px; }
.hero-price-card .hp-sub { font-size: 12.5px; color: var(--text); }
.hero-price-card .hp-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}
.hero-price-card .hp-meta span {
  font-size: 12px;
  font-weight: 600;
  color: #454158;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-price-card .hp-meta i { color: var(--primary); font-size: 12px; }
.hero-price-card .hp-price { display: flex; align-items: baseline; gap: 12px; }
.hero-price-card .hp-price strong {
  font-family: "Outfit", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-price-card .hp-price del { color: #a7a3ba; font-size: 17px; font-weight: 600; }
.hero-price-card .hp-save {
  font-size: 11px;
  font-weight: 800;
  color: #12b76a;
  background: rgba(18, 183, 106, 0.1);
  border-radius: 100px;
  padding: 4px 11px;
}
.hero-price-card .hp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  padding: 15px;
  border-radius: 100px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 16px 40px rgba(108, 60, 240, 0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-price-card .hp-btn:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 22px 55px rgba(108, 60, 240, 0.5); }

/* floating rating + learners badges */
.float-badge {
  position: absolute;
  z-index: 4;
  padding: 16px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 60px rgba(20, 10, 60, 0.16);
  text-align: center;
  animation: floatY 6s ease-in-out infinite;
}
.float-badge h5 { font-size: 21px; font-weight: 800; margin: 0; }
.float-badge small { font-size: 11.5px; color: var(--text); font-weight: 600; }
.float-badge.rating { top: 60px; right: -6px; animation-delay: 1.2s; }
.float-badge.rating h5 { color: #ffb400; }
.float-badge.learners { top: 200px; left: 6px; animation-delay: 2s; }
.float-badge.learners h5 { color: var(--primary); }

/* ----------------------------------------------------------------------------
   8. TRUST & CREDENTIALS BAND (dark)
---------------------------------------------------------------------------- */
.cred-band {
  background: var(--grad-ink);
  padding: 80px 0;
  overflow: hidden;
}
.cred-item {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--r-md);
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.cred-item:hover { transform: translateY(-8px); border-color: rgba(168, 85, 247, 0.45); }
.cred-item h2 {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, #c4b5fd, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.cred-item p { color: var(--text-light); font-size: 14.5px; margin: 0; }

/* ----------------------------------------------------------------------------
   9. PROBLEM SECTION
---------------------------------------------------------------------------- */
.problem-sec { background: #fff; }
.pain-card {
  height: 100%;
  padding: 36px 30px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid rgba(20, 10, 60, 0.07);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--pc-accent, var(--grad-primary));
}
.pain-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.pain-icon {
  width: 66px; height: 66px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: var(--pc-accent, var(--grad-primary));
  box-shadow: 0 14px 34px rgba(20, 10, 60, 0.18);
  margin-bottom: 24px;
}
.pain-card h4 { font-size: 21px; font-weight: 700; margin-bottom: 12px; }
.pain-card p { color: var(--text); font-size: 15px; line-height: 1.8; margin: 0; }

.problem-callout {
  margin-top: 70px;
  padding: 56px 48px;
  border-radius: var(--r-lg);
  background: var(--grad-ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.problem-callout::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  top: -260px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 65%);
  filter: blur(60px);
}
.problem-callout h3 { color: #fff; font-size: clamp(24px, 3vw, 34px); font-weight: 800; position: relative; }
.problem-callout p { color: var(--text-light); max-width: 640px; margin: 18px auto 0; line-height: 1.9; position: relative; }

.problem-img-wrap { position: relative; }
.problem-img-wrap::before {
  content: "";
  position: absolute;
  inset: -26px;
  background: radial-gradient(circle at 50% 45%, rgba(108, 60, 240, 0.2), transparent 68%);
  filter: blur(48px);
}
.problem-img-wrap img {
  position: relative;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.problem-tag {
  position: absolute;
  bottom: 34px; left: -18px;
  z-index: 2;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  animation: floatY 7s ease-in-out infinite;
}
.problem-tag h5 { font-size: 16px; font-weight: 800; margin-bottom: 3px; }
.problem-tag small { color: var(--text); font-size: 12.5px; }

/* ----------------------------------------------------------------------------
   10. TRANSFORMATION JOURNEY — visual timeline
---------------------------------------------------------------------------- */
.journey-sec {
  background:
    radial-gradient(900px 480px at 90% 0%, rgba(139, 92, 246, 0.1), transparent 60%),
    linear-gradient(180deg, #f6f2ff, #ffffff);
}
.journey-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}
/* connecting gradient line */
.journey-track::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 10%; right: 10%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #d9d2f5, #6c3cf0, #a855f7, #ff8a00);
  opacity: 0.55;
}
.journey-step { text-align: center; padding: 0 14px; position: relative; }
.journey-node {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  background: var(--grad-primary);
  border: 5px solid #fff;
  box-shadow: 0 18px 45px rgba(108, 60, 240, 0.35);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.journey-step:hover .journey-node { transform: translateY(-8px) scale(1.06); }
.journey-step:nth-child(5) .journey-node { background: var(--grad-warm); box-shadow: 0 18px 45px rgba(255, 120, 20, 0.4); }
.journey-step h5 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.journey-step p { font-size: 13.5px; color: var(--text); line-height: 1.7; margin: 0; }
.journey-arrow {
  display: none; /* shown on mobile stacked layout */
  font-size: 22px;
  color: var(--primary);
  margin: 6px 0 18px;
}

/* imagine banner inside journey */
.imagine-banner {
  margin-top: 90px;
  padding: 64px 56px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #6c3cf0, #7b4fff 50%, #9a63ff);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 110px rgba(108, 60, 240, 0.35);
}
.imagine-banner::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  top: -220px; right: -140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(10px);
}
.imagine-banner h2 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; line-height: 1.2; position: relative; }
.imagine-banner p { color: rgba(255, 255, 255, 0.85); font-size: 18px; line-height: 1.9; margin-top: 20px; position: relative; }
.imagine-banner img { position: relative; animation: floatY 7s ease-in-out infinite; }

/* ----------------------------------------------------------------------------
   11. BENEFITS
---------------------------------------------------------------------------- */
.benefits-sec { background: var(--grad-ink); overflow: hidden; }
.benefit-card {
  height: 100%;
  padding: 40px 32px;
  border-radius: var(--r-md);
  background: var(--glass-dark-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-dark-border);
  border-top: 3px solid var(--bc-accent, #8b5cf6);
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}
.benefit-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.benefit-card h4 { color: #fff; font-size: 21px; font-weight: 700; margin-bottom: 12px; }
.benefit-card p { color: var(--text-light); font-size: 15px; line-height: 1.8; margin: 0; }

/* quote strip inside benefits */
.benefit-quote {
  margin-top: 70px;
  padding: 52px;
  border-radius: var(--r-lg);
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  position: relative;
  overflow: hidden;
}
.benefit-quote::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  bottom: -260px; left: -140px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.22), transparent 65%);
  filter: blur(50px);
}
.benefit-quote h2 { color: #fff; font-weight: 800; font-size: clamp(24px, 3vw, 36px); position: relative; }
.benefit-quote p { color: var(--text-light); line-height: 1.9; margin-top: 18px; position: relative; }
.benefit-quote img { position: relative; animation: floatY 8s ease-in-out infinite; }

/* why-NLP feature rows */
.whynlp-feature { display: flex; gap: 22px; margin-bottom: 30px; }
.whynlp-feature .wf-icon {
  flex-shrink: 0;
  width: 62px; height: 62px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background: var(--wf-bg, var(--grad-primary));
  box-shadow: 0 14px 34px rgba(20, 10, 60, 0.16);
}
.whynlp-feature h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.whynlp-feature p { color: var(--text); font-size: 15px; line-height: 1.8; margin: 0; }

.whynlp-img-wrap { position: relative; }
.whynlp-img-wrap::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 55% 40%, rgba(108, 60, 240, 0.2), transparent 66%);
  filter: blur(50px);
}
.whynlp-img-wrap img { position: relative; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.whynlp-float {
  position: absolute;
  bottom: 40px; left: -22px;
  z-index: 2;
  max-width: 320px;
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  animation: floatY 7s ease-in-out infinite;
}
.whynlp-float h5 { font-size: 17px; font-weight: 800; }
.whynlp-float p { font-size: 13.5px; color: var(--text); margin: 6px 0 0; line-height: 1.7; }

/* ----------------------------------------------------------------------------
   12. CURRICULUM — premium learning roadmap
---------------------------------------------------------------------------- */
.curriculum-sec { background: #fff; }
.roadmap { position: relative; max-width: 860px; margin: 70px auto 0; }
/* vertical connector */
.roadmap::before {
  content: "";
  position: absolute;
  top: 10px; bottom: 10px;
  left: 44px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #6c3cf0, #a855f7 60%, #ff8a00);
  opacity: 0.35;
}
.roadmap-item {
  display: flex;
  gap: 30px;
  padding: 0 0 44px;
  position: relative;
}
.roadmap-item:last-child { padding-bottom: 0; }
.roadmap-num {
  flex-shrink: 0;
  width: 88px; height: 88px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  background: var(--grad-primary);
  border: 5px solid #fff;
  box-shadow: 0 18px 44px rgba(108, 60, 240, 0.32);
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}
.roadmap-item:hover .roadmap-num { transform: scale(1.08) rotate(-4deg); }
.roadmap-body {
  flex: 1;
  padding: 30px 34px;
  border-radius: var(--r-md);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.roadmap-item:hover .roadmap-body { transform: translateX(8px); box-shadow: var(--shadow-md); }
.roadmap-body h4 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.roadmap-body p { color: var(--text); font-size: 15px; line-height: 1.85; margin: 0; }

/* bonus live demo highlight */
.roadmap-live {
  margin-top: 60px;
  padding: 48px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #fff7ed, #fff);
  border: 1.5px dashed rgba(255, 138, 0, 0.45);
  box-shadow: var(--shadow-sm);
}
.roadmap-live img { max-width: 220px; animation: floatY 7s ease-in-out infinite; }
.roadmap-live h3 { font-weight: 800; }

/* ----------------------------------------------------------------------------
   13. PRICING — premium SaaS checkout
---------------------------------------------------------------------------- */
.pricing-sec {
  background:
    radial-gradient(1000px 560px at 12% 0%, rgba(139, 92, 246, 0.12), transparent 60%),
    linear-gradient(180deg, #f6f2ff, #ffffff 70%);
  overflow: hidden;
}
.checkout-card {
  position: relative;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 60px 150px rgba(88, 40, 220, 0.22);
  overflow: hidden;
}
/* glow crown */
.checkout-card::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(108, 60, 240, 0.3), transparent 66%);
  filter: blur(50px);
}
.checkout-ribbon {
  position: absolute;
  top: 26px; right: -52px;
  transform: rotate(45deg);
  background: var(--grad-warm);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 9px 60px;
  box-shadow: 0 8px 24px rgba(255, 110, 30, 0.45);
  z-index: 3;
}
.checkout-left { padding: 52px 48px; position: relative; }
.checkout-left h4 { font-weight: 800; margin-bottom: 26px; }
.stack-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(20, 10, 60, 0.1);
}
.stack-item:last-of-type { border-bottom: none; }
.stack-item .si-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 15px;
  background: rgba(108, 60, 240, 0.09);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.stack-item .si-name { flex: 1; font-weight: 600; font-size: 15px; }
.stack-item .si-worth { font-family: "Outfit", sans-serif; font-weight: 800; color: var(--ink); font-size: 16px; white-space: nowrap; }
.stack-total {
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(108, 60, 240, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.stack-total .st-worth { font-family: "Outfit", sans-serif; font-size: 24px; font-weight: 800; color: var(--primary); }

.checkout-right {
  padding: 52px 48px;
  text-align: center;
  background: var(--grad-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.checkout-right::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  bottom: -200px; right: -120px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.25), transparent 65%);
  filter: blur(55px);
}
.checkout-right > * { position: relative; }
.co-old {
  font-family: "Outfit", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}
.co-new {
  font-family: "Outfit", sans-serif;
  font-size: clamp(72px, 8vw, 104px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ffd54f, #ff8a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 6px 0 4px;
}
.co-save {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 22px;
  border-radius: 100px;
  background: rgba(18, 183, 106, 0.16);
  border: 1px solid rgba(18, 183, 106, 0.4);
  color: #4ade80;
  font-weight: 800;
  font-size: 14px;
  animation: savePulse 2.6s ease-in-out infinite;
}
@keyframes savePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(74, 222, 128, 0); }
  50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(74, 222, 128, 0.25); }
}
.co-features { text-align: left; margin: 28px auto 0; max-width: 300px; display: grid; gap: 12px; }
.co-features div { font-size: 14.5px; color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.co-features i { color: #4ade80; margin-right: 10px; }
.co-secure { margin-top: 20px; font-size: 13px; color: rgba(255, 255, 255, 0.65); }

/* value / why-299 box */
.value-box {
  margin-top: 80px;
  padding: 60px 54px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid rgba(20, 10, 60, 0.06);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.value-list { display: grid; gap: 15px; margin-top: 34px; }
.value-list div { font-weight: 600; font-size: 16px; }
.value-list i { color: #12b76a; margin-right: 12px; }
.saving-circle {
  width: 260px; height: 260px;
  margin: auto;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  box-shadow: 0 35px 90px rgba(108, 60, 240, 0.4);
  animation: savingSpin 3.4s ease-in-out infinite;
  position: relative;
}
.saving-circle::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px dashed rgba(108, 60, 240, 0.35);
  animation: ringSpin 30s linear infinite;
}
@keyframes savingSpin {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.saving-circle h1 { font-size: 72px; font-weight: 800; margin: 4px 0; }
.saving-circle small { letter-spacing: 2px; font-weight: 700; opacity: 0.85; }

/* guarantee */
.guarantee-box {
  margin-top: 40px;
  padding: 44px 48px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #f6fff9, #ffffff);
  border: 1.5px dashed rgba(18, 183, 106, 0.4);
}
.guarantee-icon {
  width: 104px; height: 104px;
  margin: auto;
  border-radius: 32px;
  background: linear-gradient(135deg, #12b76a, #4ade80);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(18, 183, 106, 0.35);
}

/* ----------------------------------------------------------------------------
   14. BONUSES — premium gift cards
---------------------------------------------------------------------------- */
.bonus-sec { background: var(--grad-ink); overflow: hidden; }
.gift-card {
  height: 100%;
  padding: 40px 32px;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-dark-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.gift-card:hover { transform: translateY(-12px); border-color: rgba(255, 213, 79, 0.45); }
.gift-card::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  top: -110px; right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 79, 0.16), transparent 68%);
}
.gift-icon {
  width: 74px; height: 74px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 18px 44px rgba(108, 60, 240, 0.4);
  margin-bottom: 26px;
}
.gift-num {
  position: absolute;
  top: 26px; right: 26px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
}
.gift-card h4 { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.gift-card p { color: var(--text-light); font-size: 14.5px; line-height: 1.8; }
.gift-worth {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255, 213, 79, 0.12);
  border: 1px solid rgba(255, 213, 79, 0.35);
  color: var(--gold);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 15px;
}

/* ----------------------------------------------------------------------------
   15. MENTOR — authority builder
---------------------------------------------------------------------------- */
.mentor-sec {
  background:
    radial-gradient(1000px 600px at 0% 20%, rgba(139, 92, 246, 0.12), transparent 60%),
    linear-gradient(160deg, #f6f2ff 0%, #ffffff 60%);
  overflow: hidden;
}
.mentor-photo-wrap { position: relative; }
.mentor-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -34px;
  background: radial-gradient(circle at 50% 38%, rgba(108, 60, 240, 0.26), transparent 66%);
  filter: blur(56px);
}
.mentor-photo-wrap img {
  position: relative;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
}
.mentor-photo-wrap .float-badge.transforms { bottom: 44px; left: -20px; top: auto; right: auto; text-align: left; }
.mentor-photo-wrap .float-badge.transforms .stars-row { color: #ffb400; font-size: 13px; letter-spacing: 2px; }
.mentor-photo-wrap .float-badge.years { top: 40px; right: -14px; animation-delay: 1.4s; }
.mentor-photo-wrap .float-badge.years h5 { color: var(--primary); }

.mentor-name { font-size: clamp(36px, 4vw, 52px); font-weight: 800; margin-top: 20px; }
.mentor-role { color: var(--primary); font-weight: 700; font-size: 16.5px; letter-spacing: 0.4px; margin-bottom: 24px; }
.mentor-bio { color: var(--text); font-size: 16.5px; line-height: 1.95; }

/* achievement timeline */
.mentor-timeline { margin-top: 40px; position: relative; padding-left: 34px; }
.mentor-timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #6c3cf0, #a855f7);
  opacity: 0.3;
}
.mt-item { position: relative; padding-bottom: 26px; }
.mt-item:last-child { padding-bottom: 0; }
.mt-item::before {
  content: "";
  position: absolute;
  left: -33px; top: 7px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: 4px solid #fff;
  box-shadow: 0 6px 18px rgba(108, 60, 240, 0.4);
}
.mt-item h5 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.mt-item p { font-size: 14px; color: var(--text); margin: 0; line-height: 1.7; }

/* expertise cards */
.expertise-card {
  height: 100%;
  padding: 30px 26px;
  border-radius: var(--r-md);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.expertise-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.expertise-card .ec-emoji { font-size: 38px; }
.expertise-card h5 { font-size: 17.5px; font-weight: 800; margin: 16px 0 8px; }
.expertise-card p { font-size: 13.5px; color: var(--text); line-height: 1.75; margin: 0; }

/* quote + signature */
.mentor-quote {
  margin-top: 60px;
  padding: 48px 52px;
  border-radius: var(--r-lg);
  background: var(--grad-ink);
  position: relative;
  overflow: hidden;
}
.mentor-quote::before {
  content: "\201C";
  position: absolute;
  top: -30px; left: 30px;
  font-family: Georgia, serif;
  font-size: 220px;
  color: rgba(139, 92, 246, 0.25);
  line-height: 1;
}
.mentor-quote p {
  position: relative;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}
.mentor-sign { position: relative; margin-top: 28px; display: flex; align-items: center; gap: 18px; }
.mentor-sign img {
  width: 62px; height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.mentor-sign .sign-name {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #c4b5fd, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mentor-sign .sign-role { font-size: 13px; color: var(--text-light); }

/* trust reasons (science based / easy / etc.) */
.reason-card {
  height: 100%;
  text-align: center;
  padding: 38px 26px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid rgba(20, 10, 60, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.reason-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.reason-card .rc-emoji { font-size: 46px; }
.reason-card h4 { font-size: 19px; font-weight: 800; margin: 18px 0 10px; }
.reason-card p { font-size: 14px; color: var(--text); line-height: 1.8; margin: 0; }

/* ----------------------------------------------------------------------------
   16. SUCCESS STORIES — video gallery
---------------------------------------------------------------------------- */
.success-sec { background: #fff; }
.video-card {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20, 10, 60, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.video-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.lazy-video {
  position: relative;
  background-color: #1c1040;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.lazy-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 6, 32, 0.05), rgba(11, 6, 32, 0.6));
}
.lazy-video.is-playing::after { display: none; }
.lazy-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
}
.lazy-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  width: 68px; height: 68px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  z-index: 3;
}
.lazy-video-play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: playPulse 2s ease-out infinite;
}
@keyframes playPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}
.lazy-video-play:hover { transform: translate(-50%, -58%) scale(1.1); }
.lazy-video-label {
  position: absolute;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

/* buffering state — large video files can take a moment to start;
   spin the play button so it visibly reads as "working", not stuck */
.lazy-video.is-loading .lazy-video-play i {
  animation: videoSpin 0.9s linear infinite;
}
.lazy-video.is-loading .lazy-video-play i::before {
  content: "\f110"; /* fa-spinner */
}
@keyframes videoSpin {
  to { transform: rotate(360deg); }
}

/* genuine load failure — shown instead of a silently blank player */
.lazy-video-error {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #2b1a52, #45258a);
  color: #fff;
}
.lazy-video-error i {
  font-size: 26px;
  color: var(--gold);
}
.lazy-video-error p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.lazy-video-error a {
  color: #fff;
  font-size: 13px;
  text-decoration: underline;
}

/* ----------------------------------------------------------------------------
   17. GOOGLE REVIEWS
---------------------------------------------------------------------------- */
.reviews-sec {
  background:
    radial-gradient(900px 500px at 100% 10%, rgba(139, 92, 246, 0.1), transparent 60%),
    linear-gradient(180deg, #faf9ff, #f4f1ff);
  overflow: hidden;
}
.rating-hero {
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  padding: 48px;
}
.rating-hero .rh-score {
  font-family: "Outfit", sans-serif;
  font-size: clamp(72px, 8vw, 100px);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating-hero .rh-stars { color: #ffb400; font-size: 26px; letter-spacing: 5px; }
.rating-hero .rh-stars span { display: inline-block; animation: starPop 2.4s ease-in-out infinite; }
.rating-hero .rh-stars span:nth-child(2) { animation-delay: 0.15s; }
.rating-hero .rh-stars span:nth-child(3) { animation-delay: 0.3s; }
.rating-hero .rh-stars span:nth-child(4) { animation-delay: 0.45s; }
.rating-hero .rh-stars span:nth-child(5) { animation-delay: 0.6s; }
@keyframes starPop {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.25); }
  20% { transform: scale(1); }
}
.rh-stat h2 { font-size: 36px; font-weight: 800; margin-bottom: 4px; }
.rh-stat small { color: var(--text); font-weight: 500; }

.review-card {
  position: relative;
  height: 300px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.review-header { display: flex; align-items: center; gap: 12px; }
.review-header img {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 6px 18px rgba(20, 10, 60, 0.15);
}
.review-header h6 { margin: 0; font-size: 15px; font-weight: 700; }
.review-header span { font-size: 12px; color: #9a96ad; }
.review-card .stars { color: #ffb400; font-size: 14px; letter-spacing: 2px; margin: 12px 0 8px; }
.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  overflow-y: auto;
  flex: 1;
}
.review-text::-webkit-scrollbar { width: 4px; }
.google-icon {
  position: absolute;
  top: 22px; right: 22px;
  width: 22px;
}

/* swiper chrome */
.swiper { padding: 10px 6px 56px; }
.swiper-button-prev, .swiper-button-next {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 16px; font-weight: 800; }
.swiper-pagination-bullet { background: #c9c1ec; opacity: 1; }
.swiper-pagination-bullet-active { background: var(--primary); width: 26px; border-radius: 6px; }

/* ----------------------------------------------------------------------------
   18. WHATSAPP TESTIMONIALS — masonry gallery
---------------------------------------------------------------------------- */
.whatsapp-sec { background: #fff; }
.wa-masonry { columns: 3 300px; column-gap: 24px; margin-top: 60px; }
.wa-shot {
  display: block;
  width: 100%;
  margin-bottom: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20, 10, 60, 0.06);
  break-inside: avoid;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.wa-shot:hover { transform: scale(1.03) rotate(-1deg); box-shadow: var(--shadow-lg); }
.wa-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: 100px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #128c4b;
  font-weight: 700;
  font-size: 14px;
}

/* ----------------------------------------------------------------------------
   19. FAQ
---------------------------------------------------------------------------- */
.faq-sec {
  background:
    radial-gradient(900px 500px at 0% 100%, rgba(139, 92, 246, 0.1), transparent 60%),
    linear-gradient(180deg, #f6f2ff, #ffffff);
}
.accordion-item {
  border: 1px solid rgba(108, 60, 240, 0.12) !important;
  border-radius: 22px !important;
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.accordion-item:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(108, 60, 240, 0.14); }
.accordion-button {
  padding: 24px 28px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  background: transparent;
  border-radius: 22px !important;
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(108, 60, 240, 0.05);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-button::after { transition: transform 0.4s ease; }
.accordion-button:not(.collapsed)::after { transform: rotate(180deg) scale(1.15); }
.accordion-body { padding: 4px 28px 26px; color: var(--text); line-height: 1.9; font-size: 15.5px; }

/* support / help card */
.support-card {
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  padding: 42px 38px;
}
.support-card .sc-img {
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
}
.support-line { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.support-line .sl-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 15px;
  background: rgba(108, 60, 240, 0.09);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-line a { color: var(--ink); font-weight: 600; font-size: 14.5px; word-break: break-all; }
.support-line a:hover { color: var(--primary); }
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, #25d366, #128c4b);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-whatsapp:hover { transform: translateY(-4px); color: #fff; box-shadow: 0 22px 55px rgba(37, 211, 102, 0.45); }
.support-assure {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(18, 183, 106, 0.07);
  border: 1px solid rgba(18, 183, 106, 0.2);
  font-size: 14px;
  font-weight: 600;
  color: #0f7a45;
  line-height: 2.1;
}

/* ----------------------------------------------------------------------------
   20. FINAL CTA
---------------------------------------------------------------------------- */
.final-sec {
  background: var(--grad-ink);
  overflow: hidden;
}
.final-sec .aurora.a1 { width: 700px; height: 700px; top: -300px; left: -200px; }
.final-sec .aurora.a2 { width: 600px; height: 600px; bottom: -260px; right: -160px; }
.final-title { color: #fff; font-size: clamp(36px, 5vw, 62px); font-weight: 800; line-height: 1.08; }
.final-desc { color: var(--text-light); font-size: 18px; line-height: 1.9; }

.final-price { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin: 36px 0; }
.final-price .fp-old {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}
.final-price .fp-arrow { font-size: 34px; color: var(--gold); }
.final-price .fp-new {
  font-family: "Outfit", sans-serif;
  font-size: clamp(64px, 7vw, 92px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ffd54f, #ff8a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-includes { display: grid; gap: 12px; margin: 30px 0 8px; }
.final-includes div { color: rgba(255, 255, 255, 0.85); font-size: 15.5px; font-weight: 500; }
.final-includes i { color: #4ade80; margin-right: 11px; }

.final-img-wrap { position: relative; text-align: center; }
.final-img-wrap::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 64%);
  filter: blur(60px);
}
.final-img-wrap img { position: relative; animation: floatY 8s ease-in-out infinite; }

/* countdown */
.countdown-box {
  margin-top: 60px;
  padding: 44px 40px;
  border-radius: var(--r-lg);
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  text-align: center;
}
.countdown-box h4 { color: #fff; font-weight: 800; letter-spacing: 0.4px; }
.cd-grid { display: flex; justify-content: center; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
.cd-cell {
  min-width: 104px;
  padding: 22px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.cd-cell .cd-num {
  font-family: "Outfit", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ffd54f, #ff8a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cd-cell p { color: var(--text-light); font-size: 12.5px; margin: 10px 0 0; text-transform: uppercase; letter-spacing: 1.5px; }

.seats-alert {
  margin-top: 34px;
  padding: 26px 32px;
  border-radius: 22px;
  background: rgba(255, 138, 0, 0.1);
  border: 1px solid rgba(255, 138, 0, 0.3);
  text-align: center;
}
.seats-alert h5 { color: var(--accent-2); font-weight: 800; margin-bottom: 8px; }
.seats-alert p { color: var(--text-light); font-size: 14.5px; margin: 0; }

/* disclaimer */
.disclaimer-band { background: #070312; padding: 56px 0; }
.disclaimer-band h5 { color: rgba(255, 255, 255, 0.85); font-weight: 700; }
.disclaimer-band p { color: rgba(255, 255, 255, 0.45); font-size: 13.5px; line-height: 2; max-width: 820px; margin: 14px auto 0; }

/* ----------------------------------------------------------------------------
   21. FOOTER
---------------------------------------------------------------------------- */
.footer {
  background: linear-gradient(180deg, #0a0518, #000);
  color: #fff;
  padding: 90px 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.7), transparent);
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img {
  width: 66px; height: 66px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 30px rgba(108, 60, 240, 0.4);
}
.footer-brand h4 { font-weight: 800; margin: 0; }
.footer-brand small { color: rgba(255, 255, 255, 0.55); }
.footer p.footer-about { color: rgba(255, 255, 255, 0.55); font-size: 14.5px; line-height: 2; margin-top: 24px; }
.footer h6 {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 14px; }
.footer ul a, .footer .f-contact a { color: rgba(255, 255, 255, 0.55); font-size: 14.5px; }
.footer ul a:hover, .footer .f-contact a:hover { color: #a855f7; }
.footer .f-contact p { color: rgba(255, 255, 255, 0.55); font-size: 14.5px; margin-bottom: 14px; display: flex; gap: 11px; align-items: baseline; flex-wrap: wrap; }
.footer .f-contact i { color: var(--violet); flex-shrink: 0; }
.footer .f-contact a { overflow-wrap: anywhere; word-break: break-word; }
.footer-social { display: flex; gap: 12px; margin-top: 26px; }
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}
.footer-social a:hover { transform: translateY(-4px); background: var(--primary); color: #fff; }
.footer-bottom {
  margin-top: 70px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13.5px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.55); margin-left: 26px; }
.footer-bottom a:hover { color: #a855f7; }

/* ----------------------------------------------------------------------------
   22. FLOATING ELEMENTS — cursor glow, back-to-top, sticky mobile CTA
---------------------------------------------------------------------------- */
#cursor-glow {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(108, 60, 240, 0.1), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: left 0.08s linear, top 0.08s linear;
}

#topBtn {
  position: fixed;
  left: 24px; bottom: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-size: 18px;
  box-shadow: var(--shadow-md);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
#topBtn.visible { opacity: 1; visibility: visible; }
#topBtn:hover { transform: translateY(-4px); color: #fff; background: var(--primary); }

.floating-register {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 9990;
}
.floating-register a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 22px 55px rgba(108, 60, 240, 0.45);
  transition: transform 0.3s ease;
}
.floating-register a:hover { transform: translateY(-4px); color: #fff; }

.mobile-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9995;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  border-top: 1px solid rgba(20, 10, 60, 0.08);
  box-shadow: 0 -12px 44px rgba(20, 10, 60, 0.14);
}
.mobile-sticky-cta .msc-price span {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text);
  font-weight: 600;
}
.mobile-sticky-cta .msc-price strong {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.msc-btn {
  flex: 1;
  max-width: 64%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  border-radius: 100px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 32px rgba(108, 60, 240, 0.35);
}
.msc-btn:active, .msc-btn:hover { color: #fff; }

/* ----------------------------------------------------------------------------
   23. RESPONSIVE
---------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .hero-girl { width: 440px; right: 0; }
  .hero-price-card { left: -8px; }
}

@media (max-width: 991.98px) {
  .section { padding: 80px 0; }
  .section-lg { padding: 90px 0; }
  .hero { padding: 150px 0 90px; }

  .navbar { padding: 10px 20px; }
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    padding: 18px 22px;
    margin-top: 14px;
    box-shadow: var(--shadow-md);
  }
  .nav-link { margin-left: 0; padding: 10px 0; }

  .hero-visual { min-height: 0; margin-top: 60px; text-align: center; padding-bottom: 30px; }
  .hero-girl { position: relative; right: auto; width: min(400px, 82%); margin: 0 auto; display: block; }
  .hero-visual::before { width: 380px; height: 380px; top: 40%; left: 50%; }
  .hero-ring { width: 340px; height: 340px; top: 38%; left: 50%; }
  .hero-price-card { position: relative; left: auto; bottom: auto; width: min(360px, 100%); margin: -60px auto 0; animation: none; }
  .float-badge.rating { top: 10px; right: 4px; }
  .float-badge.learners { top: auto; bottom: 46%; left: 0; }

  .journey-track { grid-template-columns: 1fr; gap: 8px; max-width: 420px; margin-left: auto; margin-right: auto; }
  .journey-track::before { display: none; }
  .journey-arrow { display: block; }
  .journey-step { padding-bottom: 8px; }

  .imagine-banner { padding: 46px 34px; }
  .checkout-left, .checkout-right { padding: 40px 30px; }
  .value-box { padding: 44px 30px; }
  .mentor-quote { padding: 40px 32px; }
  .roadmap::before { left: 34px; }
  .roadmap-num { width: 68px; height: 68px; font-size: 20px; border-radius: 22px; }
  .problem-tag, .whynlp-float { left: 0; }

  #cursor-glow { display: none; }
}

@media (max-width: 767.98px) {
  .hero { padding: 135px 0 80px; }
  .hero-desc { font-size: 16.5px; }
  .hero-ctas .btn-glow, .hero-ctas .btn-ghost { width: 100%; }
  .hero-stats { gap: 22px; }
  .hero-stat h3 { font-size: 24px; }

  .sec-sub { font-size: 16px; }
  .trust-pill { font-size: 12px; padding: 9px 14px; }

  .roadmap-item { gap: 18px; }
  .roadmap-body { padding: 24px 22px; }
  .roadmap-live { padding: 34px 26px; }

  .checkout-ribbon { font-size: 10.5px; padding: 8px 54px; top: 20px; right: -58px; }
  .co-features { max-width: 100%; }
  .saving-circle { width: 200px; height: 200px; margin-top: 34px; }
  .saving-circle h1 { font-size: 52px; }

  .final-price .fp-old { font-size: 30px; }
  .cd-cell { min-width: 74px; padding: 16px 10px; }
  .cd-cell .cd-num { font-size: 30px; }

  .wa-masonry { columns: 2 160px; column-gap: 14px; }
  .wa-shot { margin-bottom: 14px; border-radius: 16px; }

  /* mobile: swap corner button for full-width sticky bar */
  .mobile-sticky-cta { display: flex; }
  .floating-register { display: none; }
  #topBtn { bottom: 86px; }
  /* #topBtn is fixed and sits 86-140px above the viewport bottom at all
     times, including when the page is scrolled all the way down — the
     footer's last row needs enough padding to clear that, not just the
     sticky CTA bar underneath it, or the button visually overlaps the
     policy links. */
  .footer-bottom { padding-bottom: 170px; }
  .footer-bottom a { margin-left: 0; margin-right: 20px; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 38px; }
  .hero-price-card { margin-top: -40px; }
  .float-badge { padding: 12px 16px; }
  .float-badge h5 { font-size: 17px; }
  .journey-node { width: 74px; height: 74px; font-size: 24px; }
  .lazy-video-play { width: 56px; height: 56px; font-size: 17px; }
  .mentor-quote::before { font-size: 140px; }
  .rating-hero { padding: 34px 24px; }

  /* very narrow phones (iPhone SE-class, ~375px and under) */
  .mobile-sticky-cta { padding: 10px 12px; gap: 10px; }
  .mobile-sticky-cta .msc-price strong { font-size: 21px; }
  .msc-btn { font-size: 13px; padding: 13px 10px; gap: 6px; }
}

/* ----------------------------------------------------------------------------
   24. ACCESSIBILITY / PERFORMANCE GUARDS
---------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
@media (hover: none) {
  #cursor-glow { display: none; }
}
