/* ============================================
   DESIGN SYSTEM — CSS Variables & Global Reset
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

.skeleton {
  background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeletonLoading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

:root {
  /* Colors */
  --bg: #080808;
  --gold: #C9A840;
  --gold-light: #E8C96A;
  --white: #FFFFFF;
  --gray: #888888;
  --card-bg: #111111;
  --border: rgba(201, 168, 64, 0.2);

  /* Typography */
  --font-main: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
}

/* Fix all overlapping on mobile */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body { overflow-x: hidden; }
img, video { max-width: 100%; height: auto; }

/* Base Body */
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Utility: Section Label */
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

/* Utility: Section Heading */
.section-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* Utility: Gold CTA Button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(201, 168, 64, 0.4);
}

/* Utility: Outlined Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* Utility: Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Images */
img {
  max-width: 100%;
  display: block;
}

/* Lists */
ul {
  list-style: none;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.logo-fallback {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link svg {
  transition: transform var(--transition-fast);
}

/* Dropdown */
.has-dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-menu li a:hover {
  background: rgba(201, 168, 64, 0.1);
  color: var(--gold);
}

/* Nav Buttons */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-nav {
  padding: 10px 22px;
  font-size: 13px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE RESPONSIVE — NAVBAR
   ============================================ */

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    background: rgba(17, 17, 17, 0.8);
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 4px 0;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown.active .dropdown-menu {
    display: block;
    transform: none;
  }

  .dropdown-menu li a {
    text-align: center;
    padding: 10px 24px;
  }

  .nav-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  margin-top: -72px; /* Pull up behind navbar */
  padding-top: 72px; /* Offset content for navbar */
}

/* Fallback background if image is missing */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.hero-label {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 1000px;
}

.hero-subtitle {
  color: var(--gray);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.hero-btn {
  font-size: 18px;
  padding: 20px 48px;
  border-radius: 8px;
  margin-bottom: 30px;
}

/* Social Proof */
.hero-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.avatars {
  display: flex;
  justify-content: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #000;
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.hero-social-proof p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
}

/* ============================================
   MOBILE RESPONSIVE — HERO
   ============================================ */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(40px, 10vw, 60px);
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* ============================================
   REVIEWS STRIP
   ============================================ */

.reviews-strip {
  background: #0f0f0f;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  height: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}

.reviews-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: scrollLeft 20s linear infinite;
  padding-left: 24px;
}

.reviews-strip:hover .reviews-track {
  animation-play-state: paused;
}

.review-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.review-dot {
  color: var(--gold);
  font-size: 10px;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%); /* Scroll one exact set width out of 3 */
  }
}

/* ============================================
   PRICING PLANS
   ============================================ */

.plans {
  padding: var(--section-padding);
  background: var(--bg);
}

.plans-header {
  text-align: center;
  margin-bottom: 60px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

/* Base Card */
.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast);
}

.plan-name {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 30px;
}

.plan-price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}

.plan-benefits {
  margin-bottom: 40px;
  flex-grow: 1;
  list-style: none;
}

.plan-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--white);
}

.check {
  color: var(--gray);
  font-weight: bold;
}

.check-gold {
  color: var(--gold);
  font-weight: bold;
}

/* Sold Out State */
.sold-out {
  opacity: 0.6;
  filter: grayscale(100%);
  pointer-events: none;
}

.sold-out-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff3333;
  color: white;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.lock-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--gray);
}

.btn-disabled {
  width: 100%;
  justify-content: center;
  color: var(--gray);
  border-color: var(--gray);
}

/* Active Plan State */
.active-plan {
  background: var(--gold);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(201, 168, 64, 0.3);
  animation: pulse-glow 3s infinite;
  z-index: 2;
}

.active-plan .plan-benefits li {
  color: #000;
  font-weight: 500;
}

.plan-btn-active {
  width: 100%;
  justify-content: center;
  background: #000;
  color: var(--gold);
}

.plan-btn-active:hover {
  background: #111;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 30px rgba(201, 168, 64, 0.2); }
  50% { box-shadow: 0 0 50px rgba(201, 168, 64, 0.5); }
  100% { box-shadow: 0 0 30px rgba(201, 168, 64, 0.2); }
}

/* Single Plan (Amharic Plan) */
.single-plan {
  background: var(--card-bg);
  border: 2px solid var(--gold);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(201, 168, 64, 0.3);
  animation: pulse-glow 3s infinite;
  z-index: 2;
}

.single-plan .plan-name {
  color: var(--gold);
}

.single-plan .plan-price {
  color: var(--gold);
}

.plan-btn-black {
  width: 100%;
  justify-content: center;
  background: #000;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: all var(--transition-fast);
}

.plan-btn-black:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px rgba(201, 168, 64, 0.5);
}

/* ============================================
   MOBILE RESPONSIVE — PRICING
   ============================================ */
@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .active-plan {
    transform: scale(1);
  }
}

/* ============================================
   3-PHASE TRANSFORMATION
   ============================================ */

.phases {
  padding: var(--section-padding);
  background: #0a0a0a;
  position: relative;
}

/* Subtle grid pattern background */
.phases::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.phases-container {
  position: relative;
  z-index: 2;
}

.phases-header {
  text-align: center;
  margin-bottom: 60px;
}

.phases-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.phase-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  max-width: 350px;
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.phase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 168, 64, 0.1);
}

.phase-img-placeholder {
  width: 100%;
  height: 200px;
  background-color: #1a1a1a;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-weight: 600;
  border: 1px dashed #333;
}

.phase-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.phase-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.phase-arrow {
  color: var(--gold);
  opacity: 0.5;
  animation: bounceRight 2s infinite;
}

@keyframes bounceRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.phases-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

/* ============================================
   MOBILE RESPONSIVE — 3-PHASE
   ============================================ */
@media (max-width: 992px) {
  .phases-row {
    flex-direction: column;
    gap: 30px;
  }
  
  .phase-card {
    max-width: 100%;
  }

  .phase-arrow {
    transform: rotate(90deg);
    animation: bounceDown 2s infinite;
  }

  @keyframes bounceDown {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50% { transform: rotate(90deg) translateX(10px); }
  }
}

/* ============================================
   NARRATIVE "EXIT PLAN"
   ============================================ */

.narrative {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

/* Subtle diagonal line pattern */
.narrative::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: repeating-linear-gradient(45deg, rgba(201, 168, 64, 0.02) 0px, rgba(201, 168, 64, 0.02) 2px, transparent 2px, transparent 10px);
  pointer-events: none;
}

.narrative-container {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.narrative-content {
  flex: 1;
}

.narrative-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 40px;
}

.narrative-content p {
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.pull-quote {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.3;
  margin: 40px 0;
  padding-left: 20px;
  border-left: 4px solid var(--gold);
  font-style: italic;
}

.narrative-image-wrapper {
  flex: 1;
}

.narrative-image-placeholder {
  width: 100%;
  height: 600px;
  background: linear-gradient(to bottom right, #111, #050505);
  border: 1px solid var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ============================================
   MOBILE RESPONSIVE — NARRATIVE
   ============================================ */
@media (max-width: 992px) {
  .narrative-container {
    flex-direction: column-reverse; /* Image above text on mobile */
    gap: 40px;
  }

  .narrative-image-placeholder {
    height: 400px;
  }

  .pull-quote {
    font-size: 24px;
    margin: 30px 0;
  }
}

/* ============================================
   COMPARISON: THEIR WAY VS OUR WAY
   ============================================ */

.comparison {
  padding: var(--section-padding);
  background: #060606;
  position: relative;
  overflow: hidden;
}

/* Watermark logo */
.comparison::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: url('assets/logo.png') center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.comparison-container {
  position: relative;
  z-index: 2;
}

.comparison-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.comparison-card {
  flex: 1;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.comparison-card-title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}

.comparison-list {
  flex-grow: 1;
  margin-bottom: 40px;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--white);
}

/* "Bad" Side */
.card-bad {
  border: 1px solid rgba(255, 51, 51, 0.2);
}

.card-bad .comparison-card-title {
  color: var(--gray);
}

.cross {
  color: #ff3333;
  font-weight: bold;
}

.card-bad .comparison-list li {
  color: #888;
}

.btn-bad {
  width: 100%;
  justify-content: center;
  color: #666;
  border-color: #333;
  cursor: not-allowed;
}

.btn-bad:hover {
  background: transparent;
  color: #666;
}

/* "Good" Side */
.card-good {
  border: 1px solid var(--gold);
  background: rgba(201, 168, 64, 0.05);
  box-shadow: 0 0 40px rgba(201, 168, 64, 0.1);
}

.card-good .comparison-card-title {
  color: var(--gold);
}

.btn-good {
  width: 100%;
  justify-content: center;
}

/* VS Badge */
.vs-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.vs-badge {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  border: 4px solid #060606;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* ============================================
   MOBILE RESPONSIVE — COMPARISON
   ============================================ */
@media (max-width: 992px) {
  .comparison-grid {
    flex-direction: column;
  }
  
  .vs-badge-container {
    margin: -30px 0; /* Pull cards closer and overlap VS badge */
  }
}

/* ============================================
   SUCCESS STORIES
   ============================================ */

.success-stories {
  padding: var(--section-padding);
  background: var(--bg);
}

.success-header {
  text-align: center;
  margin-bottom: 60px;
}

.success-subtext {
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 0 auto;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.story-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(201, 168, 64, 0.15);
  border-color: rgba(201, 168, 64, 0.5);
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.student-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.student-flag {
  font-size: 24px;
}

.story-earnings {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(201, 168, 64, 0.2);
}

.story-quote {
  font-size: 15px;
  color: #a0a0a0;
  font-style: italic;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.load-more-btn {
  padding: 12px 40px;
}

/* ============================================
   MOBILE RESPONSIVE — SUCCESS STORIES
   ============================================ */
/* Screenshot Testimonial Cards */
.story-card-screenshot {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.story-card-screenshot:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(201, 168, 64, 0.15);
  border-color: rgba(201, 168, 64, 0.5);
}

.story-card-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 992px) {
  .success-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   CERTIFICATE SECTION
   ============================================ */

.certificate {
  position: relative;
  padding: 120px 0;
  background: url('assets/certificate.png') center/cover no-repeat;
  text-align: center;
}

/* Fallback background if image is missing */
.certificate::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: #080808;
  z-index: 0;
}

.cert-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.7); /* 70% dark overlay */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
}

.cert-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-content {
  max-width: 800px;
  width: 100%;
}

.cert-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.cert-benefits li {
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-image-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  border: 4px solid var(--gold);
}

.cert-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #111, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-weight: 600;
}

/* Shimmer Animation */
.cert-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(201, 168, 64, 0) 0%, rgba(201, 168, 64, 0.3) 50%, rgba(201, 168, 64, 0) 100%);
  transform: skewX(-20deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* ============================================
   MOBILE RESPONSIVE — CERTIFICATE
   ============================================ */
@media (max-width: 768px) {
  .cert-benefits li {
    font-size: 15px;
  }
  
  .cert-image-placeholder {
    height: 250px;
  }
}

/* ============================================
   URGENCY SECTION
   ============================================ */

.urgency {
  padding: var(--section-padding);
  background: #040404; /* Very dark, almost black */
}

.urgency-header {
  text-align: center;
  margin-bottom: 60px;
}

.urgency-content {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

/* Tabs */
.urgency-tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.urgency-tab {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
  opacity: 0.6;
}

.urgency-tab:hover {
  opacity: 0.8;
  transform: translateX(10px);
}

.urgency-tab.active {
  opacity: 1;
  border-color: var(--gold);
  background: rgba(201, 168, 64, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateX(10px);
}

.tab-icon {
  font-size: 32px;
  filter: grayscale(100%);
  transition: filter var(--transition-fast);
}

.urgency-tab.active .tab-icon {
  filter: grayscale(0%);
}

.tab-text {
  flex: 1;
}

.tab-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.urgency-tab.active .tab-title {
  color: var(--gold);
}

.tab-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}

/* Images */
.urgency-images {
  flex: 1;
  position: relative;
  height: 450px;
}

.urgency-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111, #050505);
  color: #555;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.urgency-image.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   MOBILE RESPONSIVE — URGENCY
   ============================================ */
@media (max-width: 992px) {
  .urgency-content {
    flex-direction: column;
  }
  
  .urgency-images {
    width: 100%;
    height: 300px;
    order: -1; /* Move images above tabs on mobile */
  }
  
  .urgency-tab, .urgency-tab.active {
    transform: none;
  }
  
  .urgency-tab:hover {
    transform: translateY(-5px);
  }
}

/* ============================================
   APP SHOWCASE (PHONE MOCKUP)
   ============================================ */

.app-showcase {
  padding: 120px 0;
  background: radial-gradient(circle at center, rgba(201, 168, 64, 0.05) 0%, var(--bg) 70%);
  position: relative;
  overflow: hidden;
}

.showcase-container {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.showcase-content {
  flex: 1;
}

.showcase-content p {
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.showcase-btn {
  margin-top: 20px;
}

.showcase-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Gold Glow Behind Phone */
.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 400px;
  background: var(--gold);
  filter: blur(100px);
  opacity: 0.3;
  z-index: 0;
  border-radius: 50%;
}

/* Pure CSS Phone Frame */
.css-phone {
  position: relative;
  width: 300px;
  height: 620px;
  background: #111;
  border-radius: 40px;
  border: 8px solid #222;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255,255,255,0.1);
  z-index: 1;
  overflow: hidden;
  animation: floatPhone 6s ease-in-out infinite;
}

/* The Notch */
.notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #222;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

/* The Screen (Placeholder for app UI) */
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  border-radius: 32px; /* Inner radius slightly smaller than outer */
}

/* Floating Animation */
@keyframes floatPhone {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* ============================================
   MOBILE RESPONSIVE — APP SHOWCASE
   ============================================ */
@media (max-width: 992px) {
  .showcase-container {
    flex-direction: column-reverse; /* Image above text on mobile */
    gap: 50px;
  }

  .css-phone {
    width: 280px;
    height: 580px;
  }
}

/* ============================================
   TWO PATHS DECISION
   ============================================ */

.two-paths {
  padding: 120px 0;
  background: linear-gradient(180deg, #020202 0%, #0a0a0a 100%);
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.two-paths-header {
  text-align: center;
  margin-bottom: 60px;
}

.paths-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.path-card {
  flex: 1;
  border-radius: 16px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.path-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 30px;
}

.path-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.path-content p {
  font-size: 16px;
  line-height: 1.5;
}

/* "Bad" Path */
.path-bad {
  background: #0f0f0f;
  border: 1px solid #222;
  color: #666;
}

.path-bad .path-title {
  color: #555;
}

.btn-bad-path {
  width: 100%;
  justify-content: center;
  color: #555;
  border-color: #333;
  cursor: not-allowed;
  font-size: 14px;
}

/* "Good" Path */
.path-good {
  background: rgba(201, 168, 64, 0.05);
  border: 2px solid var(--gold);
  box-shadow: 0 0 50px rgba(201, 168, 64, 0.15);
  position: relative;
  overflow: hidden;
}

/* Glow effect inside good path */
.path-good::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,168,64,0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: pulse-glow 4s infinite;
}

.path-good .path-title {
  color: var(--white);
}

.path-price {
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 30px;
  text-shadow: 0 0 30px rgba(201, 168, 64, 0.4);
}

.path-good .path-content p {
  color: var(--white);
  font-weight: 500;
}

.btn-good-path {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

/* ============================================
   MOBILE RESPONSIVE — TWO PATHS
   ============================================ */
@media (max-width: 992px) {
  .paths-grid {
    flex-direction: column;
    gap: 0;
  }
  
  .path-card {
    padding: 40px 20px;
  }
}

/* ============================================
   COURSES / CAMPUSES GRID
   ============================================ */

.courses {
  padding: var(--section-padding);
  background: var(--bg);
}

.courses-header {
  text-align: center;
  margin-bottom: 60px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.course-card {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Background image that appears on hover */
.course-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(1.1);
}

/* Dark overlay over the background image */
.course-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.course-content {
  position: relative;
  z-index: 1;
}

.course-icon {
  font-size: 40px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.course-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.course-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hover States */
.course-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201, 168, 64, 0.2);
  transform: translateY(-5px);
}

.course-card:hover .course-bg {
  opacity: 1;
  transform: scale(1);
}

.course-card:hover .course-title {
  color: var(--gold);
}

.course-card:hover .course-icon {
  transform: scale(0.9) translateY(-5px);
}

.course-card:hover .course-desc {
  opacity: 1;
  transform: translateY(0);
  color: #ddd;
}

.courses-footer {
  text-align: center;
  margin-top: 40px;
}

.courses-footer p {
  color: var(--gray);
  margin-bottom: 20px;
  font-weight: 600;
}

/* 2-Column Detailed Course Cards */
.courses-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
}

.course-card-large {
  height: auto;
  padding: 40px;
  background: #0f0f0f;
}

.course-tagline {
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.course-description {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.course-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.course-benefits li {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Override typewriter animation on benefit/plan list items so they always show fully */
.course-benefits li.typewriter,
.course-benefits li.typewriter.typing,
.plan-benefits li.typewriter,
.plan-benefits li.typewriter.typing,
.plan-courses li.typewriter,
.plan-courses li.typewriter.typing {
  overflow: visible !important;
  white-space: normal !important;
  width: auto !important;
  border-right: none !important;
  animation: none !important;
}

.course-benefits li .check-gold,
.plan-benefits li .check-gold,
.plan-courses li .check-gold {
  flex-shrink: 0;
  margin-top: 2px;
}

.course-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Hover effects for large cards */
.course-card-large:hover .course-icon {
  transform: scale(1.1);
}

.course-card-large:hover .course-desc {
  opacity: 1; /* Reset from the old course-card style */
  transform: none;
}

/* ============================================
   MOBILE RESPONSIVE — COURSES
   ============================================ */
@media (max-width: 992px) { .courses-grid, .courses-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) { .courses-grid, .courses-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WINNING CIRCLE
   ============================================ */

.winning-circle {
  padding: 100px 0;
  background: #040404;
  overflow: hidden;
}

.winning-header {
  text-align: center;
  margin-bottom: 50px;
}

.win-row {
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Add subtle fade on edges */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.win-track {
  display: inline-flex;
  gap: 20px;
  white-space: nowrap;
}

/* Scroll Animations */
.track-left-normal {
  animation: scrollLeftWins 30s linear infinite;
}

.track-right-slow {
  animation: scrollRightWins 40s linear infinite;
}

.track-left-fast {
  animation: scrollLeftWins 20s linear infinite;
}

/* Pause on Hover */
.win-row:hover .win-track {
  animation-play-state: paused;
}

/* Win Card Styling (Placeholders) */
.win-card { white-space: normal; min-width: 250px; width: auto; max-width: 300px;
  width: 200px;
  height: 120px;
  background: linear-gradient(135deg, #151515, #080808);
  border: 1px solid rgba(201, 168, 64, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.win-card:hover {
  border-color: var(--gold);
  transform: scale(1.05);
}

.win-card span { font-size: 20px !important; 
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(201, 168, 64, 0.2);
}

/* Keyframes */
@keyframes scrollLeftWins {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); /* Scroll exactly 1 set of 3 out */ }
}

@keyframes scrollRightWins {
  0% { transform: translateX(-33.3333%); }
  100% { transform: translateX(0); }
}

/* ============================================
   EXCLUSIVE FEATURES
   ============================================ */

.features {
  padding: 120px 0;
  background: var(--bg);
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-blocks {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 60px;
}

.feature-block.reverse {
  /* No flex-direction reverse needed for desktop, just HTML order */
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* UI Mockup styling */
.feature-mockup {
  width: 100%;
  max-width: 500px;
  background: #111;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 64, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 168, 64, 0.1);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.feature-block:hover .feature-mockup {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(201, 168, 64, 0.2);
  border-color: rgba(201, 168, 64, 0.6);
}

.mockup-header {
  height: 30px;
  background: #1a1a1a;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}

.dot:nth-child(1) { background: #ff5f56; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #27c93f; }

.mockup-body {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-weight: 600;
  background: linear-gradient(135deg, #0a0a0a, #111);
}

.feature-text, .feature-content {
  flex: 1;
}

.feature-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 30px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 18px;
  color: #ddd;
  line-height: 1.5;
}

.check-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   MOBILE RESPONSIVE — FEATURES
   ============================================ */
@media (max-width: 992px) {
  .feature-block, .feature-block.reverse {
    flex-direction: column; /* Stacks image on top, text below */
    gap: 40px;
  }
  
  .feature-block.reverse .feature-text, .feature-content {
    order: 2; /* Ensure text is always below image on mobile */
  }
  
  .feature-block.reverse .feature-image {
    order: 1;
  }
  
  .features-blocks {
    gap: 80px;
  }
}

/* ============================================
   FINAL CTA / CHOICE
   ============================================ */

.final-cta {
  position: relative;
  padding: 120px 0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Fallback color if background image fails */
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #000;
  z-index: 0;
}

/* Dark 75% Overlay */
.cta-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.final-cta-container {
  position: relative;
  z-index: 2;
}

.final-cta-header {
  text-align: center;
  margin-bottom: 60px;
}

.cta-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-card {
  flex: 1;
  border-radius: 16px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
}

.cta-card-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cta-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.cta-subline {
  font-size: 15px;
}

.cta-list {
  flex-grow: 1;
  margin-bottom: 40px;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
}

/* Do Nothing Card */
.card-do-nothing {
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid #222;
  color: #666;
  backdrop-filter: blur(10px);
}

.card-do-nothing .cta-title,
.card-do-nothing .cta-subline {
  color: #666;
}

.card-do-nothing .cta-list li {
  color: #777;
}

/* Take Action Card */
.card-take-action {
  background: rgba(201, 168, 64, 0.05);
  border: 2px solid var(--gold);
  box-shadow: 0 0 50px rgba(201, 168, 64, 0.15);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card-take-action::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(201,168,64,0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: pulse-glow 4s infinite;
}

.card-take-action .cta-title {
  color: var(--white);
}

.card-take-action .cta-subline {
  color: var(--gold);
  font-weight: 600;
}

.cta-price {
  font-size: 80px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 40px rgba(201, 168, 64, 0.3);
}

.list-good li {
  color: var(--white);
}

.btn-huge {
  width: 100%;
  justify-content: center;
  font-size: 20px;
  padding: 22px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.cta-guarantee {
  text-align: center;
  font-size: 14px;
  color: #a0a0a0;
  font-weight: 500;
}

/* ============================================
   MOBILE RESPONSIVE — FINAL CTA
   ============================================ */
@media (max-width: 992px) {
  .cta-grid {
    flex-direction: column;
  }
  
  .cta-card {
    padding: 40px 25px;
  }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq {
  padding: var(--section-padding);
  background: #080808; /* Dark background */
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold);
  border-left: 4px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: rgba(201, 168, 64, 0.02);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--gold);
  padding-left: 26px; /* Adjust for the 4px left border */
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); /* Smooth collapse */
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* Large enough to fit any answer */
  transition: max-height 0.4s ease-in-out; /* Smooth expand */
}

.faq-answer-inner {
  padding: 0 30px 24px 30px;
  color: var(--gray);
  line-height: 1.6;
  font-size: 16px;
}

.faq-item.active .faq-answer-inner {
  padding-left: 26px; /* Adjust for the 4px left border */
}

/* ============================================
   MOBILE RESPONSIVE — FAQ
   ============================================ */
@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
    padding: 20px;
  }
  
  .faq-answer-inner {
    padding: 0 20px 20px 20px;
  }
  
  .faq-item.active .faq-question,
  .faq-item.active .faq-answer-inner {
    padding-left: 16px;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #050505;
  border-top: 1px solid rgba(201, 168, 64, 0.2);
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
  opacity: 0.8;
  filter: grayscale(100%) brightness(200%);
}

.footer-desc {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 15px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.support-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.support-email {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 20px;
  transition: color var(--transition-fast);
}

.support-email:hover {
  color: var(--gold);
}

.footer-login-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.footer-disclaimer {
  text-align: center;
  border-top: 1px solid #1a1a1a;
  padding-top: 40px;
  margin-bottom: 30px;
}

.footer-disclaimer p {
  color: #555;
  font-size: 12px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

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

.footer-bottom p {
  color: #444;
  font-size: 13px;
}

/* ============================================
   MOBILE RESPONSIVE — FOOTER
   ============================================ */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  
  .footer-desc {
    margin: 0 auto;
  }
}

/* ============================================
   GLOBAL MOBILE RESPONSIVENESS (STEP 20)
   ============================================ */
@media (max-width: 768px) {
  /* Reduce global section padding */
  :root {
    --section-padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px 0;
  }

  .phases,
  .narrative,
  .certificate,
  .app-showcase,
  .two-paths,
  .winning-circle,
  .features,
  .final-cta,
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* Scale down major headings */
  .section-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .section-label {
    margin-bottom: 15px;
  }
  
  /* Feature adjustments */
  .features-blocks {
    gap: 60px;
  }
  
  /* Pricing stack */
  .pricing-cards {
    gap: 30px;
  }
  
  /* Two Paths scaling */
  .path-price {
    font-size: 56px;
  }
  .cta-price {
    font-size: 60px;
  }
}


/* ============================================
   LANGUAGE TOGGLE & MODAL
   ============================================ */
body:not(.lang-english) .lang-en { display: none !important; }
body.lang-english .lang-am { display: none !important; }
body.lang-english .lang-en { display: inline !important; }

/* Exception for buttons and flex elements that might need to be flex/block */
body.lang-english button .lang-en, body.lang-english .btn-gold .lang-en, body.lang-english .btn-outline .lang-en { display: inline-flex !important; }

.lang-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.lang-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.lang-modal-content {
  background: #111;
  padding: 50px;
  border-radius: 16px;
  border: 2px solid var(--gold);
  text-align: center;
  box-shadow: 0 0 50px rgba(201, 168, 64, 0.3);
  max-width: 90%;
  width: 500px;
}
.lang-modal-content h2 { margin-bottom: 30px; font-weight: 900; line-height: 1.4; color: var(--white); }
.lang-buttons {
  display: flex; gap: 20px; justify-content: center;
}
.lang-buttons button {
  width: 100%;
  justify-content: center;
}
@media (max-width: 600px) {
  .lang-buttons { flex-direction: column; }
  .lang-modal-content { padding: 30px 20px; }
}






/* ============================================
   TRW PREMIUM UPGRADES
   ============================================ */
   
/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  padding: 15px;
  background: rgba(4, 4, 4, 0.9);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(201, 168, 64, 0.3);
  z-index: 9999;
  text-align: center;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.8);
}
.sticky-btn {
  width: 100%;
  justify-content: center;
  box-shadow: 0 0 30px rgba(201, 168, 64, 0.4);
  animation: pulse-glow 2s infinite;
}
@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 80px; } /* Ensure footer is not hidden */
}

/* Cyberpunk Shadows & TRW aesthetics */
.course-card, .plan-card {
  transform-style: preserve-3d;
}
.course-card:hover, .plan-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 50px rgba(201, 168, 64, 0.2), inset 0 0 20px rgba(201, 168, 64, 0.05);
}

/* Counters */
.counter {
  display: inline-block;
  min-width: 50px;
}

/* ========================================================= */
/* VIBECODE TRW ULTIMATE UPGRADES                            */
/* ========================================================= */

html { scroll-behavior: smooth; }

/* 1. Custom Cursor */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; pointer-events: none;
  z-index: 99999; transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 30px; height: 30px;
  border: 2px solid var(--gold); border-radius: 50%; pointer-events: none;
  z-index: 99998; transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

/* 2. Preloader */
.w-preloader {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: #000; z-index: 100000; display: flex;
  align-items: center; justify-content: center;
  transition: opacity 1s ease-out;
}
.w-preloader img {
  width: 100px; animation: pulse-gold 1.5s infinite;
}

/* 3. Hero Animations */
.hero-title .letter { opacity: 0; display: inline-block; transform: translateY(20px); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.hero-title .letter.visible { opacity: 1; transform: translateY(0); }
.gold-line {
  height: 2px; background: var(--gold); width: 0; margin: 20px auto;
  transition: width 1.5s ease-out;
}
.gold-line.drawn { width: 150px; }
.hero-subtitle { opacity: 0; transition: opacity 1s ease-in; }
.hero-subtitle.visible { opacity: 1; }
.btn-pulse { animation: pulse-gold 2s infinite; }
@keyframes pulse-gold {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(201,168,64,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(201,168,64,0.8); }
  100% { transform: scale(1); box-shadow: 0 0 10px rgba(201,168,64,0.4); }
}
.scroll-arrow {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 24px; animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } 40% { transform: translateY(-20px) translateX(-50%); } 60% { transform: translateY(-10px) translateX(-50%); } }

/* 4. FOMO Toast Upgrades */
#fomo-toast {
  left: -350px; transition: left 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden; position: fixed; bottom: 80px; background: rgba(10,10,10,0.95);
  border: 1px solid var(--gold); padding: 12px 20px; border-radius: 8px; z-index: 10000;
  display: flex; align-items: center; gap: 15px; box-shadow: 0 0 20px rgba(201,168,64,0.2); width: 280px;
}
#fomo-toast.show { left: 20px; }
.fomo-avatar {
  width: 40px; height: 40px; background: var(--gold); color: #000;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold;
}
.shimmer {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(201,168,64,0.3), transparent);
  transform: skewX(-20deg); animation: shimmer-sweep 2s infinite;
}
@keyframes shimmer-sweep { 100% { left: 200%; } }

/* 5. Course Card Upgrades */
.course-card { position: relative; overflow: hidden; transition: all 0.3s; }
.course-card:hover { box-shadow: inset 0 0 30px rgba(201,168,64,0.15), 0 0 40px rgba(201,168,64,0.4); border-color: var(--gold); }
.ribbon {
  position: absolute; top: 15px; right: -35px; background: var(--gold); color: #000;
  padding: 5px 40px; font-size: 10px; font-weight: 900; transform: rotate(45deg);
  text-transform: uppercase; box-shadow: 0 2px 4px rgba(0,0,0,0.5); z-index: 10;
}
/* Enrolled box & progress bar — hidden globally on the main site */
.progress-container { display: none !important; }
.progress-bar { display: none !important; }
.enrolled-text { display: none !important; }
.bounce-icon { display: none !important; }
.dyn-enrolled { display: none !important; }

/* 6. Flip Clock Countdown */
.flip-clock { display: flex; gap: 10px; justify-content: center; margin: 15px 0; }
.flip-digit {
  background: #111; color: var(--gold); font-size: 36px; font-weight: 900; font-family: monospace;
  padding: 15px 20px; border-radius: 8px; border: 1px solid #333; position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.8), inset 0 2px 0 rgba(255,255,255,0.1);
}
.flip-digit::after { content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 2px; background: #000; }
.siren-icon { animation: rotate-siren 2s infinite linear; color: #ff3333; display: inline-block; margin-right: 10px; }
@keyframes rotate-siren { 100% { transform: rotate(360deg); } }

/* 7. Pain Section Upgrades */
.noise-bg { position: relative; overflow: hidden; }
.noise-bg::before {
  content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACAQMAAABIeJ9nAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjYGBgAAAABAABJzQnCgAAAABJRU5ErkJggg==');
  opacity: 0.05; animation: noise 0.2s infinite; pointer-events: none; z-index: 1;
}
@keyframes noise { 0% { transform: translate(0,0) } 10% { transform: translate(-5%,-5%) } 20% { transform: translate(-10%,5%) } 30% { transform: translate(5%,-10%) } 40% { transform: translate(-5%,15%) } 50% { transform: translate(-10%,5%) } 60% { transform: translate(15%,0) } 70% { transform: translate(0,10%) } 80% { transform: translate(-15%,0) } 90% { transform: translate(10%,5%) } 100% { transform: translate(5%,0) } }
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: transparent;
}
.glitch::before { left: 2px; text-shadow: -1px 0 #ff3333; clip: rect(24px, 550px, 90px, 0); animation: glitch-anim 2s infinite linear alternate-reverse; }
.glitch::after { left: -2px; text-shadow: -1px 0 #00ffff; clip: rect(85px, 550px, 140px, 0); animation: glitch-anim 2s infinite linear alternate-reverse; }
@keyframes glitch-anim { 0% { clip: rect(11px, 9999px, 86px, 0); } 5% { clip: rect(69px, 9999px, 8px, 0); } 10% { clip: rect(31px, 9999px, 60px, 0); } }
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid var(--gold); width: 0; }
.typewriter.typing { animation: typing 2s steps(40, end) forwards, blink-caret .75s step-end infinite; }
@keyframes typing { from { width: 0 } to { width: 100% } }
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: var(--gold); } }
.flicker-icon { animation: flicker 1s infinite alternate; color: #ff3333; }
@keyframes flicker { 0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; text-shadow: 0 0 10px #ff3333; } 20%, 24%, 55% { opacity: 0; text-shadow: none; } }

/* 8. Us Vs Them Enhancements */
.matrix-side { filter: grayscale(100%) sepia(50%) hue-rotate(-50deg) saturate(300%); transition: all 1s; opacity: 0; transform: translateX(-50px); }
.matrix-side.visible { opacity: 1; transform: translateX(0); }
.protocol-side { box-shadow: 0 0 50px rgba(201,168,64,0.1); opacity: 0; transform: translateX(50px); transition: all 1s; }
.protocol-side.visible { opacity: 1; transform: translateX(0); box-shadow: 0 0 50px rgba(201,168,64,0.3); }
.scan-line { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: rgba(201,168,64,0.5); box-shadow: 0 0 10px var(--gold); animation: scan 3s infinite linear; }
@keyframes scan { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* 9. Social Proof Marquee */
.marquee-container { overflow: hidden; white-space: nowrap; width: 100%; padding: 20px 0; }
.marquee-track { display: inline-block; animation: marquee 30s linear infinite; }
.marquee-container:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.verified-badge { display: inline-flex; align-items: center; gap: 5px; color: var(--gold); font-size: 10px; font-weight: bold; background: rgba(201,168,64,0.1); padding: 2px 6px; border-radius: 4px; margin-top: 10px; }

/* 10. Global Fade Up */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.back-to-top { position: fixed; bottom: -50px; right: 20px; width: 40px; height: 40px; background: var(--gold); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; z-index: 9999; opacity: 0; box-shadow: 0 0 15px rgba(201,168,64,0.5); }
.back-to-top.visible { bottom: 20px; opacity: 1; }

/* Auth Upload Hover */
.upload-box.dragover { border-color: var(--gold); background: rgba(201,168,64,0.2); box-shadow: inset 0 0 20px rgba(201,168,64,0.3); }

/* ============================================
   11. WELCOME VIDEO MODAL
   ============================================ */

.welcome-video-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.welcome-video-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.welcome-video-inner {
  position: relative;
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: welcomeFadeIn 0.6s ease forwards;
}

@keyframes welcomeFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.welcome-video-hook {
  text-align: center;
  margin-bottom: 32px;
}

.welcome-video-hook h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.welcome-video-hook h2 span {
  color: var(--gold);
}

.welcome-video-hook p {
  color: var(--gray);
  font-size: 15px;
}

.welcome-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 64, 0.3);
  box-shadow: 0 0 60px rgba(201, 168, 64, 0.15), 0 20px 60px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  background: #0a0a0a;
}

.welcome-video-thumbnail {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.welcome-video-thumbnail.hidden-thumb {
  opacity: 0;
  pointer-events: none;
}

.welcome-video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
  border: none;
  box-shadow: 0 0 40px rgba(201, 168, 64, 0.5);
  animation: playPulse 2s ease infinite;
}

.welcome-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 60px rgba(201, 168, 64, 0.7);
}

.welcome-video-play-btn svg {
  width: 32px; height: 32px;
  fill: #000;
  margin-left: 4px;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(201, 168, 64, 0.4); }
  50% { box-shadow: 0 0 60px rgba(201, 168, 64, 0.7); }
}

.welcome-video-play-btn.hidden-thumb {
  opacity: 0;
  pointer-events: none;
}

.welcome-video-container video,
.welcome-video-container iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}

.welcome-video-close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 3;
}

.welcome-video-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .welcome-video-play-btn { width: 70px; height: 70px; }
  .welcome-video-play-btn svg { width: 24px; height: 24px; }
  .welcome-video-close { top: -48px; width: 38px; height: 38px; font-size: 20px; }
}


/* ============================================
   12. MEET THE FOUNDER SECTION
   ============================================ */

.founder-section {
  padding: 100px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,64,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.founder-photo-wrapper {
  position: relative;
}

.founder-photo-wrapper::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid rgba(201, 168, 64, 0.15);
  border-radius: 20px;
  z-index: 0;
}

.founder-photo-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: rgba(201, 168, 64, 0.08);
  border-radius: 50%;
  filter: blur(40px);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
  border-radius: 16px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(201, 168, 64, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(201, 168, 64, 0.1);
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-label {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
}

.founder-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.founder-bio {
  font-size: 17px;
  line-height: 1.8;
  color: #aaa;
}

.founder-signature {
  margin-top: 12px;
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.85;
}

.founder-signature::before {
  content: '— ';
}

@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .founder-photo-wrapper { max-width: 320px; margin: 0 auto; }
  .founder-content { align-items: center; }
  .founder-bio { font-size: 15px; }
  .founder-signature { font-size: 22px; }
}


/* ============================================
   13. MEMBER TESTIMONIALS (Before/After)
   ============================================ */

.testimonials-section {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: #111;
  border: 1px solid rgba(201, 168, 64, 0.12);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 64, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 64, 0.08);
  transform: translateY(-4px);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-member {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 64, 0.2);
}

.testimonial-photo-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 64, 0.2);
}

.testimonial-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-transformation {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-before,
.testimonial-after {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-before {
  background: rgba(255, 51, 51, 0.06);
  border-left: 3px solid #ff3333;
  color: #cc8888;
}

.testimonial-before::before {
  content: 'BEFORE';
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ff3333;
  margin-bottom: 6px;
}

.testimonial-arrow {
  display: flex;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  opacity: 0.5;
}

.testimonial-after {
  background: rgba(34, 197, 94, 0.06);
  border-left: 3px solid #22C55E;
  color: #88cc99;
}

.testimonial-after::before {
  content: 'AFTER';
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #22C55E;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card { padding: 24px; }
}


/* ============================================
   14. FLOATING STICKY CTA HEADER
   ============================================ */

.sticky-cta-header {
  position: static;
  width: 100%;
  min-height: 56px;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 24px;
  z-index: 9998;
}

.sticky-cta-header a {
  color: #000;
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.sticky-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(201, 168, 64, 0.5);
}

.sticky-support-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.sticky-support-link:hover {
  color: var(--gold);
}

.sticky-support-link svg {
  width: 16px; height: 16px;
}

/* When sticky header is visible, push navbar down */
body.sticky-header-active .navbar {
  top: 56px !important;
}

body.sticky-header-active .nav-menu {
  top: 128px;
}

@media (max-width: 768px) {
  .sticky-cta-header {
    height: 48px;
    gap: 12px;
  }
  .sticky-cta-btn {
    font-size: 12px;
    padding: 8px 18px;
  }
  .sticky-support-links {
    gap: 10px;
  }
  .sticky-support-link span {
    display: none;
  }
  body.sticky-header-active .navbar {
    top: 48px !important;
  }
  body.sticky-header-active .nav-menu {
    top: 120px;
  }
}

/* ============================================
   MEMBER TESTIMONIALS
   ============================================ */

.testimonials-section {
  padding: var(--section-padding);
  background: #0a0a0a;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(201, 168, 64, 0.12);
  border-radius: 16px;
  padding: 24px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 64, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-member {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 64, 0.3);
}

.testimonial-photo-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8B7A2E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #000;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}

/* Screenshot-based testimonial */
.testimonial-screenshot {
  margin-top: 12px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.testimonial-screenshot img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* Text-based testimonial */
.testimonial-transformation {
  margin-top: 12px;
}

.testimonial-before {
  color: #ff4444;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  background: rgba(255, 68, 68, 0.08);
  border-radius: 8px;
  border-left: 3px solid #ff4444;
}

.testimonial-arrow {
  text-align: center;
  color: var(--gold);
  font-size: 20px;
  padding: 6px 0;
}

.testimonial-after {
  color: #22C55E;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 8px;
  border-left: 3px solid #22C55E;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================
   PAST PROJECTS — BEFORE & AFTER SLIDER
   ============================================ */

.projects-section {
  padding: var(--section-padding);
  background: var(--bg);
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 32px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid rgba(201, 168, 64, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 64, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.project-info {
  padding: 20px 24px;
}

.project-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.project-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* Before / After Slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

.ba-after-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 0 50%);
  transition: none;
}

.ba-after-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: 12px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ba-label-before {
  left: 12px;
  background: rgba(255, 68, 68, 0.7);
  color: #fff;
}

.ba-label-after {
  right: 12px;
  background: rgba(34, 197, 94, 0.7);
  color: #fff;
}

/* Draggable Handle */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(201, 168, 64, 0.5);
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #000;
  box-shadow: 0 0 20px rgba(201, 168, 64, 0.6);
  pointer-events: auto;
  cursor: ew-resize;
}

.ba-handle::after {
  content: '◂ ▸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 900;
  color: #000;
  letter-spacing: 4px;
  pointer-events: none;
  z-index: 11;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ba-slider {
    aspect-ratio: 1 / 1;
  }
  .ba-handle::before {
    width: 36px;
    height: 36px;
  }
  .ba-handle::after {
    font-size: 12px;
    letter-spacing: 2px;
  }
}


/* ============================================
   15. BEFORE & AFTER — UNIFIED SECTION
   ============================================ */

.ba-section {
  padding: 120px 0;
  background: #020202;
  overflow: hidden;
  position: relative;
}
.ba-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(201,168,64,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.ba-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}
.ba-top-label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: #C9A840; margin-bottom: 16px;
  padding: 6px 18px;
  border: 1px solid rgba(201,168,64,0.3);
  border-radius: 20px;
}
.ba-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900; color: #F0F0F0;
  text-transform: uppercase;
  letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 16px;
}
.ba-gold { color: #C9A840; }
.ba-subtitle {
  font-size: 16px; color: #555;
  max-width: 480px; margin: 0 auto; line-height: 1.6;
}

/* Filter Tabs */
.ba-filters {
  display: flex; justify-content: center;
  gap: 8px; margin-bottom: 48px;
  padding: 0 24px; flex-wrap: wrap;
}
.ba-filter {
  padding: 8px 20px; border-radius: 6px;
  border: 1px solid #1a1a1a; background: transparent;
  color: #555; font-size: 13px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all 0.2s ease;
  letter-spacing: 0.5px;
}
.ba-filter:hover { border-color: rgba(201,168,64,0.3); color: #C9A840; }
.ba-filter.active {
  background: rgba(201,168,64,0.1);
  border-color: rgba(201,168,64,0.4); color: #C9A840;
}

/* Carousel Wrapper & Track */
.ba-wrapper {
  position: relative; padding: 0 64px;
}
.ba-track {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 28px 4px;
}
.ba-track::-webkit-scrollbar { display: none; }

/* Base Card */
.ba-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 300px;
  scroll-snap-align: start;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 16px; overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.ba-card:hover {
  border-color: rgba(201,168,64,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Category Badges */
.ba-badge {
  position: absolute; top: 14px; left: 14px; z-index: 10;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  backdrop-filter: blur(8px);
}
.ba-badge.looksmax {
  background: rgba(201,168,64,0.15);
  border: 1px solid rgba(201,168,64,0.3); color: #C9A840;
}
.ba-badge.porn-quitting {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25); color: #22C55E;
}
.ba-badge.member-win {
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25); color: #818CF8;
}

/* IMAGE CARD */
.ba-card-image .ba-images {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 280px; position: relative;
}
.ba-img-side { position: relative; overflow: hidden; background: #111; }
.ba-img-side img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block; transition: transform 0.5s ease;
}
.ba-card-image:hover .ba-img-side img { transform: scale(1.05); }
.ba-img-divider {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 100%;
  background: #020202; z-index: 4;
}
.ba-img-arrow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8; width: 34px; height: 34px;
  background: #C9A840; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}
.ba-img-tag {
  position: absolute; bottom: 10px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; z-index: 6;
}
.ba-img-side.before .ba-img-tag {
  left: 8px;
  background: rgba(0,0,0,0.75); color: #777; border: 1px solid #333;
}
.ba-img-side.after .ba-img-tag {
  right: 8px;
  background: rgba(201,168,64,0.2);
  color: #C9A840; border: 1px solid rgba(201,168,64,0.35);
}
.ba-img-footer {
  padding: 14px 18px; border-top: 1px solid #1a1a1a;
  display: flex; align-items: center; gap: 8px;
}
.ba-img-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #C9A840; flex-shrink: 0;
}
.ba-img-footer span { font-size: 11px; color: #444; }

/* TEXT CARD */
.ba-card-text { min-height: 340px; display: flex; flex-direction: column; }
.ba-text-inner {
  flex: 1; padding: 56px 22px 24px 22px;
  display: flex; flex-direction: column; gap: 0;
}
.ba-before-block {
  background: rgba(255,51,51,0.05);
  border: 1px solid rgba(255,51,51,0.15);
  border-radius: 10px; padding: 18px;
}
.ba-block-tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px; display: block;
}
.ba-before-block .ba-block-tag { color: rgba(255,51,51,0.7); }
.ba-before-block p { font-size: 14px; color: #666; line-height: 1.6; margin: 0; }
.ba-text-arrow {
  text-align: center; padding: 12px 0;
  font-size: 22px; color: #C9A840; opacity: 0.5;
}
.ba-after-block {
  background: rgba(201,168,64,0.05);
  border: 1px solid rgba(201,168,64,0.2);
  border-radius: 10px; padding: 18px;
}
.ba-after-block .ba-block-tag { color: rgba(201,168,64,0.8); }
.ba-after-block p {
  font-size: 14px; color: #C9A840;
  line-height: 1.6; margin: 0; font-weight: 500;
}

/* SCREENSHOT CARD */
.ba-card-screenshot .ba-shot-img {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 420px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.ba-card-screenshot:hover .ba-shot-img { transform: scale(1.02); }
.ba-shot-footer {
  padding: 14px 18px; border-top: 1px solid #1a1a1a;
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; color: #22C55E; text-transform: uppercase;
}

/* Navigation Arrows */
.ba-arrow {
  position: absolute; top: 50%; transform: translateY(-60%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #0d0d0d; border: 1px solid #1a1a1a;
  color: #F0F0F0; font-size: 26px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 20; transition: all 0.2s ease; line-height: 1;
  font-family: sans-serif;
}
.ba-arrow:hover {
  background: rgba(201,168,64,0.1);
  border-color: rgba(201,168,64,0.4); color: #C9A840;
  box-shadow: 0 0 20px rgba(201,168,64,0.15);
}
.ba-prev { left: 8px; }
.ba-next { right: 8px; }
.ba-arrow:disabled { opacity: 0.15; cursor: not-allowed; pointer-events: none; }

/* Dot Indicators */
.ba-dots {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 12px; padding: 0 24px;
}
.ba-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #1a1a1a; cursor: pointer;
  transition: all 0.3s ease;
}
.ba-dot.active { background: #C9A840; width: 24px; border-radius: 3px; }

/* Empty State */
.ba-empty {
  text-align: center; padding: 80px 24px;
  color: #333; font-size: 14px; width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ba-section { padding: 80px 0; }
  .ba-wrapper { padding: 0 16px; }
  .ba-card { flex: 0 0 85vw; min-width: 260px; }
  .ba-arrow { display: none; }
  .ba-card-image .ba-images { height: 200px; }
  .ba-card-screenshot .ba-shot-img { max-height: 320px; }
}

/* ============================================
   FREE COURSE — Ribbon, Badge & Upsell
   ============================================ */

/* Green "FREE" ribbon on landing page course cards */
.ribbon-free {
  position: absolute;
  top: 18px;
  right: -8px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 18px 6px 14px;
  letter-spacing: 2px;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  border-radius: 4px 0 0 4px;
  text-transform: uppercase;
  animation: free-pulse 2.5s ease-in-out infinite;
}

.ribbon-free::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #0f7a3e transparent transparent;
}

@keyframes free-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(34, 197, 94, 0.7); }
}

/* Small inline "FREE" badge for dashboards & course lists */
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* Green CTA button for free course enrollment */
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-green:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

/* Upsell card — shown on dashboard & player for free users */
.upsell-card {
  position: relative;
  background: linear-gradient(145deg, #0a0a0a, #111);
  border: 1px solid rgba(201, 168, 64, 0.25);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upsell-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #E8C96A, var(--gold));
}

.upsell-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 64, 0.15);
}

.upsell-card .upsell-emoji {
  font-size: 36px;
  margin-bottom: 12px;
}

.upsell-card .upsell-title {
  font-size: 18px;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 8px;
}

.upsell-card .upsell-desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
  line-height: 1.5;
}

.upsell-card .upsell-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 16px;
}

.upsell-card .upsell-price span {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

/* ============================================
   FREE COURSE STYLES
   ============================================ */

/* Free course card glow on landing page */
.course-card[style*="rgba(34,197,94"] {
  animation: free-pulse-glow 4s ease-in-out infinite;
}

@keyframes free-pulse-glow {
  0% { box-shadow: 0 0 15px rgba(34, 197, 94, 0.1); }
  50% { box-shadow: 0 0 35px rgba(34, 197, 94, 0.25); }
  100% { box-shadow: 0 0 15px rgba(34, 197, 94, 0.1); }
}

/* Free badge inline pill */
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
}

/* Free course CTA button override */
.btn-gold.course-cta[style*="#22C55E"]:hover,
.btn-gold.course-cta[style*="#16A34A"]:hover {
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4) !important;
  transform: scale(1.05);
}

/* Free ribbon animation */
.ribbon[style*="#22C55E"] {
  animation: free-ribbon-shine 3s ease-in-out infinite;
}

@keyframes free-ribbon-shine {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
  100% { filter: brightness(1); }
}

/* ============================================
   STEP 2 — MOBILE OPTIMIZATION
   ============================================ */
@media (max-width: 768px) {
  /* Sections — less padding on mobile */
  section { padding: 60px 16px !important; }

  /* Everything full width */
  .container, .wrapper, .inner {
    width: 100% !important;
    padding: 0 16px !important;
  }

  /* All side-by-side layouts become single column */
  .grid, .columns, .row, .flex-row,
  [class*="two-col"], [class*="split"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Cards full width */
  .card, [class*="card"] {
    width: 100% !important;
    min-width: unset !important;
  }

  /* Buttons easy to tap */
  button, .btn, [class*="btn"], a.btn {
    min-height: 52px !important;
    width: 100% !important;
    font-size: 16px !important;
    border-radius: 12px !important;
  }

  /* Inputs — 16px stops iPhone from zooming */
  input, textarea, select {
    font-size: 16px !important;
    min-height: 52px !important;
    width: 100% !important;
  }


  /* Hide desktop sidebar */
  [class*="sidebar"] {
    display: none !important;
  }

  /* Modals full screen on mobile */
  [class*="modal"] .card,
  [class*="modal"] > div {
    width: 95vw !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    margin: auto !important;
  }

  /* Faster animations on cheap phones */
  * {
    animation-duration: 0.4s !important;
    transition-duration: 0.2s !important;
  }
}

/* ============================================
   STEP 3 — BOTTOM NAVIGATION BAR
   ============================================ */
.bottom-nav { display: none; }

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: rgba(5,5,5,0.97);
    border-top: 1px solid #1a1a1a;
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: space-around;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .bn-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1;
    height: 100%;
    text-decoration: none;
    color: #555;
    font-size: 10px;
    gap: 3px;
    transition: color 0.2s;
  }
  .bn-item span:first-child { font-size: 20px; }
  .bn-item.active { color: #C9A840; }
  .bn-center {
    flex: 0 0 52px;
    height: 52px;
    background: #C9A840;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(201,168,64,0.5);
  }
  .bn-w {
    font-size: 20px !important;
    font-weight: 900;
    color: #000 !important;
  }
  body { padding-bottom: 72px; }
  /* Hide top navbar on mobile */
  .navbar .nav-links { display: none !important; }
}

/* ============================================
   WELCOME VIDEO MODAL
   ============================================ */
.welcome-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.welcome-video-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.welcome-video-inner {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 80px rgba(201, 168, 64, 0.15);
}

.welcome-video-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s;
}

.welcome-video-close:hover {
  color: var(--gold);
}

.welcome-video-hook {
  text-align: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.welcome-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}

.welcome-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.welcome-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 64, 0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.welcome-video-play-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  margin-left: 4px;
}

.welcome-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(201, 168, 64, 0.4);
}

@media (max-width: 768px) {
  .welcome-video-inner {
    padding: 10px;
    width: 95%;
  }
  .welcome-video-close {
    top: -45px;
    right: 5px;
    font-size: 40px;
    padding: 10px;
  }
}

/* ============================================
   MOBILE NAV BUTTONS
   ============================================ */
.mobile-nav-btns {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-nav-btns {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    width: 100%;
  }
  
  #sticky-cta-header {
    display: flex;
    padding: 6px 16px;
    font-size: 12px;
    min-height: auto;
  }
  
  .sticky-cta-btn {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  .btn-full-mobile {
    width: 100% !important;
    min-height: 56px !important;
    justify-content: center !important;
    display: flex !important;
  }
}

#sticky-cta-header {
  display: none;
}
