/* ============================================
   CSS Variables & Theme System
   ============================================ */
:root {
  /* Dark Theme - Premium */
  --bg-dark: #0a0a0f;
  --bg-card: #141420;
  --bg-card-light: #1a1a28;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #6b7280;
  --accent-cyan: #06b6d4;
  --accent-teal: #14b8a6;
  --accent-yellow: #fbbf24;
  --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #06b6d4 100%);
  --accent-gradient-alt: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
  --border-color: rgba(255,255,255,0.08);
  --glass-bg: rgba(20,20,32,0.4);
  --glass-bg-light: rgba(26,26,40,0.3);
  --glass-border: rgba(255,255,255,0.1);
  --shadow-premium: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  --shadow-glow: 0 0 40px rgba(6,182,212,0.4);
  --shadow-glass: 0 8px 32px rgba(0,0,0,0.4);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  
  /* Spacing - Mobile First */
  --spacing-xs: clamp(0.5rem, 1.5vw, 0.75rem);
  --spacing-sm: clamp(0.75rem, 2vw, 1rem);
  --spacing-md: clamp(1rem, 3vw, 1.5rem);
  --spacing-lg: clamp(1.5rem, 4vw, 2.5rem);
  --spacing-xl: clamp(2rem, 5vw, 4rem);
  --spacing-xxl: clamp(3rem, 8vw, 6rem);
}

/* Light Theme */
[data-theme="light"] {
  --bg-dark: #f0f4f8;
  --bg-card: rgba(255,255,255,0.9);
  --bg-card-light: rgba(255,255,255,0.7);
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --accent-cyan: #0891b2;
  --accent-teal: #0d9488;
  --accent-yellow: #f59e0b;
  --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #0891b2 100%);
  --accent-gradient-alt: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
  --border-color: rgba(0,0,0,0.1);
  --glass-bg: rgba(255,255,255,0.85);
  --glass-bg-light: rgba(255,255,255,0.75);
  --glass-border: rgba(0,0,0,0.15);
  --shadow-premium: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
  --shadow-glow: 0 0 40px rgba(8,145,178,0.15);
  --shadow-glass: 0 8px 32px rgba(0,0,0,0.08);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ============================================
   Accessibility - Skip Link
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-cyan);
  color: var(--bg-dark);
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  font-weight: 700;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--accent-cyan);
  outline-offset: 2px;
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: clamp(1.25rem, 4vw, 2rem);
  right: clamp(1.25rem, 4vw, 2rem);
  width: clamp(48px, 12vw, 56px);
  height: clamp(48px, 12vw, 56px);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
  color: var(--text-primary);
  min-width: 44px;
  min-height: 44px;
  padding: 0;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover,
.scroll-to-top:focus {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-glow), var(--shadow-glass);
  background: var(--glass-bg-light);
  border-color: var(--accent-cyan);
  outline: none;
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(1.02);
}

.scroll-to-top:focus-visible {
  outline: 3px solid var(--accent-cyan);
  outline-offset: 3px;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover svg,
.scroll-to-top:focus svg {
  transform: translateY(-2px);
}

/* ============================================
   Theme Toggle
   ============================================ */
.theme-toggle {
  position: fixed;
  top: clamp(1.25rem, 4vw, 1.875rem);
  right: clamp(1.25rem, 4vw, 1.875rem);
  z-index: 1000;
  width: clamp(48px, 12vw, 56px);
  height: clamp(48px, 12vw, 56px);
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
  min-width: 44px;
  min-height: 44px;
  padding: 0;
}

.theme-toggle:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-glow), var(--shadow-glass);
  background: var(--glass-bg-light);
}

.theme-toggle:focus-visible {
  outline: 3px solid var(--accent-cyan);
  outline-offset: 3px;
}

.toggle-icon {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.toggle-icon.sun {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

[data-theme="light"] .toggle-icon.moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

[data-theme="light"] .toggle-icon.sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  width: 100%;
  max-width: 100%;
}

/* Large screens - better max-width */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    padding-inline: clamp(2rem, 6vw, 4rem);
  }
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  width: 100%;
  max-width: 100%;
}

/* Large screens - better max-width */
@media (min-width: 1920px) {
  .container-wide {
    max-width: 1800px;
    padding-inline: clamp(2rem, 6vw, 4rem);
  }
}

.section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

/* Mobile section padding */
@media (max-width: 768px) {
  .section {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
  }
}

/* ============================================
   Typography
   ============================================ */
.h1 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease-out;
  transition: color 0.3s ease;
}

[data-theme="light"] .h1 {
  text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.h2 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: color 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

[data-theme="light"] .h2 {
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

.h3 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: color 0.3s ease;
}

[data-theme="light"] .h3 {
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub {
  color: var(--text-secondary);
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  transition: color 0.3s ease;
}

/* Ensure text is visible on glass backgrounds */
[data-theme="light"] .sub {
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
  color: var(--text-secondary);
}

/* Dark theme text shadow for better visibility */
:root .sub {
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: var(--spacing-md);
}

.mt-3 {
  margin-top: var(--spacing-lg);
}

.highlight-text {
  color: var(--accent-cyan);
  font-style: italic;
  margin: var(--spacing-md) 0;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(6,182,212,0.3);
  animation: pulseGlow 2s ease-in-out infinite;
}

[data-theme="light"] .highlight-text {
  color: var(--accent-cyan);
  text-shadow: 0 1px 2px rgba(8,145,178,0.2);
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: 44px;
  white-space: nowrap;
}

/* Mobile button adjustments */
@media (max-width: 600px) {
  .btn {
    width: 100%;
    max-width: 100%;
    padding: 12px 24px;
    justify-content: center;
  }
  
  /* Ensure buttons don't wrap text awkwardly */
  .btn span {
    white-space: normal;
    text-align: center;
  }
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--accent-gradient);
  background-size: 200% 200%;
  color: #0a0a0f;
  box-shadow: 
    0 10px 30px rgba(251,191,36,0.3),
    0 0 0 0 rgba(6,182,212,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(251,191,36,0.4),
    0 0 30px rgba(6,182,212,0.5),
    inset 0 1px 0 rgba(255,255,255,0.4);
  animation: buttonPulse 2s ease-in-out infinite;
}

/* Glow effect for form submit button */
.btn-glow {
  box-shadow: 
    0 10px 30px rgba(251,191,36,0.3),
    0 0 20px rgba(6,182,212,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
  animation: buttonGlow 2s ease-in-out infinite;
}

.btn-glow:hover {
  box-shadow: 
    0 20px 50px rgba(251,191,36,0.5),
    0 0 40px rgba(6,182,212,0.6),
    inset 0 1px 0 rgba(255,255,255,0.4);
  animation: buttonGlow 1.5s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 
      0 10px 30px rgba(251,191,36,0.3),
      0 0 20px rgba(6,182,212,0.4),
      inset 0 1px 0 rgba(255,255,255,0.3);
  }
  50% {
    box-shadow: 
      0 15px 40px rgba(251,191,36,0.4),
      0 0 30px rgba(6,182,212,0.5),
      inset 0 1px 0 rgba(255,255,255,0.4);
  }
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 
      0 20px 50px rgba(251,191,36,0.4),
      0 0 30px rgba(6,182,212,0.5),
      inset 0 1px 0 rgba(255,255,255,0.4);
  }
  50% {
    box-shadow: 
      0 20px 50px rgba(251,191,36,0.5),
      0 0 40px rgba(6,182,212,0.6),
      inset 0 1px 0 rgba(255,255,255,0.5);
  }
}

.btn-ghost {
  border: 2px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--text-primary);
  box-shadow: var(--shadow-glass);
}

.btn-ghost:hover {
  border-color: var(--accent-cyan);
  background: var(--glass-bg-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow), var(--shadow-glass);
}

.btn:focus-visible {
  outline: 3px solid var(--accent-cyan);
  outline-offset: 3px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

/* Mobile hero adjustments */
@media (max-width: 600px) {
  .hero {
    min-height: 90vh;
    min-height: 90dvh;
  }
  
  .hero-content {
    text-align: center;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(6,182,212,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(20,184,166,0.1) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Brighter image to show frustrated trader more clearly */
  filter: brightness(0.75) saturate(1.2) contrast(1.15);
  transition: filter 0.4s ease;
}

/* Mobile hero image optimization */
@media (max-width: 768px) {
  .hero-bg img {
    object-fit: cover;
    object-position: center;
  }
}

[data-theme="light"] .hero-bg img {
  filter: brightness(0.85) saturate(1.2) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Reduced overlay opacity to show more of the frustrated trader */
  background:
    radial-gradient(circle at 20% 50%, rgba(6,182,212,0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(20,184,166,0.05) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0.5) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

/* Enhanced overlay for mobile text readability */
@media (max-width: 768px) {
  .hero-overlay {
    background:
      radial-gradient(circle at 20% 50%, rgba(6,182,212,0.08) 0%, transparent 60%),
      radial-gradient(circle at 80% 50%, rgba(20,184,166,0.08) 0%, transparent 60%),
      linear-gradient(to bottom, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.6) 100%);
  }
}

[data-theme="light"] .hero-overlay {
  background: 
    radial-gradient(circle at 20% 50%, rgba(8,145,178,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(13,148,136,0.06) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: var(--spacing-md) 0;
}

.hero-card {
  /* Enhanced liquid glass effect - more transparent */
  background: rgba(20, 20, 32, 0.35);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: clamp(0.5rem, 3vw, 1rem);
  animation: fadeInScale 1s ease-out;
}

/* Light theme hero card */
[data-theme="light"] .hero-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Liquid glass shine effect */
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-card:hover::before {
  left: 100%;
}

/* Ensure content is above the shine effect */
.hero-card > * {
  position: relative;
  z-index: 2;
}

.hero-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.chip {
  font-size: clamp(0.625rem, 2vw, 0.75rem);
  padding: clamp(0.3rem, 1.5vw, 0.4rem) clamp(0.7rem, 2.5vw, 0.9rem);
  border-radius: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: var(--shadow-glass);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}

.chip:nth-child(1) { animation-delay: 0.1s; }
.chip:nth-child(2) { animation-delay: 0.2s; }
.chip:nth-child(3) { animation-delay: 0.3s; }

.chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), var(--shadow-glass);
  border-color: var(--accent-cyan);
}

[data-theme="light"] .chip {
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
  color: var(--text-primary);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

[data-theme="light"] .hero-subtitle {
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-card {
    margin: 0.5rem;
    padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
  }
  
  .hero-title-wrapper {
    text-align: center;
  }
  
  .hero-subtitle {
    text-align: center;
  }
}

/* ============================================
   Video Section
   ============================================ */
.video-section {
  background: var(--glass-bg);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.video-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: clamp(400px, 50vh, 600px);
}

@media (max-width: 900px) {
  .video-section-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .video-display {
    order: -1;
    margin-bottom: 1rem;
  }
}

.video-content {
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-right: 1px solid var(--glass-border);
  animation: fadeInLeft 0.8s ease-out;
}

[data-theme="light"] .video-content {
  background: rgba(255,255,255,0.9);
  border-right: 1px solid rgba(0,0,0,0.1);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .video-content {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
    text-align: center;
  }
  
  .video-content h2 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .video-content {
    padding: var(--spacing-md) var(--spacing-sm);
  }
}

.video-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
  display: grid;
  gap: var(--spacing-md);
}

.video-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--spacing-sm);
  align-items: flex-start;
  animation: fadeInUp 0.6s ease-out both;
  transition: transform 0.3s ease;
}

.video-list li:nth-child(1) { animation-delay: 0.1s; }
.video-list li:nth-child(2) { animation-delay: 0.2s; }
.video-list li:nth-child(3) { animation-delay: 0.3s; }
.video-list li:nth-child(4) { animation-delay: 0.4s; }

.video-list li:hover {
  transform: translateX(5px);
}

.video-list li .sub {
  color: var(--text-primary);
  font-weight: 500;
}

[data-theme="light"] .video-list li .sub {
  color: var(--text-primary);
}

.bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  margin-top: 0.5rem;
  box-shadow: 0 0 20px rgba(6,182,212,0.5);
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.video-list li:hover .bullet {
  transform: scale(1.3);
  box-shadow: 0 0 30px rgba(6,182,212,0.8);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(6,182,212,0.5); }
  50% { box-shadow: 0 0 30px rgba(6,182,212,0.8); }
}

.divider {
  height: 2px;
  background: var(--accent-gradient-alt);
  margin: var(--spacing-md) 0;
  border-radius: 2px;
}

.video-display {
  position: relative;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 50vh, 600px);
  aspect-ratio: 16 / 9;
}

@media (max-width: 900px) {
  .video-container {
    min-height: auto;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  
  .video-container video {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.video-container video.active {
  opacity: 1;
  z-index: 2;
}

/* Video Hero - Single video */
#videoHero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 2;
}

/* Mobile video adjustments */
@media (max-width: 900px) {
  .video-container video,
  #videoHero {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

/* ============================================
   How It Works Section - Creative Design
   ============================================ */
.how-it-works-section {
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(6,182,212,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(20,184,166,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-header {
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 599px) {
  .section-header {
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }
  
  .section-header .h2 {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    line-height: 1.3;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }
  
  .section-header .sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    padding: 0 clamp(0.5rem, 2vw, 1rem);
  }
}

.section-icon {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: var(--spacing-sm);
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.steps-container {
  position: relative;
  z-index: 1;
  margin: var(--spacing-xl) 0;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 599px) {
  .steps-container {
    margin: clamp(2rem, 5vw, 3rem) 0;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Large screens - 3 columns with better spacing */
@media (min-width: 1200px) {
  .steps-grid {
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 1400px;
  }
}

/* Extra large screens - better utilization */
@media (min-width: 1920px) {
  .steps-grid {
    max-width: 1600px;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  
  .step-card {
    min-height: 360px;
    padding: clamp(2.5rem, 6vw, 3.5rem) clamp(2rem, 5vw, 3rem);
  }
}

/* Medium screens - 3 columns with smaller gap */
@media (max-width: 1199px) and (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
  }
  
  .step-card {
    padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
    min-height: 300px;
  }
  
  .step-content .h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  }
  
  .step-content .sub {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
}

/* Tablet - 2 columns with better spacing */
@media (max-width: 767px) and (min-width: 600px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 3vw, 1.75rem);
  }
  
  .step-card {
    min-height: auto;
    padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 3.5vw, 2rem);
  }
  
  .step-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 550px;
    margin: 0 auto;
  }
  
  .step-number {
    width: clamp(55px, 10vw, 70px);
    height: clamp(55px, 10vw, 70px);
    font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  }
  
  .step-content .h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }
  
  .step-content .sub {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  }
}

/* Mobile - 1 column with improved spacing */
@media (max-width: 599px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-top: var(--spacing-md);
  }
  
  .step-connector {
    display: none;
  }
  
  .step-card {
    min-height: auto;
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 0;
  }
  
  .step-icon-wrapper {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
  
  .step-number {
    width: clamp(50px, 12vw, 65px);
    height: clamp(50px, 12vw, 65px);
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }
  
  .step-icon {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }
  
  .step-content .h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    line-height: 1.4;
  }
  
  .step-content .sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
  
  .step-badge {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    padding: clamp(0.4rem, 1.5vw, 0.5rem) clamp(0.75rem, 2.5vw, 1rem);
    margin-top: auto;
    align-self: center;
  }
  
  .badge-icon {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
  }
}

.step-card {
  background: var(--glass-bg);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
  animation: fadeInUp 0.8s ease-out both;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  width: 100%;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.1),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.step-card:hover::before {
  left: 100%;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }

[data-theme="light"] .step-card {
  background: rgba(255,255,255,0.95);
  border: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.step-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow), var(--shadow-premium);
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
  .step-card:hover {
    transform: none;
  }
  
  .step-card:hover .step-number {
    transform: none;
  }
  
  .step-card:hover .step-badge {
    transform: none;
  }
  
  .step-card:hover .step-connector {
    transform: translateY(-50%);
  }
}

.step-icon-wrapper {
  position: relative;
  margin-bottom: var(--spacing-md);
  z-index: 2;
}

.step-number {
  width: clamp(60px, 15vw, 80px);
  height: clamp(60px, 15vw, 80px);
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  box-shadow: 0 10px 40px rgba(251,191,36,0.4);
  animation: float 3s ease-in-out infinite;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.step-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.5rem, 4vw, 2rem);
  opacity: 0.3;
  z-index: 1;
}

.step-card:hover .step-number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 50px rgba(251,191,36,0.6);
  animation: float 2s ease-in-out infinite;
}

.step-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.step-content .h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
  font-size: clamp(1.25rem, 3.5vw, 1.6rem);
}

.step-content .sub {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  flex: 1;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: auto;
  transition: all 0.3s ease;
  white-space: nowrap;
  justify-self: center;
}

.step-badge.highlight {
  background: rgba(6,182,212,0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.step-card:hover .step-badge {
  transform: scale(1.05);
  box-shadow: var(--shadow-glass);
}

.badge-icon {
  font-size: 1rem;
}

.step-connector {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-cyan);
  opacity: 0.6;
  z-index: 1;
  transition: all 0.3s ease;
}

.step-card:hover .step-connector {
  opacity: 1;
  transform: translateY(-50%) translateX(5px);
}

.step-card:last-child .step-connector {
  display: none;
}

/* Hide connectors on smaller screens */
@media (max-width: 1024px) {
  .step-connector {
    display: none;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* CTA Wrapper */
.cta-wrapper {
  text-align: center;
  margin-top: var(--spacing-xxl);
  position: relative;
  z-index: 1;
}

@media (max-width: 599px) {
  .cta-wrapper {
    margin-top: clamp(2.5rem, 6vw, 3.5rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
  }
  
  .cta-subtext {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    flex-direction: column;
    line-height: 1.6;
  }
  
  .cta-subtext::before {
    display: none;
  }
}

.btn-large {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  font-size: clamp(1rem, 3vw, 1.15rem);
  min-height: 56px;
}

.cta-subtext {
  margin-top: var(--spacing-md);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.cta-subtext::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(6,182,212,0.5);
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   Benefits Grid
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

/* Desktop: 2x2 grid for 4 cards */
@media (min-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.benefit-card {
  background: var(--glass-bg);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
  display: flex;
  flex-direction: column;
  min-height: clamp(300px, 50vh, 400px);
  animation: fadeInUp 0.8s ease-out both;
}

[data-theme="light"] .benefit-card {
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(0,0,0,0.1);
}

.benefit-card .benefit-title,
.benefit-card .benefit-description {
  color: var(--text-primary);
}

[data-theme="light"] .benefit-card .benefit-title,
[data-theme="light"] .benefit-card .benefit-description {
  color: var(--text-primary);
}

@media (max-width: 480px) {
  .benefit-card {
    min-height: auto;
  }
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow), var(--shadow-premium);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: clamp(60px, 15vw, 80px);
  height: clamp(60px, 15vw, 80px);
  border-radius: var(--radius-md);
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 10px 30px rgba(251,191,36,0.3);
  position: relative;
  z-index: 1;
  animation: iconFloat 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(251,191,36,0.5);
  animation: iconFloat 1.5s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.benefit-title {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.benefit-description {
  color: var(--text-secondary);
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--spacing-md);
}

.benefit-highlight {
  background: var(--glass-bg-light);
  border-left: 3px solid var(--accent-cyan);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.benefit-highlight-icon {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--accent-cyan);
}

.benefit-highlight-text {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: var(--text-secondary);
  font-weight: 600;
}

.benefit-highlight-text strong {
  color: var(--accent-cyan);
}

/* ============================================
   Testimonials - Dual Direction Marquee
   ============================================ */
.reviews-container {
  margin-top: var(--spacing-lg);
  overflow: hidden;
  position: relative;
}

.marquee-row {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  width: fit-content;
  will-change: transform;
}

/* Top row - moving left to right */
.marquee-left {
  animation: scrollLeft 45s linear infinite;
}

/* Bottom row - moving right to left */
.marquee-right {
  animation: scrollRight 50s linear infinite;
  margin-top: var(--spacing-md);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Review Card - Glass Blog Style */
.review-card {
  min-width: 320px;
  max-width: 380px;
  background: var(--glass-bg);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-glass);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out both;
}

[data-theme="light"] .review-card {
  background: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.1),
    transparent
  );
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow), var(--shadow-premium);
  border-color: var(--accent-cyan);
}

.review-card:hover::before {
  left: 100%;
}

/* Review Header */
.review-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(251,191,36,0.3);
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.review-info {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

[data-theme="light"] .review-name {
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.review-location {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: var(--text-secondary);
  font-weight: 500;
}

/* Review Stars */
.review-stars {
  color: #fbbf24;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(251,191,36,0.3);
}

/* Review Text */
.review-text {
  color: var(--text-primary);
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  font-style: italic;
}

[data-theme="light"] .review-text {
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

/* Review Date */
.review-date {
  font-size: clamp(0.7rem, 1.8vw, 0.8rem);
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  z-index: 2;
  text-align: right;
  margin-top: auto;
}

/* Pause animation on hover */
.reviews-container:hover .marquee-left,
.reviews-container:hover .marquee-right {
  animation-play-state: paused;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .review-card {
    min-width: 280px;
    max-width: 320px;
    padding: clamp(1.25rem, 4vw, 1.5rem);
  }
  
  .review-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
  
  .reviews-container {
    overflow-x: hidden;
  }
  
  .marquee-left,
  .marquee-right {
    gap: var(--spacing-sm);
  }
}

/* Smooth scrolling for better performance */
.marquee-row {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .faq-list details {
    margin-bottom: 12px;
  }
  
  .cta-card {
    width: 100%;
    margin-top: var(--spacing-md);
  }
  
  .cta-card .btn {
    width: 100%;
    font-size: clamp(1rem, 3vw, 1.1rem);
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

details {
  background: var(--glass-bg);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 3.5vw, 1.5rem);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
  animation: fadeInUp 0.6s ease-out both;
}

[data-theme="light"] details {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.1);
}

details summary,
details p {
  color: var(--text-primary);
}

[data-theme="light"] details summary,
[data-theme="light"] details p {
  color: var(--text-primary);
}

details:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow), var(--shadow-glass);
}

details:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow), var(--shadow-glass);
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  list-style: none;
  padding: 0.25rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

summary:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 4px;
  border-radius: 4px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "＋";
  float: right;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
  margin-left: auto;
}

details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.cta-card {
  margin-top: 0;
}

.urgency-box {
  background: var(--glass-bg-light);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  margin: var(--spacing-md) 0;
  border: 1px solid var(--glass-border);
  animation: urgencyPulse 2s ease-in-out infinite;
}

[data-theme="light"] .urgency-box {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.1);
}

.urgency-box p {
  margin: 0;
  font-weight: 600;
  color: var(--accent-cyan);
  text-shadow: 0 1px 2px rgba(6,182,212,0.3);
}

[data-theme="light"] .urgency-box p {
  color: var(--accent-cyan);
  text-shadow: 0 1px 2px rgba(8,145,178,0.2);
}

@keyframes urgencyPulse {
  0%, 100% {
    border-color: var(--glass-border);
  }
  50% {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(6,182,212,0.2);
  }
}

/* ============================================
   Countdown
   ============================================ */
.countbar {
  background: var(--glass-bg);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.countwrap {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  flex-wrap: wrap;
}

.countdown-text {
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-right: clamp(0.5rem, 2vw, 1rem);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

[data-theme="light"] .countdown-text {
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: clamp(50px, 12vw, 70px);
  padding: clamp(0.5rem, 1.5vw, 0.75rem);
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

.countdown-number {
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--accent-cyan);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
  animation: countdownPulse 1s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.countdown-item:hover .countdown-number {
  transform: scale(1.1);
}

[data-theme="light"] .countdown-number {
  color: var(--accent-cyan);
  text-shadow: 0 0 15px rgba(8, 145, 178, 0.4);
}

@keyframes countdownPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.countdown-label {
  font-size: clamp(0.5rem, 1.5vw, 0.75rem);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  line-height: 1;
}

/* Mobile-optimized countdown layout - HORIZONTAL on phone only */
@media (max-width: 768px) {
  .countwrap {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: clamp(0.4rem, 2vw, 0.75rem);
    padding: clamp(0.75rem, 3vw, 1rem);
  }
  
  .countdown-text {
    flex: 0 0 auto;
    text-align: left;
    margin-right: clamp(0.5rem, 2vw, 1rem);
    margin-bottom: 0;
    font-size: clamp(0.7rem, 2.5vw, 0.875rem);
    white-space: nowrap;
  }
  
  .countdown-item {
    flex: 0 0 auto;
    min-width: clamp(50px, 12vw, 65px);
    max-width: clamp(50px, 12vw, 65px);
    padding: clamp(0.4rem, 1.5vw, 0.6rem);
    gap: 0.15rem;
  }
  
  .countdown-number {
    font-size: clamp(1.1rem, 6vw, 1.5rem);
  }
  
  .countdown-label {
    font-size: clamp(0.45rem, 1.8vw, 0.6rem);
    letter-spacing: 0.3px;
  }
  
  .countwrap .btn {
    flex: 0 0 auto;
    margin-top: 0;
    margin-left: clamp(0.5rem, 2vw, 1rem);
    padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    white-space: nowrap;
  }
}

/* Extra small mobile devices - HORIZONTAL with scroll */
@media (max-width: 480px) {
  .countwrap {
    gap: clamp(0.3rem, 1.5vw, 0.5rem);
    padding: clamp(0.5rem, 2vw, 0.75rem);
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  
  .countwrap::-webkit-scrollbar {
    display: none;
  }
  
  .countdown-text {
    font-size: clamp(0.65rem, 2.2vw, 0.8rem);
    line-height: 1.3;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: clamp(0.5rem, 2vw, 0.75rem);
  }
  
  .countdown-item {
    padding: clamp(0.35rem, 1.2vw, 0.5rem);
    min-width: clamp(45px, 11vw, 60px);
    max-width: clamp(45px, 11vw, 60px);
    flex-shrink: 0;
  }
  
  .countdown-number {
    font-size: clamp(1rem, 5.5vw, 1.3rem);
  }
  
  .countdown-label {
    font-size: clamp(0.4rem, 1.5vw, 0.55rem);
  }
  
  .countwrap .btn {
    flex-shrink: 0;
    padding: clamp(0.5rem, 1.8vw, 0.65rem) clamp(0.875rem, 2.5vw, 1.25rem);
    font-size: clamp(0.7rem, 2.2vw, 0.8rem);
    margin-left: clamp(0.5rem, 2vw, 0.75rem);
  }
}

/* ============================================
   Modal
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.4s ease;
  padding: var(--spacing-md);
}

.modal-backdrop.show {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  width: min(700px, 94vw);
  max-height: 90vh;
  max-height: 90dvh;
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: var(--spacing-md);
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
  .modal {
    width: 94vw;
    max-height: 90vh;
    max-height: 90dvh;
    margin: 3vw;
    border-radius: var(--radius-md);
  }
  
  .modal-header {
    padding: 0.8rem;
  }
  
  .modal-body {
    padding: 0.8rem;
  }
  
  .modal-close {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 1.25rem;
    padding: 0;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--glass-border);
  background: var(--glass-bg-light);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
}

.modal-close:focus-visible {
  outline: 3px solid var(--accent-cyan);
  outline-offset: 2px;
}

.modal-close:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.modal-body {
  padding: var(--spacing-md);
  overflow-y: auto;
  flex: 1;
  position: relative;
}

/* Ensure only one step is visible at a time */
.summary-container,
.upsell-container {
  display: none;
}

.quiz-container {
  display: block;
}

.quiz-container.active,
.summary-container.active,
.upsell-container.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.modal-footer {
  padding: var(--spacing-md);
  border-top: 1px solid var(--glass-border);
  background: var(--glass-bg-light);
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-sm);
}

/* ============================================
   Quiz Styles
   ============================================ */
.quiz-container {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  animation: fadeIn 0.4s ease-out;
}

/* Mobile quiz container */
@media (max-width: 768px) {
  .quiz-container {
    width: 100%;
    padding: 0;
  }
  
  .quiz-question {
    padding: 0;
  }
  
  .quiz-options {
    gap: 0.75rem;
  }
  
  .quiz-option {
    padding: 1rem 1.25rem;
    min-height: 52px;
  }
}

/* Summary Container */
.summary-container {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  animation: slideUp 0.5s ease-out;
}

.summary-content {
  text-align: center;
  padding: var(--spacing-md) 0;
}

.summary-text {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

[data-theme="light"] .summary-text {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.1);
}

/* Form Container */
.form-container {
  animation: fadeIn 0.5s ease-out 0.2s both;
  margin-top: var(--spacing-lg);
}

.form-container.active {
  display: block !important;
  animation: slideUp 0.5s ease-out;
}

.report-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-label {
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: var(--text-primary);
  text-align: left;
}

.form-input {
  width: 100%;
  padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1rem, 3vw, 1.25rem);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: var(--text-primary);
  transition: all 0.3s ease;
  font-family: inherit;
  min-height: 48px;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.1), var(--shadow-glow);
  background: var(--glass-bg-light);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

[data-theme="light"] .form-input {
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(0,0,0,0.1);
}

[data-theme="light"] .form-input:focus {
  background: rgba(255,255,255,0.95);
  border-color: var(--accent-cyan);
}

/* Loading Spinner */
.form-loading {
  text-align: center;
  padding: var(--spacing-lg) 0;
  animation: fadeIn 0.3s ease-out;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--glass-border);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Upsell Container */
.upsell-container {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  animation: slideUp 0.6s ease-out;
}

.confirmation-message {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  animation: fadeIn 0.5s ease-out;
}

.confirmation-icon {
  font-size: clamp(3rem, 8vw, 4rem);
  margin-bottom: var(--spacing-md);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.upsell-content {
  background: var(--glass-bg);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  animation: fadeIn 0.6s ease-out 0.2s both;
  max-width: 600px;
  margin: 0 auto;
}

[data-theme="light"] .upsell-content {
  background: rgba(255,255,255,0.95);
  border: 2px solid rgba(0,0,0,0.1);
}

.upsell-header {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--glass-border);
}

.upsell-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--accent-cyan);
  font-weight: 600;
  margin-top: var(--spacing-sm);
  line-height: 1.4;
}

.upsell-description {
  margin-bottom: var(--spacing-xl);
}

.upsell-description .sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.upsell-explanation {
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-left: 4px solid var(--accent-cyan);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

[data-theme="light"] .upsell-explanation {
  background: rgba(255,255,255,0.8);
  border-left: 4px solid var(--accent-cyan);
}

.upsell-quote {
  font-size: clamp(1.05rem, 2.2vw, 1.15rem);
  line-height: 1.7;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.upsell-reason {
  font-size: clamp(1rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.price-highlight {
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 1.4rem;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
  display: inline-block;
  margin: 0 0.2rem;
}

[data-theme="light"] .price-highlight {
  text-shadow: 0 0 15px rgba(8, 145, 178, 0.4);
}

.upsell-cta {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--glass-border);
}

.btn-upsell {
  width: 100%;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.5rem, 4vw, 2rem);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.price-in-button {
  color: var(--accent-yellow);
  font-weight: 800;
  font-size: 1.15em;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
  display: inline-block;
  margin-left: 0.2rem;
}

.upsell-note {
  margin-top: var(--spacing-md);
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: var(--text-secondary);
  opacity: 0.9;
  line-height: 1.5;
}

.confirmation-message {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid var(--glass-border);
}

.confirmation-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  animation: scaleIn 0.5s ease-out;
}

.confirmation-message .h2 {
  margin-bottom: var(--spacing-md);
}

.confirmation-message .sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Mobile responsive styles for upsell */
@media (max-width: 768px) {
  .upsell-content {
    padding: clamp(1.5rem, 4vw, 2rem);
    margin: 0;
  }
  
  .upsell-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
  }
  
  .upsell-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
  }
  
  .upsell-description {
    margin-bottom: var(--spacing-lg);
  }
  
  .upsell-explanation {
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
  }
  
  .upsell-quote {
    font-size: clamp(1rem, 2vw, 1.1rem);
  }
  
  .upsell-reason {
    font-size: clamp(0.95rem, 1.8vw, 1rem);
  }
  
  .price-highlight {
    font-size: 1.3rem;
  }
  
  .upsell-cta {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
  }
  
  .btn-upsell {
    padding: clamp(0.875rem, 2.2vw, 1rem) clamp(1.25rem, 3.5vw, 1.75rem);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
  }
  
  .price-in-button {
    font-size: 1.1em;
  }
  
  .confirmation-message {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
  }
  
  .confirmation-icon {
    font-size: 2.5rem;
  }
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.quiz-progress {
  width: 100%;
  height: 6px;
  background: var(--glass-bg);
  border-radius: 3px;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.quiz-question {
  margin-bottom: var(--spacing-md);
}

.quiz-question h3 {
  margin-bottom: var(--spacing-md);
  font-size: clamp(1.125rem, 3vw, 1.3rem);
}

.quiz-options {
  display: grid;
  gap: var(--spacing-sm);
}

.quiz-option {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 3.5vw, 1.5rem);
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: var(--text-primary);
  min-height: 56px;
  display: flex;
  align-items: center;
}

.quiz-option:focus-visible {
  outline: 3px solid var(--accent-cyan);
  outline-offset: 2px;
}

.quiz-option:hover {
  border-color: var(--accent-cyan);
  background: var(--glass-bg-light);
  transform: translateX(4px);
}

.quiz-option.selected {
  border-color: var(--accent-cyan);
  background: rgba(6,182,212,0.1);
  box-shadow: 0 0 20px rgba(6,182,212,0.3);
}

.quiz-navigation {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.quiz-navigation button {
  flex: 1;
}

.quiz-navigation button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   Results
   ============================================ */
.results-container {
  text-align: center;
  padding: var(--spacing-md) 0;
}

.trader-type-badge {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--accent-gradient);
  border-radius: 50px;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--bg-dark);
  margin: var(--spacing-md) 0;
}

.results-description {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
  text-align: left;
}

/* ============================================
   Transformation Section
   ============================================ */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.transformation-card {
  background: var(--glass-bg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  border: 2px solid;
}

.transformation-card.before {
  border-color: rgba(239,68,68,0.3);
}

.transformation-card.after {
  border-color: rgba(6,182,212,0.5);
}

.transformation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transformation-list li {
  margin-bottom: var(--spacing-sm);
  display: flex;
  gap: var(--spacing-xs);
  align-items: flex-start;
}

.transformation-list .icon {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.transformation-card.before .icon {
  color: #ef4444;
}

.transformation-card.after .icon {
  color: #22c55e;
}

/* ============================================
   Footer
   ============================================ */
footer {
  padding: var(--spacing-lg) 0;
  padding-bottom: clamp(3rem, 10vw, 5rem);
  text-align: center;
  color: var(--text-primary);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  background: var(--glass-bg);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-top: 1px solid var(--glass-border);
}

[data-theme="light"] footer {
  background: rgba(255,255,255,0.9);
  border-top: 1px solid rgba(0,0,0,0.1);
  color: var(--text-primary);
}

/* Mobile footer padding for sticky CTA */
@media (max-width: 768px) {
  footer {
    padding-bottom: 80px;
  }
}

footer a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--accent-teal);
}

/* ============================================
   Fade in animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scroll reveal animation */
@keyframes scrollReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add subtle hover animations to interactive elements */
.cta-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow), var(--shadow-premium);
}

/* Transformation cards animation */
.transformation-card {
  animation: fadeInUp 0.8s ease-out both;
  transition: transform 0.3s ease;
}

.transformation-card:hover {
  transform: translateY(-5px);
}

.transformation-card:nth-child(1) { animation-delay: 0.1s; }
.transformation-card:nth-child(2) { animation-delay: 0.2s; }

/* ============================================
   Sticky Mobile CTA Button
   ============================================ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  display: none;
  width: calc(100% - 32px);
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 20px rgba(6,182,212,0.4);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
  
  /* Hide sticky CTA when modal is open */
  body.modal-open .sticky-mobile-cta {
    display: none;
  }
}

/* ============================================
   Benefits/Carousel Responsive (Mobile)
   ============================================ */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .benefit-card {
    min-height: auto;
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.5rem);
  }
}

/* ============================================
   Section Spacing and Visual Balance
   ============================================ */
/* Alternate background for visual rhythm */
.section:nth-child(even) {
  background: var(--glass-bg-light);
}

[data-theme="light"] .section:nth-child(even) {
  background: rgba(255,255,255,0.5);
}

/* Ensure all text in sections is visible */
.section * {
  color: inherit;
}

.section .h2,
.section .h3,
.section .sub {
  color: var(--text-primary);
}

[data-theme="light"] .section .h2,
[data-theme="light"] .section .h3,
[data-theme="light"] .section .sub {
  color: var(--text-primary);
}

/* Remove double spacing between sections */
.section + .section {
  margin-top: 0;
  padding-top: 0;
}

@media (max-width: 768px) {
  .section + .section {
    margin-top: 0;
    padding-top: 0;
  }
  
  /* Sections already have padding, no need for margin-bottom */
  .section {
    margin-bottom: 0;
  }
}

/* Additional spacing between How It Works and Benefits - handled by section padding */
#how + .benefits-section {
  margin-top: 0;
  padding-top: 0;
}

/* ============================================
   Countdown Bar Mobile Improvements - HORIZONTAL
   ============================================ */
@media (max-width: 480px) {
  .countdown-text {
    white-space: nowrap;
    text-align: left;
    line-height: 1.3;
    flex-shrink: 0;
  }
  
  .countwrap {
    flex-wrap: nowrap;
    gap: clamp(0.3rem, 1.5vw, 0.5rem);
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .countwrap::-webkit-scrollbar {
    display: none;
  }
  
  .countwrap .btn {
    order: 0;
    flex-shrink: 0;
    margin-top: 0;
    margin-left: clamp(0.5rem, 2vw, 0.75rem);
    padding: clamp(0.5rem, 1.8vw, 0.65rem) clamp(0.875rem, 2.5vw, 1.25rem);
    font-size: clamp(0.7rem, 2.2vw, 0.8rem);
  }
}

/* ============================================
   Transformation Grid Mobile
   ============================================ */
@media (max-width: 768px) {
  .transformation-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* ============================================
   Responsive Utilities
   ============================================ */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 18px;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE FIXES
   Mobile & Tablet Optimizations
   ============================================ */

/* ============================================
   Hero Section - Mobile & Tablet
   ============================================ */
@media (max-width: 768px) {
  .hero-badge-container {
    flex-direction: column;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
  
  .chip {
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    padding: clamp(0.4rem, 1.5vw, 0.5rem) clamp(0.9rem, 3vw, 1.1rem);
    width: auto;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }
  
  .hero-title-wrapper .h1 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.15rem);
    line-height: 1.7;
    margin-bottom: clamp(1.25rem, 4vw, 1.75rem);
  }
  
  .hero-card {
    padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
  }
  
  .hero-ctas {
    gap: clamp(0.75rem, 2vw, 1rem);
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 100%;
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 85vh;
    min-height: 85dvh;
  }
  
  .hero-badge-container {
    gap: 0.5rem;
  }
  
  .chip {
    font-size: 0.75rem;
    padding: 0.45rem 0.95rem;
  }
}

/* ============================================
   Video/Pain Section - Mobile & Tablet
   ============================================ */
@media (max-width: 900px) {
  .video-content {
    padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  
  [data-theme="light"] .video-content {
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  .video-content .h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    line-height: 1.3;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
  }
  
  .video-list {
    margin-bottom: clamp(1.25rem, 4vw, 1.75rem);
  }
  
  .video-list li {
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  
  .video-content .btn {
    width: 100%;
    max-width: 100%;
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }
}

@media (max-width: 600px) {
  .video-section {
    border-radius: var(--radius-md);
  }
  
  .video-content {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
  }
  
  .video-display {
    margin-bottom: 0;
  }
  
  .video-container {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
}

/* ============================================
   Benefits Section - Mobile & Tablet
   ============================================ */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.25rem, 3vw, 1.75rem);
  }
}

@media (max-width: 768px) {
  .benefits-section .h2 {
    font-size: clamp(1.4rem, 4.5vw, 1.9rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }
  
  .benefits-section .sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  
  .benefit-card {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
    min-height: auto;
  }
  
  .benefit-icon {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }
  
  .benefit-title {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
  }
  
  .benefit-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
  }
}

/* ============================================
   Why This Works Section - Mobile & Tablet
   ============================================ */
@media (max-width: 768px) {
  .section .h2 {
    font-size: clamp(1.4rem, 4.5vw, 1.9rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
  }
  
  .section .steps-grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  
  .section .step-card {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
    min-height: auto;
  }
  
  .section .step-card .h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }
  
  .section .step-card .sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
  }
}

/* ============================================
   Testimonials/Reviews - Mobile & Tablet
   ============================================ */
@media (max-width: 768px) {
  .testimonials-section .h2 {
    font-size: clamp(1.4rem, 4.5vw, 1.9rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
  }
  
  .testimonials-section .sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }
  
  .reviews-container {
    margin-top: clamp(1.5rem, 4vw, 2rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
  }
  
  .review-card {
    min-width: 260px;
    max-width: 300px;
    padding: clamp(1.25rem, 4vw, 1.5rem);
  }
  
  .review-header {
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }
  
  .review-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  
  .review-name {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  
  .review-location {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
  }
  
  .review-stars {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
  }
  
  .review-text {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    line-height: 1.6;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }
  
  .review-date {
    font-size: clamp(0.65rem, 1.8vw, 0.75rem);
  }
  
  .marquee-left,
  .marquee-right {
    gap: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(0.75rem, 2vw, 1rem) 0;
  }
  
  .marquee-right {
    margin-top: clamp(0.75rem, 2vw, 1rem);
  }
}

@media (max-width: 480px) {
  .review-card {
    min-width: 240px;
    max-width: 280px;
    padding: clamp(1rem, 3vw, 1.25rem);
  }
  
  .marquee-left {
    animation-duration: 35s;
  }
  
  .marquee-right {
    animation-duration: 40s;
  }
}

/* ============================================
   FAQ Section - Mobile & Tablet
   ============================================ */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
  }
  
  .faq-section .h2 {
    font-size: clamp(1.4rem, 4.5vw, 1.9rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
  
  .faq-list {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }
  
  .faq-list details {
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }
  
  .faq-list summary {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    padding: clamp(0.875rem, 2vw, 1rem);
  }
  
  .faq-list p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    padding: clamp(0.75rem, 2vw, 1rem);
  }
  
  .cta-card {
    padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
  }
  
  .cta-card .h2 {
    font-size: clamp(1.4rem, 4.5vw, 1.9rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
  
  .cta-card .sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }
  
  .urgency-box {
    padding: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
  
  .urgency-box p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
  }
  
  .cta-card .btn {
    width: 100%;
    max-width: 100%;
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }
}

/* ============================================
   Transformation Section - Mobile & Tablet
   ============================================ */
@media (max-width: 768px) {
  .transformation-section .h2 {
    font-size: clamp(1.4rem, 4.5vw, 1.9rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
  }
  
  .transformation-section .sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }
  
  .transformation-grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  
  .transformation-card {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
    min-height: auto;
  }
  
  .transformation-card .h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
  
  .transformation-list {
    gap: clamp(0.75rem, 2vw, 1rem);
  }
  
  .transformation-list li {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    padding: clamp(0.75rem, 2vw, 1rem);
  }
  
  .transformation-list .icon {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    min-width: clamp(1.5rem, 4vw, 2rem);
  }
  
  .transformation-section .sub {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: clamp(1.25rem, 4vw, 1.75rem);
  }
  
  .transformation-section .btn {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================
   Countdown Bar - Mobile & Tablet
   ============================================ */
@media (max-width: 768px) {
  .countbar {
    padding: clamp(1rem, 3vw, 1.5rem) 0;
  }
  
  .countwrap {
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1rem);
    align-items: center;
    text-align: center;
  }
  
  .countdown-text {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    white-space: normal;
    line-height: 1.5;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    order: 1;
  }
  
  .countdown-item {
    margin: 0 clamp(0.25rem, 1vw, 0.5rem);
  }
  
  .countdown-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .countdown-label {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
  }
  
  .countwrap .btn {
    order: 5;
    width: 100%;
    max-width: 100%;
    margin-top: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  }
}

@media (max-width: 480px) {
  .countwrap {
    gap: 0.5rem;
  }
  
  .countdown-item {
    margin: 0 0.25rem;
  }
  
  .countdown-number {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }
  
  .countdown-label {
    font-size: clamp(0.65rem, 1.8vw, 0.75rem);
  }
}

/* ============================================
   Footer - Mobile & Tablet
   ============================================ */
@media (max-width: 768px) {
  footer {
    padding: clamp(2rem, 5vw, 3rem) 0;
    text-align: center;
  }
  
  footer .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
  
  footer {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    line-height: 1.7;
  }
  
  footer a {
    display: inline-block;
    margin: 0 clamp(0.25rem, 1vw, 0.5rem);
    padding: clamp(0.25rem, 1vw, 0.5rem);
  }
}

/* ============================================
   Modal - Mobile & Tablet
   ============================================ */
@media (max-width: 768px) {
  .modal {
    width: 94vw;
    max-width: 94vw;
    height: 90vh;
    max-height: 90vh;
    margin: 5vh auto;
    border-radius: var(--radius-lg);
  }
  
  .modal-header {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
  
  .modal-header .h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
  
  .modal-close {
    width: clamp(32px, 8vw, 40px);
    height: clamp(32px, 8vw, 40px);
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .modal-body {
    padding: clamp(1rem, 3vw, 1.5rem);
    max-height: calc(90vh - 120px);
    overflow-y: auto;
  }
  
  .quiz-container,
  .summary-container,
  .form-container,
  .upsell-container {
    padding: clamp(0.75rem, 2vw, 1rem) 0;
  }
  
  .quiz-question .h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
  }
  
  .quiz-question p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }
  
  .quiz-options {
    gap: clamp(0.75rem, 2vw, 1rem);
  }
  
  .quiz-option {
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  
  .summary-content .h2 {
    font-size: clamp(1.3rem, 4vw, 1.7rem);
  }
  
  .summary-text p {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.7;
  }
  
  .form-container .h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
  
  .form-label {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  
  .form-input {
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1rem, 3vw, 1.25rem);
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  }
  
  .upsell-content .h2 {
    font-size: clamp(1.3rem, 4vw, 1.7rem);
  }
  
  .upsell-content .h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
  
  .upsell-content .sub {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.7;
  }
  
  .quiz-navigation {
    gap: clamp(0.75rem, 2vw, 1rem);
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }
  
  .quiz-navigation .btn {
    padding: clamp(0.75rem, 2vw, 0.875rem) clamp(1.25rem, 3vw, 1.5rem);
    font-size: clamp(0.875rem, 2.5vw, 0.95rem);
  }
}

@media (max-width: 480px) {
  .modal {
    width: 96vw;
    height: 92vh;
    margin: 4vh auto;
  }
  
  .modal-body {
    padding: clamp(0.875rem, 2.5vw, 1.25rem);
  }
}

/* ============================================
   Tablet Specific Optimizations
   ============================================ */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero-badge-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
  }
  
  .chip {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    padding: clamp(0.45rem, 1.5vw, 0.5rem) clamp(0.95rem, 2.5vw, 1.1rem);
  }
  
  .hero-title-wrapper .h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 2.5rem);
  }
  
  .transformation-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .section .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section .step-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .review-card {
    min-width: 300px;
    max-width: 350px;
  }
  
  .video-section-inner {
    grid-template-columns: 1fr;
  }
  
  .video-content {
    padding: clamp(2rem, 4vw, 2.5rem) clamp(1.75rem, 3.5vw, 2.25rem);
  }
}

/* ============================================
   General Mobile Improvements
   ============================================ */
@media (max-width: 768px) {
  .container,
  .container-wide {
    padding-inline: clamp(1rem, 3vw, 1.5rem);
  }
  
  .text-center {
    text-align: center;
  }
  
  .mb-2 {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
  
  .mt-3 {
    margin-top: clamp(1.5rem, 4vw, 2rem);
  }
}

/* ============================================
   FINAL DEPLOYMENT - WHITESPACE OPTIMIZATION
   Comprehensive spacing review and fixes
   ============================================ */

/* Remove excessive bottom margins from last elements */
.section:last-child,
.hero-card:last-child,
.step-card:last-child,
.benefit-card:last-child,
.review-card:last-child,
.transformation-card:last-child,
.video-list li:last-child,
.transformation-list li:last-child,
.faq-list details:last-child {
  margin-bottom: 0;
}

/* Remove excessive top margins from first elements */
.section:first-child,
.hero-card:first-child,
.step-card:first-child,
.benefit-card:first-child,
.review-card:first-child,
.transformation-card:first-child {
  margin-top: 0;
}

/* Ensure consistent spacing in lists */
.video-list li:not(:last-child),
.transformation-list li:not(:last-child) {
  margin-bottom: var(--spacing-sm);
}

@media (max-width: 768px) {
  .video-list li:not(:last-child),
  .transformation-list li:not(:last-child) {
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }
}

/* Grid gaps - ensure no double spacing */
.steps-grid > *:last-child,
.benefits-grid > *:last-child,
.transformation-grid > *:last-child,
.faq-grid > *:last-child {
  margin-bottom: 0;
}

/* Button groups - remove excessive spacing */
.hero-ctas .btn:last-child,
.quiz-navigation .btn:last-child {
  margin-bottom: 0;
}

/* Form spacing - last form group */
.form-group:last-child {
  margin-bottom: 0;
}

/* Modal content - last child */
.modal-body > *:last-child,
.quiz-container > *:last-child,
.summary-container > *:last-child,
.form-container > *:last-child,
.upsell-container > *:last-child {
  margin-bottom: 0;
}

/* CTA wrapper spacing */
.cta-wrapper {
  margin-top: var(--spacing-xl);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .cta-wrapper {
    margin-top: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0;
  }
}

/* Section header spacing */
.section-header {
  margin-bottom: var(--spacing-xl);
  margin-top: 0;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: clamp(2rem, 5vw, 3rem);
    margin-top: 0;
  }
}

/* Steps container spacing */
.steps-container {
  margin: var(--spacing-xl) 0;
}

@media (max-width: 768px) {
  .steps-container {
    margin: clamp(2rem, 5vw, 3rem) 0;
  }
}

/* Reviews container spacing */
.reviews-container {
  margin-top: var(--spacing-lg);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .reviews-container {
    margin-top: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0;
  }
}

/* Video section wrapper - no extra margins */
.video-section-wrapper {
  margin: 0;
}

/* Countdown bar - no extra margins */
.countbar {
  margin: 0;
}

/* Footer spacing */
footer {
  margin-top: var(--spacing-xxl);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  footer {
    margin-top: clamp(2rem, 6vw, 3rem);
    margin-bottom: 0;
  }
}

/* Hero section - no extra margins */
.hero {
  margin: 0;
}

/* Ensure text elements don't have excessive margins */
.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* Remove double spacing in nested elements */
.card > *:last-child,
.benefit-card > *:last-child,
.step-card > *:last-child {
  margin-bottom: 0;
}

/* Print styles */
@media print {
  .scroll-to-top,
  .theme-toggle,
  .modal-backdrop,
  .sticky-mobile-cta {
    display: none !important;
  }
}

