/* =========================================================
   MM MEDIA WORKS — VIDEO EDITING MASTERCLASS LANDING PAGE
   Course Sales Funnel Styling
   ========================================================= */

:root {
  --bg-main: #060913;
  --bg-card: #0d1222;
  --bg-card-hover: #131b31;
  --bg-glass: rgba(15, 23, 42, 0.75);
  --border-color: rgba(217, 180, 99, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  --gold-primary: #d9b463;
  --gold-light: #fbe5aa;
  --gold-gradient: linear-gradient(135deg, #f5d485 0%, #d9b463 50%, #b88f39 100%);
  --gold-glow: rgba(217, 180, 99, 0.35);
  
  --accent-green: #22c55e;
  --accent-green-glow: rgba(34, 197, 94, 0.35);
  --accent-red: #ef4444;
  --accent-red-glow: rgba(239, 68, 68, 0.35);
  
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px rgba(217, 180, 99, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

a { text-decoration: none; color: inherit; }
.text-gold { color: var(--gold-primary); }
.text-green { color: var(--accent-green); }
.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP URGENCY TICKER */
.top-ticker {
  background: linear-gradient(90deg, #7f1d1d, #b91c1c, #991b1b);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
}

.top-ticker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.ticker-text {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.ticker-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #facc15;
  border-radius: 50%;
  box-shadow: 0 0 8px #facc15;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.ticker-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* NAVIGATION */
.site-nav {
  padding: 16px 0;
  background: rgba(6, 9, 19, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 90;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.batch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 180, 99, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTONS */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #060913;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 25px var(--gold-glow);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(217, 180, 99, 0.55);
}

.btn-cta.pulse-cta {
  animation: button-pulse 2.2s infinite;
}

@keyframes button-pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 180, 99, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(217, 180, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 180, 99, 0); }
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-outline {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(217, 180, 99, 0.1);
  color: var(--gold-light);
}

/* HERO SECTION */
.hero-section {
  padding: 45px 0 65px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 15%, rgba(217, 180, 99, 0.12) 0%, rgba(6, 9, 19, 0.98) 75%);
}

.hero-content {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fca5a5;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto 32px;
}

.event-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  max-width: 880px;
  margin: 0 auto 34px;
}

.spec-card {
  background: rgba(13, 18, 34, 0.85);
  border: 1px solid var(--border-color);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}

.spec-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
}

.spec-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.spec-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.video-preview-wrapper {
  position: relative;
  max-width: 780px;
  margin: 0 auto 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  aspect-ratio: 16 / 9;
  background: #020617;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.85);
}

.video-preview-wrapper:hover .video-thumb {
  transform: scale(1.03);
}

.video-overlay-cta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.5) 100%);
}

.play-circle {
  width: 72px;
  height: 72px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #060913;
  font-size: 1.8rem;
  padding-left: 5px;
  box-shadow: 0 0 30px var(--gold-glow);
  transition: transform 0.25s;
}

.video-preview-wrapper:hover .play-circle {
  transform: scale(1.12);
}

.video-overlay-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.price-anchor-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.price-anchor-tag .original {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 1rem;
}

.price-anchor-tag .current {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.price-anchor-tag .discount {
  background: var(--accent-green);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.guarantee-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CREDIBILITY STRIP */
.numbers-strip {
  padding: 36px 0;
  background: #090e1f;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item { padding: 10px; }

.stat-number {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--gold-primary);
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* COMMON SECTIONS */
.section-padding { padding: 75px 0; }
.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* REALITY CHECK / PROBLEM */
.reality-section { background: #070b16; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.6);
}

.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-block;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #fca5a5;
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* TRANSFORMATION */
.transformation-section {
  background: radial-gradient(circle at 50% 50%, #0d1429 0%, var(--bg-main) 100%);
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.transform-box {
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
}

.transform-box.before-box {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.transform-box.after-box {
  background: rgba(34, 197, 94, 0.05);
  border: 2px solid var(--accent-green);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.transform-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.transform-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.before-badge { background: #dc2626; color: #fff; }
.after-badge { background: var(--accent-green); color: #000; }

.transform-header h3 { font-size: 1.35rem; }

.transform-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transform-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.before-box .transform-list li { color: #cbd5e1; }
.after-box .transform-list li { color: #f1f5f9; font-weight: 500; }

.icon-cross {
  color: #ef4444;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-check {
  color: #22c55e;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* AUDIENCE */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.25s ease;
}

.audience-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.audience-avatar {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.audience-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CURRICULUM */
.curriculum-section { background: #070a14; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: all 0.25s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-glow);
}

.module-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(217, 180, 99, 0.18);
}

.module-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.module-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  padding-right: 35px;
}

.module-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module-topics li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.module-topics li span.dot-bullet {
  color: var(--gold-primary);
  font-size: 1.2rem;
  line-height: 1;
}

/* BONUSES */
.bonuses-section {
  background: radial-gradient(circle at 50% 10%, rgba(217, 180, 99, 0.12) 0%, var(--bg-main) 70%);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.bonus-card {
  background: linear-gradient(145deg, #0e1428 0%, #080c1b 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.bonus-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
}

.bonus-val {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.bonus-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.bonus-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.bonus-summary-banner {
  background: rgba(217, 180, 99, 0.08);
  border: 2px dashed var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.bonus-summary-banner h4 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.bonus-summary-banner p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* MENTOR */
.mentor-section { background: #080c1a; }

.mentor-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: center;
}

.mentor-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-glow);
}

.mentor-photo {
  width: 100%;
  height: auto;
  display: block;
}

.mentor-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(6, 9, 19, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.mentor-badge-title {
  font-weight: 800;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.mentor-badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mentor-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}

.mentor-copy p {
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.mentor-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.m-highlight-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* TESTIMONIALS */
.testimonials-section { background: #050811; }

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.testimonial-video-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
}

.test-video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  cursor: pointer;
  overflow: hidden;
}

.test-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.3s;
}

.test-video-thumb-wrap:hover .test-video-thumb {
  transform: scale(1.05);
}

.test-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #060913;
  font-size: 1.3rem;
  padding-left: 3px;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.test-card-body { padding: 20px; }

.student-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.student-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.student-role {
  font-size: 0.78rem;
  color: var(--gold-primary);
}

.stars {
  color: #facc15;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.student-quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.student-proof-tag {
  margin-top: 12px;
  display: inline-block;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* PRICING */
.pricing-section {
  background: radial-gradient(circle at 50% 30%, rgba(217, 180, 99, 0.15) 0%, #060913 80%);
  padding: 80px 0;
}

.grand-offer-box {
  background: linear-gradient(180deg, #10162c 0%, #090e1f 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  max-width: 820px;
  margin: 0 auto;
  padding: 45px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px var(--gold-glow);
  position: relative;
  text-align: center;
}

.grand-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #060913;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px var(--gold-glow);
  white-space: nowrap;
}

.grand-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 15px 0 8px;
}

.grand-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.seats-meter-wrap {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  max-width: 540px;
  margin: 0 auto 28px;
}

.seats-meter-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.seats-left-txt { color: #f87171; }

.seats-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.seats-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.price-showcase { margin-bottom: 24px; }
.price-reg {
  text-decoration: line-through;
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-right: 12px;
}

.price-big {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold-primary);
  font-family: var(--font-heading);
}

.price-discount-pill {
  display: inline-block;
  background: var(--accent-green);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-left: 10px;
  vertical-align: middle;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
  max-width: 680px;
  margin: 0 auto 32px;
}

.incl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.incl-check {
  color: var(--accent-green);
  font-size: 1.1rem;
  font-weight: 900;
}

.offer-countdown-box { margin-bottom: 26px; }
.offer-countdown-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.timer-boxes {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.time-box {
  background: #080c1a;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  min-width: 65px;
}

.time-box .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  display: block;
}

.time-box .lbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.grand-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.grand-cta-btn {
  width: 100%;
  max-width: 480px;
  font-size: 1.25rem;
  padding: 18px 30px;
}

.whatsapp-fallback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-size: 0.95rem;
  font-weight: 600;
}

.whatsapp-fallback:hover { text-decoration: underline; }

/* FAQS */
.faq-section { background: #060913; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active { border-color: var(--gold-primary); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 15px;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer { display: block; }

/* FOOTER */
.course-footer {
  background: #04060d;
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0 100px;
  text-align: center;
}

.course-footer p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-links a:hover { color: var(--gold-primary); }

/* STICKY BAR */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 28, 0.94);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold-primary);
  padding: 12px 20px;
  z-index: 99;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
  transform: translateY(120%);
  transition: transform 0.35s ease;
}

.sticky-bottom-bar.visible { transform: translateY(0); }

.sticky-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky-title { font-weight: 700; font-size: 0.95rem; }
.sticky-timer-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #fca5a5;
  font-weight: 600;
}

.sticky-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.sticky-price-reg {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.sticky-price-curr {
  font-weight: 800;
  color: var(--gold-primary);
  font-size: 1.25rem;
}

/* MODALS */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #0f172a;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.9);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-video-container {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

.modal-video-container iframe,
.modal-video-container video {
  width: 100%;
  height: 100%;
  border: none;
}

.booking-modal-dialog {
  max-width: 520px;
  padding: 36px 30px;
  background: #0c1224;
  text-align: center;
}

.booking-modal-title { font-size: 1.6rem; margin-bottom: 8px; }
.booking-modal-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.pay-options-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.pay-opt-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
}

.pay-opt-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.pay-opt-primary {
  background: var(--gold-gradient);
  color: #060913;
  border: none;
}

.pay-opt-primary:hover {
  color: #060913;
  box-shadow: 0 4px 20px var(--gold-glow);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mentor-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mentor-photo-wrap {
    max-width: 380px;
    margin: 0 auto;
  }
  .transformation-grid { grid-template-columns: 1fr; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .inclusions-grid { grid-template-columns: 1fr; }
  .sticky-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .sticky-info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .sticky-bottom-bar .btn-cta { width: 100%; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.85rem; }
  .top-ticker-inner { font-size: 0.8rem; }
  .grand-offer-box { padding: 30px 18px; }
  .time-box { min-width: 52px; padding: 6px 10px; }
  .time-box .num { font-size: 1.3rem; }
  .btn-cta { font-size: 1rem; padding: 14px 24px; width: 100%; }
  .nav-actions .btn-cta { display: none; }
}
