/* ============================================
   NBI Landing Pages — Gradient Energy Theme
   ============================================ */

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

:root {
  --orange: #f46530;
  --red: #e93d3d;
  --purple: #6b21a8;
  --purple-deep: #4c1d95;
  --dark: #0f0f1a;
  --dark-card: #1a1a2e;
  --dark-lighter: #252540;
  --text-white: #f5f5f5;
  --text-muted: rgba(255,255,255,0.6);
  --text-dark: #1a1a1a;
  --text-dark-muted: #666;
  --gradient-main: linear-gradient(135deg, #f46530, #e93d3d, #6b21a8);
  --gradient-subtle: linear-gradient(135deg, rgba(244,101,48,0.15), rgba(107,33,168,0.15));
  --gradient-border: linear-gradient(135deg, #f46530, #e93d3d, #6b21a8);
  --glow-orange: rgba(244,101,48,0.4);
  --glow-purple: rgba(107,33,168,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }

/* ---- Keyframes ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes meshMove {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 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; }

/* ---- Utilities ---- */
.gradient-text {
  background: var(--gradient-main);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-eyebrow.gradient { color: var(--orange); }

/* ---- Mesh Orbs ---- */
.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.orb-1 { width: 400px; height: 400px; background: var(--orange); opacity: 0.2; top: 10%; right: 5%; animation: meshMove 10s ease-in-out infinite; }
.orb-2 { width: 350px; height: 350px; background: var(--purple); opacity: 0.15; bottom: 5%; left: 10%; animation: meshMove 14s ease-in-out infinite reverse; }
.orb-3 { width: 200px; height: 200px; background: var(--red); opacity: 0.12; top: 50%; left: 40%; animation: meshMove 8s ease-in-out infinite; }

/* ============================================
   HERO (Registration Page)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { animation: fadeUp 0.8s ease forwards; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gradient-subtle);
  border: 1px solid rgba(244,101,48,0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: glow 2s ease infinite;
  box-shadow: 0 0 12px var(--glow-orange);
}
.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-event {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}
.hero-event .no-replay {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ============================================
   FORM CARD
   ============================================ */
.form-card {
  position: relative;
  border-radius: 24px;
  padding: 2px;
  background: var(--gradient-border);
  animation: fadeUp 0.8s ease 0.3s both;
}
.form-card-inner {
  background: var(--dark-card);
  border-radius: 22px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.form-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(244,101,48,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.form-card h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
}
.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,101,48,0.15), 0 0 20px rgba(244,101,48,0.1);
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }

/* ---- Buttons ---- */
.btn-gradient {
  width: 100%;
  padding: 16px;
  background: var(--gradient-main);
  background-size: 200% auto;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, background-position 0.5s;
  margin-top: 8px;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-orange), 0 4px 15px var(--glow-purple);
  background-position: right center;
}
.btn-white {
  display: inline-block;
  padding: 20px 56px;
  background: #fff;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.btn-gradient-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
}
.btn-gradient-outline:hover {
  border-color: var(--orange);
  background: rgba(244,101,48,0.08);
}
.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 14px;
  position: relative;
}

/* ============================================
   QUALIFIER (Light Section)
   ============================================ */
.qualifier {
  background: #fafafa;
  color: var(--text-dark);
  padding: 100px 24px;
}
.qualifier-inner { max-width: 1000px; margin: 0 auto; }
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.qualifier-card {
  padding: 36px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.qualifier-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.qualifier-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.qualifier-card.is-for { border-top: 3px solid var(--orange); }
.qualifier-card.is-for h3 { color: var(--orange); }
.qualifier-card.not-for { border-top: 3px solid #ccc; }
.qualifier-card.not-for h3 { color: #999; }
.qualifier-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}
.qualifier-item strong { color: var(--text-dark); }
.qualifier-item .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}
.is-for .icon { background: var(--gradient-main); color: #fff; }
.not-for .icon { background: #eee; color: #999; }

/* ============================================
   DISCOVER (Dark Section + Mesh)
   ============================================ */
.discover {
  position: relative;
  padding: 100px 24px;
  background: var(--dark);
  overflow: hidden;
}
.discover .mesh-orb-1 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  filter: blur(100px); background: var(--purple); opacity: 0.15;
  top: 20%; right: -5%; animation: meshMove 12s ease-in-out infinite;
}
.discover .mesh-orb-2 {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  filter: blur(80px); background: var(--orange); opacity: 0.1;
  bottom: 10%; left: -5%; animation: meshMove 10s ease-in-out infinite reverse;
}
.discover-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.discover h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 56px; }
.discover-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.discover-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: var(--gradient-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.discover-item:hover::before { opacity: 1; }
.discover-item:hover { background: rgba(255,255,255,0.06); transform: translateX(8px); }
.discover-check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 10px;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem; font-weight: 700;
}
.discover-item p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.65; }
.discover-item p strong { color: var(--text-white); }
.discover-closing {
  text-align: center;
  margin-top: 44px;
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   SOCIAL PROOF (Light Section)
   ============================================ */
.social-proof {
  background: #fafafa;
  color: var(--text-dark);
  padding: 120px 24px;
  text-align: center;
}
.social-proof-inner { max-width: 900px; margin: 0 auto; }
.social-proof h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

/* VSL Video */
.vsl-wrapper {
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 12px 50px rgba(0,0,0,0.15);
}
.vsl-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.vsl-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark-card);
  color: var(--text-muted);
  gap: 12px;
  font-size: 0.9rem;
}
.vsl-placeholder .play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-orange);
}
.vsl-caption {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}
.vsl-caption strong { color: var(--text-dark); }
.vsl-caption .highlight { color: var(--orange); font-weight: 700; }

/* Case Study */
.case-study {
  margin-top: 48px;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.case-study::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-main);
}
.case-study-stat {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-study-name { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.case-study p { color: var(--text-dark-muted); font-size: 1rem; line-height: 1.7; }
.case-study .highlight { color: var(--orange); font-weight: 700; }

/* ============================================
   TESTIMONIALS (Light Section)
   ============================================ */
.testimonials {
  background: #fafafa;
  color: var(--text-dark);
  padding: 20px 24px 120px;
}
.testimonials-inner { max-width: 1000px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-header h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.testimonial-card {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }
.testimonial-card:hover::after { opacity: 1; }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: #fff;
}
.testimonial-avatar-img {
  width: 38px; height: 38px;
  border-radius: 10px;
  object-fit: cover;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.testimonial-tag {
  font-size: 0.7rem; font-weight: 600;
  color: var(--orange);
  background: rgba(244,101,48,0.08);
  padding: 2px 10px; border-radius: 6px;
}
.testimonial-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.testimonial-body { font-size: 0.88rem; color: var(--text-dark-muted); line-height: 1.65; }

/* ============================================
   INSTRUCTOR (Dark Section)
   ============================================ */
.instructor {
  padding: 100px 24px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.instructor .mesh-orb {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%; filter: blur(100px);
  background: var(--purple-deep);
  opacity: 0.2; top: 30%; left: 50%;
  animation: meshMove 12s ease-in-out infinite;
}
.instructor-inner {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.instructor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.instructor-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.instructor-photo::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: var(--gradient-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0.5;
}
.instructor-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.instructor-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.instructor-stat {
  padding: 6px 16px; border-radius: 10px;
  background: rgba(244,101,48,0.1);
  border: 1px solid rgba(244,101,48,0.2);
  font-size: 0.8rem; font-weight: 700; color: var(--orange);
}
.instructor-content blockquote {
  border-left: 3px solid;
  border-image: var(--gradient-main) 1;
  padding-left: 20px;
  margin-bottom: 24px;
}
.instructor-content blockquote p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.instructor-content blockquote strong { color: var(--text-white); }
.instructor-bottom { font-size: 1.1rem; font-weight: 700; }

/* ============================================
   FINAL CTA (Gradient Section)
   ============================================ */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-main);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}
.final-cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; color: #fff; }
.final-cta p { color: rgba(255,255,255,0.85); margin-bottom: 36px; font-size: 1.1rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 14px 24px;
  background: rgba(15,15,26,0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-bar.visible { transform: translateY(0); }
.cta-bar button, .cta-bar a {
  padding: 12px 40px;
  background: var(--gradient-main);
  background-size: 200% auto;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-position 0.5s;
  text-decoration: none;
}
.cta-bar button:hover, .cta-bar a:hover { background-position: right center; }

/* ============================================
   THANK YOU PAGE — HERO
   ============================================ */
.thankyou-hero {
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.thankyou-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.thankyou-hero .check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.thankyou-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  animation: fadeUp 0.6s ease 0.15s both;
}
.thankyou-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeUp 0.6s ease 0.3s both;
}

/* ============================================
   EVENT DETAILS (Light Section)
   ============================================ */
.event-details {
  background: #fafafa;
  color: var(--text-dark);
  padding: 80px 24px;
}
.event-details-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.event-card {
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-main);
}
.event-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.event-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.event-meta-item .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark-muted);
}
.event-meta-item .value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}
.calendar-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.calendar-btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.calendar-btn:hover {
  background: var(--orange);
  color: #fff;
}

/* Calendar Dropdown */
.calendar-dropdown {
  max-width: 400px;
  margin: 0 auto;
}
.calendar-dropdown-toggle {
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-main);
  background-size: 200% auto;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-position 0.5s, box-shadow 0.3s;
}
.calendar-dropdown-toggle:hover {
  background-position: right center;
  box-shadow: 0 6px 25px var(--glow-orange);
}
.calendar-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
}
.calendar-dropdown.open .calendar-arrow {
  transform: rotate(180deg);
}
.calendar-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s, border-color 0.4s;
  background: #fff;
  border-radius: 0 0 12px 12px;
  border: 2px solid transparent;
  border-top: none;
  margin-top: -4px;
}
.calendar-dropdown.open .calendar-dropdown-menu {
  max-height: 320px;
  padding: 8px 0;
  border-color: #e8e8e8;
}
.calendar-dropdown-item {
  display: block;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
}
.calendar-dropdown-item:last-of-type {
  border-bottom: none;
}
.calendar-dropdown-item:hover {
  background: rgba(244,101,48,0.06);
  color: var(--orange);
}
.calendar-note {
  padding: 10px 24px 6px;
  font-size: 0.75rem;
  color: #999;
  text-align: center;
}

/* ============================================
   VSL SECTION (Dark — Thank You Page)
   ============================================ */
.vsl-section {
  padding: 80px 24px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.vsl-section-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================
   STEPS SECTION (Light)
   ============================================ */
.steps {
  background: #fafafa;
  color: var(--text-dark);
  padding: 100px 24px;
}
.steps-inner { max-width: 800px; margin: 0 auto; }
.steps h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 56px;
  color: var(--text-dark);
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.step-number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: #fff;
}
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.step-content p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}
.step-cta {
  margin-top: 12px;
}
.step-cta a {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gradient-main);
  background-size: 200% auto;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.3s, background-position 0.5s;
}
.step-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--glow-orange);
  background-position: right center;
}

/* ============================================
   TRAINING PREVIEW (Dark Section)
   ============================================ */
.training-preview {
  padding: 100px 24px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.training-preview-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.training-preview h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.training-preview p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 650px;
}
.training-preview p strong { color: var(--text-white); }

/* ============================================
   FAQ (Light Section)
   ============================================ */
.faq {
  background: #fafafa;
  color: var(--text-dark);
  padding: 100px 24px;
}
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--text-dark);
}
.faq-item {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--orange);
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .qualifier-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .instructor-inner { grid-template-columns: 1fr; text-align: center; }
  .instructor-photo { max-width: 250px; margin: 0 auto; }
  .instructor-content blockquote { text-align: left; }
  .event-meta { gap: 20px; }
  .step { flex-direction: column; }
  .calendar-buttons { flex-direction: column; align-items: center; }
}
