/* ============================
   DESIGN TOKENS & VARIABLES
   ============================ */
:root {
  /* Color palette — Bloomberg Terminal meets Trading Floor */
  --clr-bg:          #000000;
  --clr-bg-alt:      #0a0a0a;
  --clr-bg-section:  #111111;
  --clr-bg-elevated: #1a1a1a;
  --clr-surface:     #1e1e1e;
  --clr-surface-2:   #252525;
  --clr-surface-3:   #2e2e2e;
  --clr-border:      rgba(0,230,118,0.15);
  --clr-border-hover:rgba(0,230,118,0.4);

  --clr-text:        #e8e8e8;
  --clr-text-muted:  #a0a0a0;
  --clr-text-dim:    #666666;

  --clr-gold:        #fbbf24;
  --clr-gold-light:  #fcd34d;
  --clr-gold-dark:   #d97706;
  --clr-gold-glow:   rgba(251,191,36,0.2);
  --clr-accent:      #00e676;
  --clr-accent-hover:#00c853;

  --clr-primary:     var(--clr-gold);
  --clr-primary-dark:var(--clr-gold-dark);

  --clr-green:       #00e676;
  --clr-green-dim:   rgba(0,230,118,0.15);
  --clr-red:         #ff1744;
  --clr-red-dim:     rgba(255,23,68,0.15);

  /* Typography */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', 'Inter', system-ui, sans-serif;

  /* Spacing (8px grid) */
  --sp-1: 0.25rem;   /* 4px */
  --sp-2: 0.5rem;    /* 8px */
  --sp-3: 0.75rem;   /* 12px */
  --sp-4: 1rem;      /* 16px */
  --sp-5: 1.5rem;    /* 24px */
  --sp-6: 2rem;      /* 32px */
  --sp-7: 2.5rem;    /* 40px */
  --sp-8: 3rem;      /* 48px */
  --sp-10: 4rem;     /* 64px */
  --sp-12: 5rem;     /* 80px */
  --sp-16: 8rem;     /* 128px */

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.6);
  --shadow-glow:0 0 50px rgba(251,191,36,0.18);
  --shadow-green-glow: 0 0 30px rgba(16,185,129,0.12);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w: 1200px;
  --ticker-h: 36px;
  --navbar-h: 72px;
}

/* ============================
   RESET & BASE
   ============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-h) + var(--ticker-h));
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================
   UTILITY CLASSES
   ============================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.text-gradient {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold), var(--clr-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: var(--sp-12) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--sp-8);
  position: relative;
  z-index: 1;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-gold);
  background: rgba(245,197,66,0.1);
  border: 1px solid rgba(245,197,66,0.2);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-4);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: var(--sp-3);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.section__cta {
  text-align: center;
  margin-top: var(--sp-8);
  position: relative;
  z-index: 1;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold), var(--clr-gold-dark));
  color: #020408;
  box-shadow: 0 4px 20px rgba(251,191,36,0.3);
  font-weight: 700;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn--primary:hover::after {
  left: 100%;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(251,191,36,0.5);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.875rem;
}

.btn--lg {
  padding: var(--sp-3) var(--sp-6);
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn--xl {
  padding: var(--sp-4) var(--sp-7);
  font-size: 1.125rem;
  border-radius: var(--radius-md);
}

/* ============================
   STOCK TICKER BAR
   ============================ */
.ticker-bar {
  height: var(--ticker-h);
  background: #000000;
  border-bottom: 1px solid rgba(0,230,118,0.2);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.ticker-bar__track {
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-bar__content {
  display: flex;
  gap: var(--sp-8);
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  padding-left: 100%;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-text-dim);
  letter-spacing: 0.02em;
}

.ticker-item strong {
  color: var(--clr-text-muted);
  font-weight: 600;
}

.ticker-item--up span {
  color: var(--clr-green);
  font-weight: 600;
}

.ticker-item--down span {
  color: var(--clr-red);
  font-weight: 600;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,230,118,0.1);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar--scrolled {
  background: rgba(0,0,0,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.8), 0 1px 0 rgba(0,230,118,0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.logo-icon {
  font-size: 1.5rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.navbar__links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: width var(--transition);
}

.navbar__links a:not(.btn):hover {
  color: #fff;
}

.navbar__links a:not(.btn):hover::after {
  width: 100%;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--navbar-h) + var(--ticker-h) + var(--sp-8));
  padding-bottom: var(--sp-10);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(0,230,118,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(251,191,36,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,230,118,0.12) 0%, rgba(0,230,118,0.04) 40%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Second glow on left for depth */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,230,118,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Candlestick chart background decoration */
.hero__chart-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 70%;
  opacity: 0.2;
  background-image:
    linear-gradient(to top, var(--clr-green) 0%, var(--clr-green) 100%),
    linear-gradient(to top, var(--clr-green) 0%, var(--clr-green) 100%),
    linear-gradient(to top, var(--clr-green) 0%, var(--clr-green) 100%),
    linear-gradient(to top, var(--clr-green) 0%, var(--clr-green) 100%),
    linear-gradient(to top, var(--clr-green) 0%, var(--clr-green) 100%),
    linear-gradient(to top, var(--clr-red) 0%, var(--clr-red) 100%),
    linear-gradient(to top, var(--clr-red) 0%, var(--clr-red) 100%),
    linear-gradient(to top, var(--clr-green) 0%, var(--clr-green) 100%),
    linear-gradient(to top, var(--clr-green) 0%, var(--clr-green) 100%),
    linear-gradient(to top, var(--clr-green) 0%, var(--clr-green) 100%);
  background-size:
    12px 40%, 12px 55%, 12px 35%, 12px 65%, 12px 50%,
    12px 30%, 12px 25%,
    12px 70%, 12px 80%, 12px 75%;
  background-position:
    5% 60%, 15% 45%, 25% 65%, 35% 35%, 45% 50%,
    55% 70%, 65% 75%,
    75% 30%, 85% 20%, 95% 25%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-green);
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-5);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: var(--sp-5);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  max-width: 600px;
}

.hero__pricing {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.price-old {
  font-size: 1.1rem;
  color: var(--clr-text-dim);
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.price-new--lg {
  font-size: 2.5rem;
}

.price-gst {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__seats {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  color: var(--clr-text-dim);
}

.hero__seats svg {
  color: var(--clr-green);
  flex-shrink: 0;
}

/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.stat-card {
  background: #1a1a1a;
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-green), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-card:hover {
  border-color: rgba(0,230,118,0.4);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0,230,118,0.1), 0 8px 32px rgba(0,0,0,0.5);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.stat-card__plus {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.stat-card__star {
  color: var(--clr-gold);
  font-size: 1.25rem;
}

.stat-card__label {
  display: block;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: var(--sp-1);
}

/* ============================
   SOCIAL PROOF BAR
   ============================ */
.proof-bar {
  background: #111111;
  border-top: 1px solid rgba(0,230,118,0.2);
  border-bottom: 1px solid rgba(0,230,118,0.2);
  padding: var(--sp-5) 0;
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.proof-bar__item svg {
  color: var(--clr-gold);
  flex-shrink: 0;
}

.proof-bar__item strong {
  color: #fff;
}

/* ============================
   CURRICULUM SECTION
   ============================ */
.curriculum {
  background: #000000;
  position: relative;
  overflow: hidden;
}

/* Animated rising stock line across curriculum */
.curriculum::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,230,118,0.03) 100%);
  pointer-events: none;
}

.curriculum::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Cpolyline points='0,180 100,160 200,170 300,130 400,140 500,100 600,110 700,70 800,80 900,40 1000,50 1100,20 1200,10' fill='none' stroke='%2300e676' stroke-width='2' opacity='0.12'/%3E%3Cpolyline points='0,180 100,160 200,170 300,130 400,140 500,100 600,110 700,70 800,80 900,40 1000,50 1100,20 1200,10' fill='none' stroke='%2300e676' stroke-width='1' opacity='0.06' stroke-dasharray='6 4'/%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%2300e676' stop-opacity='0.08'/%3E%3Cstop offset='1' stop-color='%2300e676' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='0,180 100,160 200,170 300,130 400,140 500,100 600,110 700,70 800,80 900,40 1000,50 1100,20 1200,10 1200,200 0,200' fill='url(%23g)'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 200px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.curriculum__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
  position: relative;
  z-index: 1;
}

.module-card {
  position: relative;
  background: #1a1a1a;
  border: 1px solid rgba(0,230,118,0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  transition: all var(--transition);
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--clr-green);
  opacity: 0;
  transition: opacity var(--transition);
}

.module-card:hover {
  border-color: rgba(0,230,118,0.35);
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0,230,118,0.1), 0 8px 24px rgba(0,0,0,0.5);
}

.module-card:hover::before {
  opacity: 1;
}

.module-card--highlight {
  border-color: rgba(0,230,118,0.35);
  background: linear-gradient(135deg, #1a1a1a, rgba(0,230,118,0.08));
}

.module-card--highlight::before {
  opacity: 1;
}

.module-card__num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-green);
  opacity: 0.7;
  margin-bottom: var(--sp-2);
}

.module-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-2);
}

.module-card__desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.module-card__badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--clr-gold);
  color: #020408;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.module-card__badge--enhanced {
  background: var(--clr-accent);
  color: #fff;
}

/* ============================
   WHO IS THIS FOR SECTION
   ============================ */
.who-for {
  background: #111111;
  position: relative;
}

.who-for__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
}

.who-for__card {
  background: #1e1e1e;
  border: 1px solid rgba(0,230,118,0.12);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  transition: all var(--transition);
}

.who-for__card:hover {
  border-color: rgba(0,230,118,0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0,230,118,0.1), 0 8px 24px rgba(0,0,0,0.5);
}

.who-for__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.18);
  border-radius: 50%;
  color: var(--clr-gold);
  margin: 0 auto var(--sp-4);
}

.who-for__card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-2);
}

.who-for__card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ============================
   WHY JOIN SECTION
   ============================ */
.why-join {
  background:
    radial-gradient(ellipse 50% 50% at 50% 30%, rgba(0,230,118,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  position: relative;
}

/* Subtle grid pattern overlay */
.why-join::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.why-join__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
  position: relative;
}

.feature-card {
  background: #1a1a1a;
  border: 1px solid rgba(0,230,118,0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(0,230,118,0.35);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0,230,118,0.1), 0 8px 24px rgba(0,0,0,0.5);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: var(--radius-sm);
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-2);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ============================
   INSTRUCTOR SECTION
   ============================ */
.instructor {
  background: #111111;
}

.instructor__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.instructor__image-placeholder {
  position: relative;
  width: 280px;
  height: 320px;
  background: linear-gradient(135deg, #1e1e1e, #2e2e2e);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.instructor__image-placeholder::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,230,118,0.3), transparent 50%, rgba(0,230,118,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.instructor__initials {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--clr-gold);
  opacity: 0.25;
}

.instructor__image-badge {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--clr-gold);
  color: #0a0e17;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
}

.instructor__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.credential-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-gold);
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
}

.instructor__bio {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.instructor__bio strong {
  color: #fff;
}

.instructor__sebi {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  color: var(--clr-green);
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  margin-top: var(--sp-4);
}

.instructor__sebi svg {
  flex-shrink: 0;
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.testimonials {
  background:
    radial-gradient(ellipse 50% 40% at 70% 50%, rgba(0,230,118,0.03) 0%, transparent 50%),
    linear-gradient(180deg, #000000 0%, #080808 50%, #000000 100%);
}

/* Rating Summary */
.rating-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-8);
  align-items: center;
  max-width: 700px;
  margin: 0 auto var(--sp-8);
  background: #1a1a1a;
  border: 1px solid rgba(0,230,118,0.12);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}

.rating-summary__score {
  text-align: center;
}

.rating-summary__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.rating-summary__stars {
  font-size: 1.25rem;
  color: var(--clr-gold);
  margin: var(--sp-1) 0;
}

.rating-summary__count {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.rating-bar + .rating-bar {
  margin-top: var(--sp-2);
}

.rating-bar__label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
  min-width: 28px;
}

.rating-bar__track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold), var(--clr-gold-light));
  border-radius: var(--radius-full);
  transition: width 1.5s ease;
}

.rating-bar__pct {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
  min-width: 32px;
  text-align: right;
}

/* Testimonial Cards */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-4);
}

.testimonial-card {
  background: #1a1a1a;
  border: 1px solid rgba(0,230,118,0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-4);
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--clr-gold);
  opacity: 0.12;
}

.testimonial-card:hover {
  border-color: rgba(0,230,118,0.35);
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0,230,118,0.08), 0 8px 24px rgba(0,0,0,0.5);
}

.testimonial-card__stars {
  font-size: 1rem;
  color: var(--clr-gold);
  margin-bottom: var(--sp-3);
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold-dark));
  color: #020408;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}

/* ============================
   FINAL CTA SECTION
   ============================ */
.cta-section {
  background: #111111;
  position: relative;
  overflow: hidden;
}

.cta-section__inner {
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #252525, #1a1a1a);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-6);
  position: relative;
  overflow: hidden;
}

.cta-section__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(245,197,66,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-3);
}

.cta-section__subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-5);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-section__pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.cta-section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-gold);
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-5);
}

.cta-section__badge svg {
  color: var(--clr-gold);
}

.cta-section__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}

.cta-section__trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}

.cta-section__trust svg {
  color: var(--clr-green);
  flex-shrink: 0;
}

.cta-section__note {
  font-size: 0.85rem;
  color: var(--clr-text-dim);
  margin-top: var(--sp-4);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #000000;
  border-top: 1px solid rgba(0,230,118,0.15);
  padding: var(--sp-8) 0 var(--sp-6);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-5);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(0,230,118,0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__brand .logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.footer__sebi {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
  line-height: 1.5;
}

.footer__socials {
  display: flex;
  gap: var(--sp-4);
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid rgba(251,191,36,0.1);
  color: var(--clr-text-muted);
  transition: all var(--transition);
}

.footer__socials a:hover {
  background: var(--clr-surface-2);
  color: var(--clr-gold);
  border-color: rgba(251,191,36,0.35);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(251,191,36,0.15);
}

.footer__bottom {
  padding-top: var(--sp-5);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-surface-2);
  border: 1px solid rgba(251,191,36,0.15);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-gold);
  color: #020408;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(251,191,36,0.3);
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE — TABLET
   ============================ */
@media (max-width: 1024px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .instructor__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    text-align: center;
  }

  .instructor__image {
    display: flex;
    justify-content: center;
  }

  .instructor__credentials {
    justify-content: center;
  }

  .instructor__sebi {
    display: inline-flex;
  }

  .rating-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ============================
   RESPONSIVE — MOBILE
   ============================ */
@media (max-width: 768px) {
  :root {
    --navbar-h: 64px;
    --ticker-h: 32px;
  }

  .section {
    padding: var(--sp-10) 0;
  }

  .container {
    padding: 0 var(--sp-4);
  }

  .ticker-item {
    font-size: 0.65rem;
  }

  /* Mobile Navigation */
  .navbar__hamburger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--navbar-h) + var(--ticker-h) + var(--sp-6)) var(--sp-6) var(--sp-6);
    background: var(--clr-surface);
    border-left: 1px solid rgba(251,191,36,0.1);
    transform: translateX(100%);
    transition: transform var(--transition);
    gap: var(--sp-4);
  }

  .navbar__links.open {
    transform: translateX(0);
  }

  .navbar__links .btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--sp-4);
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding-top: calc(var(--navbar-h) + var(--ticker-h) + var(--sp-6));
    padding-bottom: var(--sp-8);
  }

  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero__chart-bg {
    display: none;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
    margin-top: var(--sp-6);
  }

  .stat-card {
    padding: var(--sp-4) var(--sp-3);
  }

  .stat-card__number {
    font-size: 1.35rem;
  }

  /* Proof bar mobile */
  .proof-bar__inner {
    flex-direction: column;
    gap: var(--sp-3);
  }

  /* Grid adjustments */
  .curriculum__grid,
  .why-join__grid,
  .who-for__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* CTA Section mobile */
  .cta-section__inner {
    padding: var(--sp-8) var(--sp-5);
  }

  .price-new--lg {
    font-size: 2rem;
  }

  .cta-section__trust {
    flex-direction: column;
    gap: var(--sp-3);
  }

  /* Footer mobile */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__pricing {
    flex-wrap: wrap;
    gap: var(--sp-2);
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn--lg,
  .btn--xl {
    width: 100%;
    justify-content: center;
  }

  .module-card {
    padding: var(--sp-4);
  }

  .feature-card {
    padding: var(--sp-4);
  }

  .who-for__card {
    padding: var(--sp-4);
  }
}
