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

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

: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;
}

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

/* 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: fixed;
  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;
}

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

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

.check-gold {
  color: #000;
  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
   ============================================ */
@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: center;
  gap: 10px;
}

.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;
}
.progress-container { width: 100%; background: #222; border-radius: 10px; margin-top: 15px; height: 6px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--gold); width: 0; transition: width 1.5s ease-out; }
.enrolled-text { font-size: 11px; color: #888; margin-top: 5px; display: block; }
.bounce-icon { display: inline-block; opacity: 0; transform: scale(0); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.bounce-icon.visible { opacity: 1; transform: scale(1); }

/* 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); }
