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