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

/* ===========================================
   JAZU LABS DESIGN SYSTEM
   B2B Advertising Agency Theme
   
   COLOR PHILOSOPHY:
   ─────────────────
   • PRIMARY (Navy Blue #33475B): Stability, trust, professionalism
     Used for: Navigation, headers, large UI elements, text
     Grounds the brand and instills confidence in corporate clients
   
   • ACCENT (Warm Orange #FF7A59): Energy, creativity, warmth
     Used for: CTAs, highlights, icons, interactive elements
     Creates excitement through LIMITED, strategic use
     Impact comes from scarcity - avoid saturation
   
   • CONTRAST: WCAG 2.0 AA compliant
     White/light text on blue/orange backgrounds
     Dark text on light backgrounds in light mode
   
   THEME SWITCHING:
   ────────────────
   Apply [data-theme="dark"] or [data-theme="light"] to :root/<html>
   Or use .theme-dark / .theme-light classes
   Default: respects user's system preference via prefers-color-scheme
   =========================================== */

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

/* ===========================================
   DESIGN TOKENS - LIGHT MODE (Default)
   
   Light mode - VIBRANT & BOLD
   - Crisp white backgrounds with subtle depth
   - Deep navy text for strong readability
   - Electric orange for high-impact CTAs
   - Inner shadows and borders for tech-forward feel
   =========================================== */
:root,
[data-theme="light"],
.theme-light {
  /* === PRIMARY PALETTE === */
  /* Deep navy blue - trust, stability, professionalism */
  --color-primary: #1A2B3C;
  --color-primary-light: #33475B;
  --color-primary-dark: #0D1821;
  
  /* === ACCENT PALETTE === */
  /* Electric vibrant orange - energy, creativity, warmth */
  /* Use sparingly for maximum impact */
  --color-accent: #FF6B35;
  --color-accent-hover: #FF8C5A;
  --color-accent-bright: #FF5722;
  --color-accent-light: #FFAB91;
  --color-accent-glow: rgba(255, 107, 53, 0.25);
  
  /* === BACKGROUND COLORS === */
  /* Clean whites with subtle cool undertones */
  --color-background: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-surface-hover: #F1F5F9;
  --color-surface-elevated: #FFFFFF;
  --color-surface-inset: #EEF2F7;
  
  /* === TEXT COLORS === */
  /* Strong navy-based text for bold readability */
  --color-text: #1A2B3C;
  --color-text-light: #3D5A73;
  --color-text-muted: #64748B;
  --color-text-inverse: #FFFFFF;
  
  /* === BORDER & DIVIDERS === */
  --color-border: #CBD5E1;
  --color-border-light: #E2E8F0;
  --color-border-strong: #94A3B8;
  
  /* === GRADIENT COLORS === */
  /* Primary gradient uses deep navy for authority */
  --color-gradient-start: #1A2B3C;
  --color-gradient-end: #33475B;
  /* Accent gradient for CTAs - electric orange */
  --color-accent-gradient-start: #FF6B35;
  --color-accent-gradient-end: #FF8C5A;
  
  /* === SEMANTIC COLORS === */
  --color-success: #10B981;
  --color-success-bg: rgba(16, 185, 129, 0.12);
  --color-warning: #F59E0B;
  --color-warning-bg: rgba(245, 158, 11, 0.12);
  --color-error: #EF4444;
  --color-error-bg: rgba(239, 68, 68, 0.12);
  --color-info: #0EA5E9;
  --color-info-bg: rgba(14, 165, 233, 0.12);
  
  /* === SHADOWS - Enhanced for depth === */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 20px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15), 0 30px 60px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 4px 14px rgba(255, 107, 53, 0.35), 0 8px 24px rgba(255, 107, 53, 0.25);
  --shadow-accent-lg: 0 8px 24px rgba(255, 107, 53, 0.4), 0 16px 48px rgba(255, 107, 53, 0.3);
  --shadow-primary: 0 4px 14px rgba(26, 43, 60, 0.25);
  /* Inner shadows for inset effects */
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-inset-lg: inset 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  --shadow-inner-border: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  
  /* === OVERLAY & BACKDROP === */
  --color-overlay: rgba(26, 43, 60, 0.6);
  --color-backdrop: rgba(248, 250, 252, 0.9);
  
  /* === COMPONENT-SPECIFIC === */
  --header-bg: rgba(255, 255, 255, 0.95);
  --card-bg: var(--color-surface);
  --input-bg: var(--color-surface);
  --input-border: var(--color-border);
  
  /* === TYPOGRAPHY === */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  
  /* === SPACING & LAYOUT === */
  --max-width: 52rem;
  --spacing: 1.5rem;
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 50px;
  
  /* === ANIMATION === */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
  --transition-bounce: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* === COLOR SCHEME HINT === */
  color-scheme: light;
}

/* ===========================================
   DESIGN TOKENS - DARK MODE
   
   Dark mode adjustments:
   - Very dark gray (#1E1E1E) instead of pure black
     Reduces eye strain and feels more premium
   - Lighter blue variant (#50627D) for headers
     Maintains contrast on dark background
   - Lighter, less saturated orange (#FF9F73)
     Avoids optical vibration on dark surfaces
   - Orange "glows" warmly against dark bg
   =========================================== */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]):not(.theme-light) {
    /* === PRIMARY PALETTE (Lightened for contrast) === */
    --color-primary: #50627D;
    --color-primary-light: #7A8FA8;
    --color-primary-dark: #33475B;
    
    /* === ACCENT PALETTE (Lighter, less saturated) === */
    /* Prevents optical vibration on dark backgrounds */
    --color-accent: #FF9F73;
    --color-accent-hover: #FFBEA0;
    --color-accent-light: #FFCFB8;
    --color-accent-glow: rgba(255, 159, 115, 0.2);
    
    /* === BACKGROUND COLORS === */
    /* Very dark gray, not pure black - reduces eye strain */
    --color-background: #1E1E1E;
    --color-surface: #252528;
    --color-surface-hover: #2E2E32;
    --color-surface-elevated: #2A2A2E;
    
    /* === TEXT COLORS === */
    /* Off-white for comfortable reading */
    --color-text: #F0F0F0;
    --color-text-light: #B8B8BD;
    --color-text-muted: #8A8A8F;
    --color-text-inverse: #1E1E1E;
    
    /* === BORDER & DIVIDERS === */
    --color-border: #3A3A3E;
    --color-border-light: #2E2E32;
    
    /* === GRADIENT COLORS === */
    --color-gradient-start: #50627D;
    --color-gradient-end: #7A8FA8;
    --color-accent-gradient-start: #FF9F73;
    --color-accent-gradient-end: #FFBEA0;
    
    /* === SEMANTIC COLORS (Adjusted for dark) === */
    --color-success: #36D7B7;
    --color-success-bg: rgba(54, 215, 183, 0.15);
    --color-warning: #FFC857;
    --color-warning-bg: rgba(255, 200, 87, 0.15);
    --color-error: #FF6B6B;
    --color-error-bg: rgba(255, 107, 107, 0.15);
    --color-info: #4ECDC4;
    --color-info-bg: rgba(78, 205, 196, 0.15);
    
    /* === SHADOWS (Darker, more diffuse) === */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-accent: 0 4px 24px rgba(255, 159, 115, 0.3);
    --shadow-primary: 0 4px 24px rgba(80, 98, 125, 0.25);
    
    /* === OVERLAY & BACKDROP === */
    --color-overlay: rgba(0, 0, 0, 0.6);
    --color-backdrop: rgba(30, 30, 30, 0.85);
    
    /* === COMPONENT-SPECIFIC === */
    --header-bg: rgba(30, 30, 30, 0.9);
    --card-bg: var(--color-surface);
    --input-bg: var(--color-surface);
    --input-border: var(--color-border);
    
    /* === COLOR SCHEME HINT === */
    color-scheme: dark;
  }
}

/* Explicit dark mode via attribute or class */
[data-theme="dark"],
.theme-dark {
  /* === PRIMARY PALETTE (Lightened for contrast) === */
  --color-primary: #50627D;
  --color-primary-light: #7A8FA8;
  --color-primary-dark: #33475B;
  
  /* === ACCENT PALETTE (Lighter, less saturated) === */
  --color-accent: #FF9F73;
  --color-accent-hover: #FFBEA0;
  --color-accent-light: #FFCFB8;
  --color-accent-glow: rgba(255, 159, 115, 0.2);
  
  /* === BACKGROUND COLORS === */
  --color-background: #1E1E1E;
  --color-surface: #252528;
  --color-surface-hover: #2E2E32;
  --color-surface-elevated: #2A2A2E;
  
  /* === TEXT COLORS === */
  --color-text: #F0F0F0;
  --color-text-light: #B8B8BD;
  --color-text-muted: #8A8A8F;
  --color-text-inverse: #1E1E1E;
  
  /* === BORDER & DIVIDERS === */
  --color-border: #3A3A3E;
  --color-border-light: #2E2E32;
  
  /* === GRADIENT COLORS === */
  --color-gradient-start: #50627D;
  --color-gradient-end: #7A8FA8;
  --color-accent-gradient-start: #FF9F73;
  --color-accent-gradient-end: #FFBEA0;
  
  /* === SEMANTIC COLORS === */
  --color-success: #36D7B7;
  --color-success-bg: rgba(54, 215, 183, 0.15);
  --color-warning: #FFC857;
  --color-warning-bg: rgba(255, 200, 87, 0.15);
  --color-error: #FF6B6B;
  --color-error-bg: rgba(255, 107, 107, 0.15);
  --color-info: #4ECDC4;
  --color-info-bg: rgba(78, 205, 196, 0.15);
  
  /* === SHADOWS === */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-accent: 0 4px 24px rgba(255, 159, 115, 0.3);
  --shadow-primary: 0 4px 24px rgba(80, 98, 125, 0.25);
  
  /* === OVERLAY & BACKDROP === */
  --color-overlay: rgba(0, 0, 0, 0.6);
  --color-backdrop: rgba(30, 30, 30, 0.85);
  
  /* === COMPONENT-SPECIFIC === */
  --header-bg: rgba(30, 30, 30, 0.9);
  --card-bg: var(--color-surface);
  --input-bg: var(--color-surface);
  --input-border: var(--color-border);
  
  /* === COLOR SCHEME HINT === */
  color-scheme: dark;
}

html {
  font-size: 16px;
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* ===========================================
   THEME TRANSITION ANIMATION
   Smooth 0.5s transition when switching themes
   =========================================== */
html,
body,
.site-header,
.site-footer,
.site-content,
.container,
section,
.hero,
.card,
.problem-card,
.result-card,
.feature,
.trust-bar,
.btn-primary,
.btn-secondary,
.site-nav a,
.site-title,
h1, h2, h3, h4, h5, h6,
p, span, a,
input, textarea, button {
  transition: 
    background-color 0.5s ease,
    color 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    filter 0.5s ease;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--color-accent-glow), transparent);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 calc(var(--spacing) * 1.5);
  width: 100%;
}

/* Container variants for sections that need more breathing room */
.container--wide {
  max-width: 72rem;
}

.container--narrow {
  max-width: 42rem;
}

/* Header */
.site-header {
  padding: var(--spacing) 0;
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Header right section - nav links + theme toggle */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  /* Navy gradient for trust and professionalism */
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-title:hover {
  opacity: 0.9;
}

/* ===========================================
   THEME TOGGLE - LIGHTBULB ICON
   Lit (yellow) in light mode, off (grey) in dark mode
   =========================================== */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  outline: none;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.4rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
  user-select: none;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

.theme-toggle:focus {
  outline: none;
  border: none;
}

/* Light mode: bulb is lit (normal yellow emoji) */
[data-theme="light"] .theme-toggle,
.theme-light .theme-toggle,
:root:not([data-theme]) .theme-toggle {
  filter: none;
}

/* Dark mode: bulb is off (greyscale) */
[data-theme="dark"] .theme-toggle,
.theme-dark .theme-toggle {
  filter: grayscale(100%) brightness(0.6);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .theme-toggle {
    filter: grayscale(100%) brightness(0.6);
  }
}

.site-nav a {
  padding: 0.5rem 1rem;
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
  border-radius: var(--radius-sm);
}

.site-nav a:hover {
  color: var(--color-text);
  background: var(--color-surface-hover);
}

/* Main content */
.site-content {
  flex: 1;
  padding: calc(var(--spacing) * 3) 0;
}

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger children animations */
.scroll-animate:nth-child(1) { transition-delay: 0s; }
.scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.scroll-animate:nth-child(3) { transition-delay: 0.2s; }
.scroll-animate:nth-child(4) { transition-delay: 0.3s; }

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  text-align: center;
  padding: calc(var(--spacing) * 6) 0 calc(var(--spacing) * 4);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  color: var(--color-text-muted);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  max-width: 40rem;
  line-height: 1.6;
}

/* ===========================================
   SECTION TITLES
   =========================================== */
.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Accent underline for section titles */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ===========================================
   VIDEO CAROUSEL
   =========================================== */
.video-section {
  padding: calc(var(--spacing) * 4) 0;
  overflow: visible;
}

/* Outer container - full viewport width, allows overflow */
.carousel-outer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: visible;
  position: relative;
}

/* Inner carousel container */
.video-carousel {
  position: relative;
  max-width: 2500px;
  margin: 0 auto;
  padding: 2rem 0;
  min-height: 550px;
  overflow: visible;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: visible;
}

.carousel-item {
  position: absolute;
  width: 280px;
  left: 0;
  top: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-origin: center center;
  will-change: transform, opacity;
  cursor: pointer;
}

.carousel-item.slot-hidden {
  visibility: hidden;
  pointer-events: none;
  opacity: 0 !important;
}

/* Center slot styling */
.carousel-item.slot-center {
  z-index: 10;
  cursor: pointer;
}

.carousel-item.slot-center .video-wrapper {
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

/* Play hint overlay on center slot */
.carousel-item.slot-center .video-wrapper::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.carousel-item.slot-center .video-wrapper:hover::after {
  opacity: 0.8;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.carousel-item:hover .video-wrapper {
  border-color: var(--color-accent);
  box-shadow: 0 8px 30px var(--color-accent-glow);
  transform: scale(1.03);
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.video-external-link {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-decoration: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
  opacity: 0;
  transition: opacity var(--transition);
}

.video-wrapper:hover .video-external-link {
  opacity: 1;
}

.video-external-link:hover {
  background: var(--color-accent);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
  color: var(--color-text-muted);
}

.video-placeholder span {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.video-placeholder p {
  font-size: 0.85rem;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity var(--transition);
}

.video-overlay .play-icon {
  font-size: 3rem;
  color: white;
  opacity: 0.9;
}

.video-wrapper:hover .video-overlay {
  opacity: 0;
}

.sound-toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-toggle.hidden {
  opacity: 0;
  pointer-events: none;
}

.sound-toggle:hover {
  background: var(--color-accent);
  transform: scale(1.1);
}

.sound-toggle.no-audio {
  display: none;
}

.sound-toggle:disabled {
  pointer-events: none;
}

/* Play/Pause Overlay */
.play-pause-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 20;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.play-pause-overlay.fade-out {
  opacity: 0;
}

/* ===========================================
   VIDEO MODAL
   =========================================== */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-modal-overlay.active {
  opacity: 1;
}

.video-modal-overlay.closing {
  opacity: 0;
}

.video-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal-overlay.active .video-modal-content {
  transform: scale(1);
}

.video-modal-overlay.closing .video-modal-content {
  transform: scale(0.9);
}

.modal-close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 32px;
  height: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}

.modal-close-btn:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: scale(1.1);
}

/* On mobile, move close button inside the video area */
@media (max-width: 768px) {
  .modal-close-btn {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
  }
  
  .modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.05);
  }
}

.video-modal-content video {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-sound-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.modal-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* Video Loading Spinner */
.video-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 5;
  transition: opacity 0.3s ease;
}

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

.video-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.video-progress-bar {
  width: 80%;
  max-width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}

.video-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.video-loading-text {
  margin-top: 12px;
  color: var(--color-text-light);
  font-size: 0.85rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.video-title {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
  text-align: center;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--color-border);
  color: white;
  font-size: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Position buttons closer to carousel content */
.carousel-btn.prev { left: calc(50% - 450px); }
.carousel-btn.next { right: calc(50% - 450px); }

/* Clickable non-center slots */
.carousel-item {
  cursor: pointer;
}

.carousel-item.slot-center {
  cursor: pointer;
}

/* ===========================================
   CTA BUTTON - High Impact
   =========================================== */
.cta-section {
  text-align: center;
  padding: calc(var(--spacing) * 3) 0;
}

.btn-book {
  /* Electric orange CTA - maximum visual impact */
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.125rem 3rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-accent), inset 0 1px 0 rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-bright, #FF5722), var(--color-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

.btn-book::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: transparent;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  pointer-events: none;
  z-index: 1;
}

.btn-book:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-accent-lg), 0 0 40px var(--color-accent-glow);
}

.btn-book:hover::before {
  opacity: 1;
}

.btn-book:active {
  transform: translateY(-2px) scale(1.03);
}

/* ===========================================
   BOOKING SECTION (CALENDLY)
   =========================================== */
.booking-section {
  padding: calc(var(--spacing) * 5) 0;
  background: var(--color-surface);
  border-radius: var(--radius);
  margin: calc(var(--spacing) * 2) 0;
}

.booking-description {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.calendly-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.calendly-placeholder {
  background: var(--color-background);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  padding: calc(var(--spacing) * 3);
  text-align: center;
}

.calendly-placeholder p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.placeholder-note {
  font-size: 0.9rem !important;
  color: var(--color-text-muted);
}

.calendly-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: var(--color-accent);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background var(--transition);
}

.calendly-link:hover {
  background: var(--color-accent-light);
}

/* Footer */
.site-footer {
  padding: calc(var(--spacing) * 3) 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.site-footer p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  text-align: center;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ===========================================
   HERO ENHANCEMENTS
   =========================================== */
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--color-accent-glow);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-inset), 0 2px 8px var(--color-accent-glow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  /* Primary buttons use navy gradient - trust and professionalism */
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  color: var(--color-text-inverse);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-primary), var(--shadow-inner-glow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-gradient-start), var(--color-accent-gradient-end));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-accent-lg);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: 2px solid var(--color-border-strong);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-bounce);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-inset), var(--shadow-sm);
  position: relative;
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-accent), inset 0 0 0 1px var(--color-accent);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(1.01);
  background: var(--color-accent-glow);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===========================================
   TRUST BAR
   =========================================== */
.trust-bar {
  padding: calc(var(--spacing) * 3) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-label {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-logo {
  color: var(--color-text-muted);
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.trust-logo:hover {
  opacity: 1;
}

/* ===========================================
   PROBLEM SECTION
   =========================================== */
.problem-section {
  padding: calc(var(--spacing) * 5) 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-sm), var(--shadow-inner-border);
  position: relative;
}

.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  pointer-events: none;
}

.problem-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-accent-glow);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.problem-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================================
   SOLUTION SECTION
   =========================================== */
.solution-section {
  padding: calc(var(--spacing) * 5) 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background) 100%);
}

.solution-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing);
}

.solution-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
}

.feature:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px) translateX(4px);
  box-shadow: var(--shadow-md), -4px 4px 0 var(--color-accent);
}

.feature-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 8px var(--color-accent-glow);
}

.feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.feature p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===========================================
   SECTION SUBTITLE
   =========================================== */
.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-top: -1rem;
  margin-bottom: 3rem;
}

/* ===========================================
   RESULTS SECTION
   =========================================== */
.results-section {
  padding: calc(var(--spacing) * 5) 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.result-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.result-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.result-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 4px 20px var(--color-accent-glow);
}

.result-card:hover::after {
  transform: scaleX(1);
}

.result-graph {
  padding: 2rem;
  background: var(--color-surface-inset, var(--color-background));
  border-bottom: 2px solid var(--color-border-light);
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.02);
}

.bar-chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  height: 120px;
}

.bar {
  width: 60px;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
  transition: height 0.8s ease;
}

.bar span {
  font-size: 0.75rem;
  color: white;
  font-weight: 500;
}

.bar-before {
  background: var(--color-text-muted);
}

.bar-after {
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
}

.result-info {
  padding: 1.5rem;
}

.result-info h3 {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.result-metric {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-light);
  margin-bottom: 0.5rem;
}

.result-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.results-summary {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.summary-stat {
  text-align: center;
}

.summary-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.summary-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===========================================
   TESTIMONIALS SECTION
   =========================================== */
.testimonials-section {
  padding: calc(var(--spacing) * 5) calc(var(--spacing) * 1.5);
  background: var(--color-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing);
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.testimonial-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.testimonial-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 20px var(--color-accent-glow);
}

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

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(245, 158, 11, 0.3);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md), inset 0 -2px 4px rgba(0,0,0,0.1);
  border: 2px solid var(--color-surface);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--color-text);
}

.author-title {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ===========================================
   PROCESS SECTION
   =========================================== */
.process-section {
  padding: calc(var(--spacing) * 5) 0;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  max-width: 280px;
  padding: 2rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-connector {
  display: none;
}

/* ===========================================
   PRICING SECTION
   =========================================== */
.pricing-section {
  padding: 20px;
  background: var(--color-surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.pricing-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  margin-bottom: 2rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
}

.period {
  color: var(--color-text-muted);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--color-text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓ ";
  color: var(--color-accent-light);
}

.btn-pricing {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-primary), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.btn-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

.btn-pricing:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-accent-lg), 0 0 30px var(--color-accent-glow);
}

.btn-pricing:hover::before {
  opacity: 1;
}

.btn-pricing:active {
  transform: translateY(-2px) scale(1.01);
}

/* ===========================================
   FAQ SECTION
   =========================================== */
.faq-section {
  padding: calc(var(--spacing) * 5) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--color-accent);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.faq-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================================
   FINAL CTA SECTION
   =========================================== */
.final-cta-section {
  padding: calc(var(--spacing) * 6) 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--color-text);
}

.cta-content > p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-book-large {
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.25rem 3rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.btn-book-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #34D399, #10B981);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

.btn-book-large:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.45), 0 0 40px rgba(16, 185, 129, 0.25);
}

.btn-book-large:hover::before {
  opacity: 1;
}

.btn-book-large:active {
  transform: translateY(-2px) scale(1.02);
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  /* Ensure adequate padding on mobile */
  .container {
    padding: 0 var(--spacing);
  }
  
  /* Stack header on very small screens */
  .site-header .container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .header-right {
    gap: 0.25rem;
  }
  
  .site-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .theme-toggle {
    margin-left: 0.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .trust-logos {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  /* Add padding to sections */
  .problem-section,
  .solution-section,
  .results-section,
  .testimonials-section,
  .process-section,
  .pricing-section,
  .faq-section {
    padding-left: var(--spacing);
    padding-right: var(--spacing);
  }
  
  .solution-content {
    padding: 0 0.5rem;
  }
  
  .feature {
    padding: 1.25rem;
  }

  .video-carousel {
    padding: 0 2.5rem;
  }

  .carousel-item {
    flex: 0 0 260px;
    max-width: 260px;
  }

  .carousel-btn {
    display: none;
  }

  .btn-book {
    font-size: 1.1rem;
    padding: 0.875rem 2rem;
  }

  .booking-section {
    margin: var(--spacing) 0;
    padding: calc(var(--spacing) * 3) var(--spacing);
  }

  .pricing-card.featured {
    transform: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .results-summary {
    gap: 2rem;
    padding: 2rem;
  }

  .summary-number {
    font-size: 2rem;
  }
}
