/* ============================================
   VYORA GROWTH ACADEMY — Premium Stylesheet
   Dark + Gold | Futuristic AI | Glassmorphism
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Gold palette */
  --gold-50:  #FFF9E6;
  --gold-100: #FFF0B3;
  --gold-200: #FFE066;
  --gold-300: #FFD633;
  --gold-400: #FFCC00;
  --gold-500: #D4A517;
  --gold-600: #B8860B;
  --gold-700: #8B6914;
  --gold-800: #6B4F10;
  --gold-900: #4A370B;

  /* Neutrals */
  --black:    #000000;
  --bg:       #050505;
  --bg-card:  rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border:   rgba(212, 165, 23, 0.15);
  --border-h: rgba(212, 165, 23, 0.35);
  --white:    #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E0E0E0;
  --gray-300: #BDBDBD;
  --gray-400: #9E9E9E;
  --gray-500: #757575;
  --gray-600: #616161;
  --gray-700: #424242;
  --gray-800: #1A1A1A;
  --gray-900: #0D0D0D;

  /* Accents */
  --accent-blue:   #0D7AFF;
  --accent-purple: #A855F7;
  --accent-teal:   #14B8A6;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --section-py: clamp(4rem, 10vw, 8rem);
  --container-px: clamp(1rem, 5vw, 3rem);
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(212, 165, 23, 0.08);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glow-gold:   0 0 60px rgba(212, 165, 23, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--gray-300);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { border: none; background: none; font: inherit; cursor: pointer; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-glass);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--gray-400);
  max-width: 640px;
  line-height: 1.8;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-h);
  box-shadow: var(--glow-gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--black);
  box-shadow: 0 4px 24px rgba(212, 165, 23, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 165, 23, 0.35);
}
.btn-primary::after {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  border: 1.5px solid var(--border-h);
  color: var(--gold-300);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(212, 165, 23, 0.08);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ---------- Background Orbs ---------- */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.orb-gold {
  background: radial-gradient(circle, rgba(212, 165, 23, 0.12) 0%, transparent 70%);
}
.orb-purple {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
}
.orb-blue {
  background: radial-gradient(circle, rgba(13, 122, 255, 0.06) 0%, transparent 70%);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.navbar-brand .brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--black);
  font-weight: 800;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color 0.3s ease;
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width 0.3s ease;
}
.navbar-links a:hover { color: var(--gold-300); }
.navbar-links a:hover::after { width: 100%; }

.navbar-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-400);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gray-300);
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold-400); }

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-cta-desktop { display: none !important; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Particle canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(212, 165, 23, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 165, 23, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 var(--container-px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-300));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: var(--gold-300);
  margin-bottom: 1rem;
  animation: fadeInUp 1s 0.4s ease both;
  opacity: 0.9;
}

.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--gray-400);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s 0.6s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp 1s 0.8s ease both;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s 1.2s ease both;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-600);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: scroll-pulse 2s ease infinite;
}

/* ============================================
   SECTION 1 — WHAT WILL YOU LEARN
   ============================================ */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 3rem;
}

.learn-card {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.learn-card .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 165, 23, 0.12), rgba(212, 165, 23, 0.04));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-400);
  transition: all 0.3s ease;
}

.learn-card:hover .icon {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--black);
  border-color: var(--gold-400);
}

.learn-card .text {
  font-size: 0.92rem;
  color: var(--gray-300);
  font-weight: 500;
  transition: color 0.3s ease;
}
.learn-card:hover .text { color: var(--white); }

/* ============================================
   SECTION 2 & 3 — COURSE PLANS
   ============================================ */
.plans-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 3rem;
}

.plan-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.plan-card.featured {
  border-color: var(--gold-500);
  box-shadow: 0 0 60px rgba(212, 165, 23, 0.08);
}

.plan-header {
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}

.plan-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600), var(--gold-400));
}

.plan-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.plan-badge.beginner {
  background: rgba(20, 184, 166, 0.12);
  color: var(--accent-teal);
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.plan-badge.professional {
  background: rgba(212, 165, 23, 0.12);
  color: var(--gold-400);
  border: 1px solid var(--border);
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.plan-price .currency {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 2px;
}

.plan-price .gst {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-500);
  margin-left: 6px;
}

.plan-description {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-top: 12px;
}

.plan-features {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
}

.plan-features-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.plan-features ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.5;
}

.plan-features li .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 165, 23, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold-400);
  margin-top: 1px;
}

.plan-outcome {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
}

.plan-outcome-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 10px;
}

.plan-outcome p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.8;
}

.plan-cta {
  padding: 0 28px 28px;
}

/* ============================================
   SECTION 4 — WHO IS THIS FOR
   ============================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.audience-card {
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.audience-card .emoji {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.audience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.audience-card:hover::before { opacity: 1; }

/* ============================================
   SECTION 5 — WHY CHOOSE
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.why-card {
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-card .icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 165, 23, 0.1), rgba(168, 85, 247, 0.05));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.why-card:hover .icon-wrap {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-color: var(--gold-400);
}
.why-card:hover .icon-wrap span {
  filter: brightness(0);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   SECTION 6 — LEARNING JOURNEY
   ============================================ */
.journey-wrapper {
  margin-top: 3rem;
  position: relative;
}

.journey-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-400), rgba(212, 165, 23, 0.05));
}

.journey-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}

.journey-step:last-child { padding-bottom: 0; }

.journey-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold-400);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(212, 165, 23, 0.1);
  transition: all 0.3s ease;
}

.journey-step:hover .journey-number {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--black);
}

.journey-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.journey-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Desktop horizontal layout */
@media (min-width: 900px) {
  .journey-wrapper {
    display: flex;
    gap: 0;
    align-items: flex-start;
    justify-content: space-between;
  }

  .journey-line {
    top: 28px;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, var(--gold-400), rgba(212, 165, 23, 0.05));
  }

  .journey-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 8px;
  }

  .journey-body h3 { font-size: 1rem; }
  .journey-body p { font-size: 0.85rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
  position: relative;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-400);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 24px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%      { opacity: 1; transform: scaleY(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.stat-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-glass);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 4px;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
  .plans-wrapper {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .learn-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .plan-features ul {
    grid-template-columns: 1fr;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Divider ---------- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-h), transparent);
  margin: 0;
}

/* ============================================
   MLM TREE
   ============================================ */
.mlm-container {
  max-width: 700px;
  margin: 40px auto 0;
  position: relative;
  padding-left: 36px;
}
.mlm-container::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 15px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-400), rgba(212, 165, 23, 0.1));
}
.mlm-node {
  position: relative;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.mlm-node:hover {
  transform: translateX(5px);
  border-color: var(--gold-400);
}
.mlm-node::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -21px;
  width: 20px;
  height: 2px;
  background: var(--gold-500);
  opacity: 0.5;
}
.mlm-node::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold-400);
  transform: translateY(-50%);
  z-index: 2;
  transition: background 0.3s ease;
}
.mlm-node:hover::after {
  background: var(--gold-400);
  box-shadow: 0 0 12px var(--gold-400);
}
.mlm-node h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.mlm-node h4 span.level-badge {
  font-size: 0.75rem;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mlm-node p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ---------- Mobile Speed Optimization ---------- */
@media (max-width: 768px) {
  .reveal {
    transition: opacity 0.4s ease-out, transform 0.4s ease-out !important;
    transform: translateY(20px);
  }
  .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4, 
  .reveal-delay-5, .reveal-delay-6, .reveal-delay-7, .reveal-delay-8 {
    transition-delay: 0s !important;
  }
}

/* ---------- CTA Highlight Box ---------- */
.cta-highlight-box {
  background: linear-gradient(135deg, rgba(212, 165, 23, 0.2), rgba(16, 185, 129, 0.1));
  border: 2px solid var(--gold-400);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  max-width: 800px;
  margin: 60px auto;
  box-shadow: 0 0 30px rgba(212, 165, 23, 0.2);
}
.cta-highlight-box h3 {
  color: var(--gold-400);
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.cta-highlight-box p {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ---------- Back To Top ---------- */
.back-to-top {
  position: fixed;
  bottom: -60px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gold-500);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(212, 165, 23, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
}
.back-to-top.show {
  bottom: 30px;
  opacity: 1;
}
.back-to-top:hover {
  transform: translateY(-5px);
  background: var(--gold-400);
}

/* ========== COUNTDOWN TIMER ========== */
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--gold-500);
  border-radius: 12px;
  padding: 15px 20px;
  min-width: 100px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.countdown-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-400);
  font-family: var(--font-mono);
  line-height: 1;
  text-shadow: 0 0 15px rgba(212, 165, 23, 0.5);
}
.countdown-label {
  font-size: 0.9rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}
@media (max-width: 600px) {
  .countdown-item {
    min-width: 70px;
    padding: 10px;
  }
  .countdown-value { font-size: 2rem; }
  .countdown-label { font-size: 0.7rem; }
}
