/* Import Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* AI VIDEO MASTERY ACADEMY - CONVERSION-OPTIMIZED AI GOLD RUSH THEME */
:root {
  /* CONVERSION-OPTIMIZED GOLD SYSTEM */
  --gold-electric: #FFD700;    /* Electric highlight gold - CTA buttons, earnings */
  --gold-primary: #F7B32B;     /* Primary gold - headings, key text */
  --gold-rich: #B8860B;        /* Rich gold - accents, borders */
  --gold-light: #FDE68A;       /* Light gold - subtle highlights */
  
  /* SOPHISTICATED DARK BACKGROUNDS */
  --bg-primary: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%);
  --bg-secondary: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  --bg-card: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.9) 100%);
  --bg-card-solid: #1A1A2E;
  --bg-hero: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 30%, #16213E 70%, #0E4B99 100%);
  
  /* CONVERSION-FOCUSED TEXT COLORS */
  --text-primary: #FFFFFF;      /* Primary text - high contrast */
  --text-secondary: #E2E8F0;    /* Secondary text - readable */
  --text-muted: #94A3B8;        /* Muted text - supporting info */
  --text-accent: #F1F5F9;       /* Accent text - highlights */
  
  /* PSYCHOLOGY-DRIVEN ACCENT COLORS */
  --accent-blue: #3B82F6;       /* Trust - tech, credibility */
  --accent-blue-light: #60A5FA; /* Light trust - hover states */
  --accent-green: #10B981;      /* Success - money, results */
  --accent-green-light: #34D399;/* Light success - hover states */
  --accent-red: #EF4444;        /* Urgency - scarcity, deadlines */
  --accent-red-dark: #DC2626;   /* Dark urgency - strong emphasis */
  --accent-purple: #8B5CF6;     /* Premium - exclusivity */
  
  /* CONVERSION-OPTIMIZED BORDERS */
  --border-gold: rgba(247, 179, 43, 0.4);      /* Gold borders - premium elements */
  --border-blue: rgba(59, 130, 246, 0.3);      /* Blue borders - trust elements */
  --border-green: rgba(16, 185, 129, 0.3);     /* Green borders - success elements */
  --border-red: rgba(239, 68, 68, 0.4);        /* Red borders - urgency elements */
  --border-glass: rgba(255, 255, 255, 0.1);    /* Glass borders - subtle elements */
  
  /* PREMIUM SHADOWS FOR DEPTH */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* CONVERSION-FOCUSED GLOW EFFECTS */
  --glow-gold: 0 0 20px rgba(247, 179, 43, 0.5), 0 0 40px rgba(247, 179, 43, 0.3);
  --glow-blue: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(59, 130, 246, 0.2);
  --glow-green: 0 0 20px rgba(16, 185, 129, 0.4), 0 0 40px rgba(16, 185, 129, 0.2);
  --glow-red: 0 0 20px rgba(239, 68, 68, 0.5), 0 0 40px rgba(239, 68, 68, 0.3);
  --glow-purple: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
  
  /* GLASS MORPHISM SYSTEM */
  --glass-bg: rgba(26, 26, 46, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-backdrop: blur(12px);

  /* CONVERSION-OPTIMIZED TYPOGRAPHY */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  
  /* CONVERSION GRADIENTS */
  --gradient-gold: linear-gradient(135deg, var(--gold-electric), var(--gold-primary), var(--gold-rich));
  --gradient-success: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  --gradient-urgency: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  --gradient-premium: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Account for fixed header */
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(247, 179, 43, 0.4));
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--gold-primary);
  filter: drop-shadow(0 0 6px rgba(247, 179, 43, 0.4));
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-left: 1px solid var(--glass-border);
  transition: right 0.3s ease;
  z-index: 1000;
  padding-top: 5rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-item {
  color: var(--text-primary);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.mobile-menu-item:hover {
  color: var(--gold-primary);
  padding-left: 1rem;
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero {
  padding: 8rem 0 6rem 0;
  text-align: center;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(247, 179, 43, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-urgency);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-black);
  margin-bottom: 3rem;
  box-shadow: var(--glow-red);
  border: 2px solid var(--border-red);
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: premiumPulse 2s ease-in-out infinite alternate;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-black);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.gold-rush {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(247, 179, 43, 0.6));
  animation: subtleGlow 3s ease-in-out infinite alternate;
}

.hero-sub {
  display: block;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--accent-blue-light);
  margin-top: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.4));
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.hero-video {
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.hero .video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
}

.hero-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: var(--font-weight-bold);
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
}

.video-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-primary);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-semibold);
}

.video-caption {
  margin-top: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.hero-cta {
  max-width: 600px;
  margin: 0 auto;
}

.cta-primary {
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.9) 100%);
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  padding: 1.4rem 3rem;
  border-radius: 16px;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(247, 179, 43, 0.2);
  margin-bottom: 1rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 10px rgba(247, 179, 43, 0.3);
  letter-spacing: 0.5px;
  backdrop-filter: blur(12px);
}

.cta-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(15, 15, 35, 1) 0%, rgba(26, 26, 46, 0.95) 100%);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.4), 
    0 0 30px rgba(247, 179, 43, 0.4),
    inset 0 1px 0 rgba(247, 179, 43, 0.1);
  border-color: var(--gold-electric);
  color: var(--gold-electric);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary.large {
  font-size: 1.2rem;
  padding: 2rem 3rem;
}

.cta-subtext {
  margin-bottom: 2rem;
}

.bonus-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
}

.trust-icon {
  font-size: 1.1rem;
}

/* Modules Section */
.modules-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.modules-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(247, 179, 43, 0.06) 0%, transparent 60%);
  opacity: 0.8;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-black);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.subtitle {
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.module-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(247, 179, 43, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.module-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--glow-blue), var(--shadow-xl);
}

.module-card:hover::before {
  opacity: 1;
}

.module-card.featured {
  border: 1px solid var(--border-gold);
  background: linear-gradient(135deg, var(--glass-bg), rgba(247, 179, 43, 0.05));
  box-shadow: var(--glow-gold), var(--shadow-lg);
}

.module-card.featured::before {
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.03) 0%, rgba(255, 215, 0, 0.02) 100%);
  opacity: 1;
}

.module-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.module-title {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.module-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.module-value {
  color: var(--gold-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
}

.total-value {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
  box-shadow: var(--glow-gold), var(--shadow-xl);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.total-value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
  z-index: -1;
}

.value-text {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.crossed-out {
  text-decoration: line-through;
  color: var(--text-secondary);
}

.your-price {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.price-highlight {
  color: var(--gold-electric);
  font-size: 2rem;
  font-weight: var(--font-weight-black);
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
}

.savings {
  color: var(--accent-green);
  font-weight: var(--font-weight-bold);
  font-size: 1.1rem;
}

/* Problem Section */
.problem-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(247, 179, 43, 0.06) 0%, transparent 50%);
  opacity: 0.7;
}

.urgency-text {
  color: var(--accent-red);
  font-weight: var(--font-weight-bold);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1rem;
}

.problem-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(239, 68, 68, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.02) 0%, rgba(247, 179, 43, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--glow-red), var(--shadow-xl);
  border-color: rgba(239, 68, 68, 0.4);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-badge {
  position: absolute;
  top: -8px;
  left: 2rem;
  background: linear-gradient(135deg, var(--accent-red), #DC2626);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
  box-shadow: var(--glow-red);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.problem-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.problem-title {
  color: var(--text-primary);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.income-highlight {
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-black);
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
  animation: subtleGlow 3s ease-in-out infinite alternate;
}

.problem-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.problem-impact {
  background: rgba(229, 62, 62, 0.1);
  color: var(--accent-red);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: var(--font-weight-semibold);
  border-left: 3px solid var(--accent-red);
}

/* Video Showcase Section */
.showcase-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(247, 179, 43, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  opacity: 0.8;
}

.showcase-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.showcase-video {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.showcase-video:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-blue);
  border-color: var(--gold-primary);
}

.showcase-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.showcase-video:hover::before {
  opacity: 0.03;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.showcase-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  background-color: #1a1a2e;
}

/* Ensure video thumbnails load on mobile */
.showcase-video-element::-webkit-media-controls {
  display: none !important;
}

.showcase-video-element::-webkit-media-controls-enclosure {
  display: none !important;
}

.showcase-video:hover .showcase-video-element {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: auto;
  z-index: 2;
}

.showcase-video:hover .video-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.play-button {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000000;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(247, 179, 43, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.showcase-video:hover .play-button {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(247, 179, 43, 0.6);
}

.video-info {
  padding: 1.5rem;
}

.video-title {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.video-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.8;
}

.showcase-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.showcase-note {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: inline-block;
}

.showcase-note strong {
  color: var(--gold-primary);
}

/* Transformation Section */
.transformation-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.transformation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
  opacity: 0.8;
}

.success-text {
  color: var(--accent-green);
  font-weight: var(--font-weight-bold);
}

.gold-text {
  color: var(--gold-primary);
  font-weight: var(--font-weight-black);
}

.transformation-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: translateX(15px) translateY(-5px);
  box-shadow: var(--glow-green), var(--shadow-xl);
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-weight-black);
  flex-shrink: 0;
  box-shadow: var(--glow-green);
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: floatUp 3s ease-in-out infinite;
}

.step:nth-child(2) .step-number {
  animation-delay: 0.5s;
}

.step:nth-child(3) .step-number {
  animation-delay: 1s;
}

.step-content {
  flex: 1;
}

.step-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.75rem;
}

.step-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-result {
  background: rgba(56, 161, 105, 0.1);
  color: var(--accent-green);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: var(--font-weight-semibold);
  border-left: 3px solid var(--accent-green);
}

/* Urgency Section */
.urgency-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.urgency-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--accent-red);
  transition: transform 0.3s ease;
}

.urgency-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.urgency-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.urgency-title {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.urgency-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Objections Section */
.objections-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.objection-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.objection-question {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--accent-red);
}

.objection-answer {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Live Activity */
.live-activity {
  margin-top: 1rem;
  text-align: center;
}

.activity-text {
  color: var(--accent-red);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.spots-left {
  color: var(--gold-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
}

/* Instructor Section */
.instructor-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.instructor-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(247, 179, 43, 0.06) 0%, transparent 60%);
  opacity: 0.8;
}

.instructor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.instructor-video {
  position: relative;
  width: 100%;
}

.instructor-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  background: #000;
}

.instructor-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background-color: #000;
  display: block;
}

.video-badge-static {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
  pointer-events: none;
}

.simple-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 5;
  pointer-events: auto;
  cursor: pointer;
}

.simple-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.simple-play-button {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border: 3px solid var(--gold-electric);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 0 20px rgba(247, 179, 43, 0.5), 0 0 40px rgba(247, 179, 43, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateX(3px);
  animation: instructorPulse 2s infinite;
  font-weight: var(--font-weight-bold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.simple-play-button:hover {
  transform: translateX(3px) scale(1.1);
  box-shadow: 0 0 30px rgba(247, 179, 43, 0.7), 0 0 60px rgba(247, 179, 43, 0.4), 0 12px 35px rgba(0, 0, 0, 0.4);
  border-color: var(--gold-primary);
}

@keyframes instructorPulse {
  0%, 100% {
    transform: translateX(3px) scale(1);
    box-shadow: 0 0 20px rgba(247, 179, 43, 0.5), 0 0 40px rgba(247, 179, 43, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: translateX(3px) scale(1.05);
    box-shadow: 0 0 30px rgba(247, 179, 43, 0.7), 0 0 60px rgba(247, 179, 43, 0.4), 0 12px 35px rgba(0, 0, 0, 0.4);
  }
}

.instructor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.instructor-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.instructor-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gold-electric), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(247, 179, 43, 0.4));
}

.instructor-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.instructor-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.benefit-point:hover {
  transform: translateX(10px);
  box-shadow: var(--glow-green);
}

.benefit-icon {
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.benefit-desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Results Section */
.results-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 40% 40%, rgba(247, 179, 43, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
  opacity: 0.8;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.result-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.result-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.result-title {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.result-desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

.student-results {
  text-align: center;
}

.results-subtitle {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.results-subtext {
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.student-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.student-result {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.student-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.student-result:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--glow-gold), var(--shadow-xl);
}

.student-result:hover::before {
  opacity: 1;
}

.result-image {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: auto;
  display: block;
}

.earnings-placeholder {
  background: linear-gradient(135deg, var(--accent-green), #48BB78);
  color: white;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
}

.earnings-amount {
  font-size: 2rem;
  font-weight: var(--font-weight-black);
  margin-bottom: 0.5rem;
}

.earnings-period {
  font-size: 1rem;
  opacity: 0.9;
}

.result-metric {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.result-quote {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.result-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
}

.result-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: var(--font-weight-black);
  background: linear-gradient(135deg, var(--gold-electric), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(247, 179, 43, 0.4));
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-handle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.verified-badge {
  background: var(--accent-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-medium);
}

/* Community Screenshots Section */
.community-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
  opacity: 0.8;
}

.community-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.community-screenshot {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.community-screenshot:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--glow-blue), var(--shadow-xl);
}

.screenshot-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}

.screenshot-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.community-screenshot:hover .screenshot-image {
  transform: scale(1.05);
}

.screenshot-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-light));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: var(--glow-blue);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-caption {
  text-align: center;
}

.caption-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.caption-source {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.community-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.community-trust {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-weight-black);
  background: linear-gradient(135deg, var(--gold-electric), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(247, 179, 43, 0.4));
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.community-note {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-light);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.testimonial-text {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

.author-title {
  font-weight: var(--font-weight-normal);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Impact Section */
.impact-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(247, 179, 43, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  opacity: 0.8;
}

.impact-section .section-title {
  color: var(--text-primary);
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.impact-stat {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.impact-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.impact-stat:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--glow-gold), var(--shadow-xl);
}

.impact-stat:hover::before {
  opacity: 1;
}

.impact-stat .stat-number {
  font-size: 3.5rem;
  font-weight: var(--font-weight-black);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 15px rgba(247, 179, 43, 0.5));
  animation: subtleGlow 3s ease-in-out infinite alternate;
  line-height: 1;
}

.impact-stat .stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
  opacity: 0.9;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(247, 179, 43, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  opacity: 0.9;
}

.pricing-header {
  margin-bottom: 3rem;
}

.pricing-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: var(--font-weight-black);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pricing-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.countdown-container {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  color: var(--text-white);
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glow-red), var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-weight-black);
  color: var(--gold-primary);
}

.countdown-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.countdown-text {
  color: var(--text-white);
  opacity: 0.9;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: var(--glow-gold), var(--shadow-xl);
  border: 1px solid var(--border-gold);
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
  z-index: -1;
}

.price-container {
  margin-bottom: 2rem;
}

.old-price {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.current-price {
  font-size: 3.5rem;
  font-weight: var(--font-weight-black);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 20px rgba(247, 179, 43, 0.6));
  animation: subtleGlow 3s ease-in-out infinite alternate;
}

.price-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-features {
  text-align: left;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.feature-icon {
  color: var(--accent-green);
  font-weight: var(--font-weight-bold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* FAQ Section */
/* Floating Social Proof Notifications */
#social-proof-notifications {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  pointer-events: none;
}

.social-proof-notification {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(247, 179, 43, 0.1);
  transform: translateX(-120%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 350px;
  pointer-events: auto;
  cursor: pointer;
}

.social-proof-notification.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.social-proof-notification.hide {
  transform: translateX(-120%);
  opacity: 0;
  visibility: hidden;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 0.9rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: avatarBounce 2s infinite;
  flex-shrink: 0;
}

.notification-text {
  flex: 1;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.notification-name {
  color: var(--gold-primary);
  font-weight: var(--font-weight-semibold);
}

.notification-action {
  color: var(--accent-green);
  font-weight: var(--font-weight-medium);
}

.notification-time {
  color: var(--text-secondary);
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

@keyframes avatarBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.faq-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-light);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-secondary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--accent-red);
  color: white;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes subtleGlow {
  0% {
    filter: drop-shadow(0 0 12px rgba(247, 179, 43, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(247, 179, 43, 0.6)) drop-shadow(0 0 40px rgba(247, 179, 43, 0.3));
  }
}

@keyframes premiumPulse {
  0%, 100% {
    box-shadow: var(--glow-blue);
  }
  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 60px rgba(59, 130, 246, 0.4);
  }
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .header .container {
    padding: 1rem 1.5rem;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  html {
    scroll-padding-top: 120px; /* Larger padding for mobile header */
  }
  
  .hero {
    padding: 6rem 0 4rem 0;
  }
  
  .hero-badge {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .trust-indicators {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .trust-item {
    font-size: 0.8rem;
    text-align: center;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  /* Section Spacing */
  .modules-section,
  .showcase-section,
  .transformation-section,
  .results-section,
  .pricing-section {
    padding: 4rem 0;
  }
  
  /* Showcase Section Mobile */
  .showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .showcase-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .video-container {
    aspect-ratio: 16/9;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .video-info {
    padding: 1rem;
  }
  
  .video-title {
    font-size: 1rem;
  }
  
  .video-description {
    font-size: 0.8rem;
  }
  
  .showcase-note {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    margin: 0 1rem 2rem 1rem;
  }
  
  .problem-section {
    padding: 3rem 0;
  }
  
  /* Grid Layouts */
  .modules-grid,
  .benefits-grid,
  .results-grid,
  .testimonials-grid,
  .problem-grid,
  .urgency-grid,
  .objections-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .student-results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Card Adjustments */
  .module-card,
  .step,
  .student-result,
  .urgency-card,
  .objection-card {
    padding: 2rem;
  }
  
  .problem-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
    border-radius: 16px;
  }
  
  .problem-badge {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .problem-title {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .problem-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .income-highlight {
    font-size: 1rem;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  
  /* Transformation Steps */
  .transformation-steps {
    gap: 1.5rem;
  }
  
  /* Countdown */
  .countdown-container {
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
  }
  
  .countdown-timer {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  /* Pricing */
  .pricing-card {
    padding: 3rem 2rem;
    margin: 0 1rem;
  }
  
  .current-price {
    font-size: 3rem;
  }
  
  /* Buttons */
  .cta-primary {
    padding: 1.2rem 2rem;
    font-size: 1rem;
    border-radius: 14px;
    letter-spacing: 0.3px;
  }
  
  .cta-primary.large {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
  }
  
  /* Impact Grid */
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: none;
  }
  
  .impact-stat {
    padding: 2rem 1.5rem;
  }
  
  .impact-stat .stat-number {
    font-size: 2.5rem;
  }
  
  .impact-stat .stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.2px;
    line-height: 1.2;
    padding: 0 0.5rem;
  }
  
  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  /* Video Container */
  .video-container {
    border-radius: 12px;
  }
  
  /* Modal */
  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  /* Clean Mobile Testimonials */
  .student-result {
    padding: 1.5rem;
    text-align: center;
  }
  
  .result-metric {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-electric), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(247, 179, 43, 0.5));
    animation: subtleGlow 3s ease-in-out infinite alternate;
  }
  
  .result-quote {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  .result-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
  }
  
  .author-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-primary);
  }
  
  .author-handle {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  /* Simple Mobile Stats - Inline */
  .result-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .stat {
    text-align: center;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stat-number {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-electric), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 0 6px rgba(247, 179, 43, 0.3));
    line-height: 1.2;
    margin-bottom: 0.25rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
  }
  
  /* Mobile Instructor Section */
  .instructor-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .instructor-title {
    font-size: 2rem;
  }
  
  .instructor-subtitle {
    font-size: 1.1rem;
  }
  
  .benefit-point {
    padding: 0.75rem;
  }
  
  .benefit-point:hover {
    transform: translateY(-5px);
  }
  
  /* Mobile Community Screenshots */
  .community-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .community-screenshot {
    padding: 1rem;
  }
  
  .screenshot-badge {
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .caption-text {
    font-size: 1rem;
  }
  
  .community-trust {
    gap: 2rem;
  }
  
  .trust-number {
    font-size: 1.5rem;
  }
  
  /* Social Proof Notifications Mobile */
  #social-proof-notifications {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .social-proof-notification {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0.75rem 1rem;
  }

  .notification-avatar {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .notification-text {
    font-size: 0.8rem;
  }

  .notification-time {
    font-size: 0.7rem;
  }

  /* Maintain Premium Feel */
  .hero::before,
  .modules-section::before,
  .problem-section::before,
  .transformation-section::before,
  .results-section::before,
  .pricing-section::before {
    opacity: 0.6;
  }
}

/* CONTACT PAGE STYLES */

/* Contact Hero Section */
.contact-hero {
  padding: 8rem 0 4rem;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(247, 179, 43, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  opacity: 0.8;
}

.contact-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-black);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(247, 179, 43, 0.3));
}

.contact-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(247, 179, 43, 0.06) 0%, transparent 60%);
  opacity: 0.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-blue);
  border-color: var(--gold-primary);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.contact-card:hover::before {
  opacity: 0.03;
}

.main-contact {
  border: 2px solid var(--gold-primary);
  box-shadow: var(--glow-gold);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card-title {
  font-size: 1.5rem;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-email {
  margin-bottom: 1.5rem;
}

.email-link {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gold-primary);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Only break email on small screens */
@media (max-width: 1200px) {
  .email-link {
    white-space: normal;
    word-break: break-all;
    line-height: 1.3;
  }
}

.email-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
  background: var(--gold-primary);
  -webkit-text-fill-color: #000000;
  color: #000000;
}

.response-time {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.response-badge {
  background: var(--gradient-success);
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  align-self: flex-start;
}

.response-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.support-list {
  list-style: none;
  padding: 0;
}

.support-list li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.support-list li:before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.support-list li:last-child {
  border-bottom: none;
}

/* Contact FAQ Section */
.contact-faq-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-blue);
}

.faq-question {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-semibold);
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 5rem 0;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(247, 179, 43, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  opacity: 0.8;
}

.contact-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-light);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-bold);
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

/* Contact Page Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-hero {
    padding: 6rem 0 3rem;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-icon {
    font-size: 2.5rem;
  }
  
  .contact-card-title {
    font-size: 1.3rem;
  }
  
  .email-link {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
    word-break: break-all;
    line-height: 1.3;
  }
  
  .contact-faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* LEGAL PAGES STYLES */

/* Legal Hero Section */
.legal-hero {
  padding: 8rem 0 4rem;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(247, 179, 43, 0.08) 0%, transparent 50%);
  opacity: 0.8;
}

.legal-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.legal-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-black);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-primary);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(247, 179, 43, 0.3));
}

.legal-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

/* Legal Content Section */
.legal-content {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-primary);
  line-height: 1.8;
}

.legal-text h2 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-bold);
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  font-size: 1.2rem;
  margin: 2rem 0 1rem 0;
}

.legal-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.legal-text ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-text li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.legal-text strong {
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
}

.legal-notice {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
  position: relative;
  box-shadow: var(--glow-gold);
}

.legal-notice h3 {
  color: var(--gold-primary) !important;
  margin-top: 0 !important;
  font-size: 1.3rem;
  margin-bottom: 1rem !important;
}

.legal-notice p {
  color: var(--text-primary) !important;
  margin-bottom: 0;
  font-weight: var(--font-weight-medium);
}

/* Legal Pages Mobile Responsiveness */
@media (max-width: 768px) {
  .legal-hero {
    padding: 6rem 0 3rem;
  }
  
  .legal-title {
    font-size: 2.5rem;
  }
  
  .legal-content {
    padding: 4rem 0;
  }
  
  .legal-text {
    padding: 0 1rem;
  }
  
  .legal-text h2 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
  }
  
  .legal-text ul {
    padding-left: 1.5rem;
  }
  
  .legal-notice {
    padding: 1.5rem;
    margin: 2rem 0;
  }
}