/* ==========================================================================
   GOSPEL CLIPS — Ultra-Premium Dark Landing Page
   Version 1.0 | Glassmorphism + Cinematic Gradients
   ========================================================================== */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */
:root {
  /* ── Core Palette ──────────────────────────────────────────────────────── */
  --deep-navy:        #0a0f1e;
  --rich-purple:      #1a0a2e;
  --electric-blue:    #0066ff;
  --electric-blue-50: rgba(0, 102, 255, 0.5);
  --electric-blue-20: rgba(0, 102, 255, 0.2);
  --electric-blue-10: rgba(0, 102, 255, 0.1);
  --gold:             #f0a500;
  --gold-50:          rgba(240, 165, 0, 0.5);
  --gold-20:          rgba(240, 165, 0, 0.2);
  --darkest:          #050912;
  --section-dark:     #080d1a;

  /* ── Neutrals ──────────────────────────────────────────────────────────── */
  --white:            #ffffff;
  --white-95:         rgba(255, 255, 255, 0.95);
  --white-80:         rgba(255, 255, 255, 0.80);
  --white-60:         rgba(255, 255, 255, 0.60);
  --white-40:         rgba(255, 255, 255, 0.40);
  --white-20:         rgba(255, 255, 255, 0.20);
  --white-15:         rgba(255, 255, 255, 0.15);
  --white-10:         rgba(255, 255, 255, 0.10);
  --white-08:         rgba(255, 255, 255, 0.08);
  --white-05:         rgba(255, 255, 255, 0.05);
  --white-03:         rgba(255, 255, 255, 0.03);

  /* ── Semantic Colors ───────────────────────────────────────────────────── */
  --success:          #22c55e;
  --danger:           #ef4444;
  --danger-muted:     rgba(239, 68, 68, 0.4);
  --whatsapp-green:   #25d366;

  /* ── Gradients ─────────────────────────────────────────────────────────── */
  --gradient-blue-purple:  linear-gradient(135deg, var(--electric-blue), #7c3aed);
  --gradient-blue-gold:    linear-gradient(135deg, var(--electric-blue), var(--gold));
  --gradient-hero-overlay: linear-gradient(to bottom, rgba(10, 15, 30, 0.3), rgba(10, 15, 30, 0.85));
  --gradient-dark-radial:  radial-gradient(ellipse at center, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
  --gradient-cta-bg:       linear-gradient(135deg, var(--electric-blue), #7c3aed, var(--electric-blue));
  --gradient-text:         linear-gradient(135deg, var(--electric-blue), var(--gold));

  /* ── Glass ─────────────────────────────────────────────────────────────── */
  --glass-bg:         rgba(255, 255, 255, 0.05);
  --glass-bg-strong:  rgba(255, 255, 255, 0.08);
  --glass-border:     rgba(255, 255, 255, 0.10);
  --glass-border-strong: rgba(255, 255, 255, 0.15);
  --glass-blur:       blur(12px);
  --glass-blur-md:    blur(16px);
  --glass-blur-xl:    blur(24px);

  /* ── Spacing ───────────────────────────────────────────────────────────── */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;
  --section-py: 7rem;

  /* ── Typography ────────────────────────────────────────────────────────── */
  --font-family:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-xs:      0.75rem;
  --font-sm:      0.875rem;
  --font-base:    1rem;
  --font-lg:      1.125rem;
  --font-xl:      1.25rem;
  --font-2xl:     1.5rem;
  --font-3xl:     1.875rem;
  --font-4xl:     2.25rem;
  --font-5xl:     3rem;
  --font-6xl:     3.75rem;
  --font-hero:    4.5rem;

  /* ── Borders & Radius ──────────────────────────────────────────────────── */
  --radius-sm:    0.5rem;
  --radius-md:    0.75rem;
  --radius-lg:    1rem;
  --radius-xl:    1.25rem;
  --radius-2xl:   1.5rem;
  --radius-3xl:   2rem;
  --radius-full:  9999px;

  /* ── Shadows ───────────────────────────────────────────────────────────── */
  --shadow-glow-blue:   0 0 40px rgba(0, 102, 255, 0.3);
  --shadow-glow-gold:   0 0 40px rgba(240, 165, 0, 0.25);
  --shadow-glow-purple: 0 0 40px rgba(124, 58, 237, 0.3);
  --shadow-card:        0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-card-hover:  0 16px 64px rgba(0, 0, 0, 0.4);

  /* ── Transitions ───────────────────────────────────────────────────────── */
  --transition-fast:    0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:    0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring:  0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Z-Index ───────────────────────────────────────────────────────────── */
  --z-particles:  1;
  --z-content:    10;
  --z-navbar:     1000;
  --z-modal:      2000;
  --z-cursor:     9999;
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--deep-navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: var(--font-family);
  outline: none;
  border: none;
}

::selection {
  background: var(--electric-blue-50);
  color: var(--white);
}

/* ==========================================================================
   3. CUSTOM SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--darkest);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--electric-blue), var(--rich-purple));
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #3388ff, #9b5de5);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--electric-blue) var(--darkest);
}

/* ==========================================================================
   4. CUSTOM CURSOR GLOW (Desktop Only)
   ========================================================================== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
}

/* ==========================================================================
   5. UTILITY CLASSES
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  width: 100%;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  width: 100%;
}

.section-label {
  color: var(--gold);
  font-size: var(--font-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.section-title {
  font-size: var(--font-5xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: var(--font-lg);
  color: var(--white-60);
  max-width: 600px;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold);
}

.text-blue {
  color: var(--electric-blue);
}

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

/* ==========================================================================
   6. SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for sequential reveals */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   7. KEYFRAME ANIMATIONS
   ========================================================================== */

/* Floating particles */
@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px) scale(0.5);
    opacity: 0;
  }
}

@keyframes float-particle-alt {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100vh) translateX(-30px) rotate(360deg);
    opacity: 0;
  }
}

/* Gentle float for elements */
@keyframes gentle-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Pulse glow */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.4), 0 0 80px rgba(0, 102, 255, 0.15);
  }
}

/* Gradient shift */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Light rays */
@keyframes light-rays {
  0% {
    opacity: 0.3;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    opacity: 0.3;
    transform: rotate(360deg) scale(1);
  }
}

/* Spin slow */
@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Counter tick */
@keyframes counter-pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* Bounce subtle */
@keyframes bounce-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Orb drift */
@keyframes orb-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 10px) scale(0.95);
  }
}

/* Fade in up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide down for mobile menu */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal entrance */
@keyframes modal-enter {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Sparkle */
@keyframes sparkle {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* ==========================================================================
   8. FLOATING PARTICLES
   ========================================================================== */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: var(--z-particles);
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--electric-blue);
  opacity: 0;
}

.particle:nth-child(1) {
  left: 10%;
  bottom: 0;
  animation: float-particle 8s linear infinite;
  animation-delay: 0s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(2) {
  left: 25%;
  bottom: 0;
  animation: float-particle-alt 10s linear infinite;
  animation-delay: 2s;
  background: var(--gold);
  width: 5px;
  height: 5px;
}

.particle:nth-child(3) {
  left: 45%;
  bottom: 0;
  animation: float-particle 12s linear infinite;
  animation-delay: 4s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(4) {
  left: 60%;
  bottom: 0;
  animation: float-particle-alt 9s linear infinite;
  animation-delay: 1s;
  background: #7c3aed;
  width: 4px;
  height: 4px;
}

.particle:nth-child(5) {
  left: 80%;
  bottom: 0;
  animation: float-particle 11s linear infinite;
  animation-delay: 3s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(6) {
  left: 90%;
  bottom: 0;
  animation: float-particle-alt 14s linear infinite;
  animation-delay: 5s;
  background: var(--gold);
  width: 2px;
  height: 2px;
}

.particle:nth-child(7) {
  left: 35%;
  bottom: 0;
  animation: float-particle 13s linear infinite;
  animation-delay: 6s;
  background: #7c3aed;
  width: 3px;
  height: 3px;
}

.particle:nth-child(8) {
  left: 70%;
  bottom: 0;
  animation: float-particle-alt 10s linear infinite;
  animation-delay: 7s;
  width: 4px;
  height: 4px;
}

/* ==========================================================================
   9. NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-navbar);
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: var(--glass-blur-xl);
  -webkit-backdrop-filter: var(--glass-blur-xl);
  border-bottom: 1px solid var(--white-08);
  padding: var(--space-md) 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Logo ────────────────────────────────────────────────────────────────── */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.navbar-logo .logo-icon {
  font-size: var(--font-2xl);
  filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.4));
}

.navbar-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-logo .logo-name {
  font-size: var(--font-xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.navbar-logo .logo-tagline {
  font-size: var(--font-xs);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── Nav Links ───────────────────────────────────────────────────────────── */
.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.navbar-links a {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--white-80);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-blue-purple);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.navbar-links a:hover {
  color: var(--white);
}

.navbar-links a:hover::after {
  width: 100%;
}

/* ── Nav Actions ─────────────────────────────────────────────────────────── */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.btn-login {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--white-20);
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--white-80);
  background: transparent;
  transition: all var(--transition-base);
}

.btn-login:hover {
  border-color: var(--white-40);
  color: var(--white);
  background: var(--white-05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.btn-get-started {
  padding: 0.5rem 1.5rem;
  background: var(--gradient-blue-purple);
  background-size: 200% 200%;
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.45);
}

.btn-get-started:hover::before {
  left: 100%;
}

/* ── Hamburger Menu ──────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: var(--z-navbar);
  padding: 4px;
}

.hamburger span,
.hamburger .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1),
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2),
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3),
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu ─────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: var(--glass-blur-xl);
  -webkit-backdrop-filter: var(--glass-blur-xl);
  border-bottom: 1px solid var(--white-08);
  padding: var(--space-xl) var(--space-xl) var(--space-2xl);
  animation: slideDown 0.3s ease forwards;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: var(--space-md) 0;
  font-size: var(--font-lg);
  font-weight: 500;
  color: var(--white-80);
  border-bottom: 1px solid var(--white-05);
  transition: all var(--transition-fast);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--white);
  padding-left: var(--space-md);
}

.mobile-menu .mobile-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--white-08);
}

.mobile-menu .mobile-actions button {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: var(--font-base);
}

/* ==========================================================================
   10. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img,
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

/* Light rays effect */
.hero-light-rays {
  position: absolute;
  top: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translateX(-50%);
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(0, 102, 255, 0.03) 30deg,
    transparent 60deg,
    rgba(240, 165, 0, 0.02) 120deg,
    transparent 150deg,
    rgba(0, 102, 255, 0.03) 210deg,
    transparent 240deg,
    rgba(124, 58, 237, 0.02) 300deg,
    transparent 330deg,
    transparent 360deg
  );
  animation: light-rays 30s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-xl);
}

/* ── Pill Badge ──────────────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-full);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  margin-bottom: var(--space-2xl);
  font-size: var(--font-sm);
  color: var(--gold);
  font-weight: 500;
  animation: gentle-float 4s ease-in-out infinite;
}

.hero-badge .sparkle {
  animation: sparkle 2s ease-in-out infinite;
}

/* ── H1 ──────────────────────────────────────────────────────────────────── */
.hero h1 {
  font-size: var(--font-hero);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
  background: var(--gradient-blue-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
}

/* ── Subtitle ────────────────────────────────────────────────────────────── */
.hero-subtitle {
  font-size: var(--font-lg);
  color: var(--white-60);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
  font-weight: 300;
}

/* ── CTA Buttons ─────────────────────────────────────────────────────────── */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 2.5rem;
  background: var(--gradient-blue-purple);
  background-size: 200% 200%;
  border-radius: var(--radius-full);
  font-size: var(--font-base);
  font-weight: 700;
  color: var(--white);
  transition: all var(--transition-base);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.35),
              0 0 60px rgba(0, 102, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.5),
              0 0 80px rgba(0, 102, 255, 0.15);
  animation: gradient-shift 3s ease infinite;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--white-20);
  border-radius: var(--radius-full);
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--white-80);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white-05);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--white-40);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.05);
}

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

/* ── Social Proof ────────────────────────────────────────────────────────── */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img,
.avatar-group .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--deep-navy);
  margin-left: -10px;
  object-fit: cover;
  background: var(--glass-bg-strong);
}

.avatar-group .avatar:first-child {
  margin-left: 0;
}

.avatar-group .avatar-count {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-blue-purple);
  border: 2px solid var(--deep-navy);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xs);
  font-weight: 700;
}

.social-proof-text {
  text-align: left;
}

.social-proof-stars {
  color: var(--gold);
  font-size: var(--font-sm);
  margin-bottom: 2px;
}

.social-proof-label {
  font-size: var(--font-xs);
  color: var(--white-60);
}

/* ── Hero scroll indicator ───────────────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-content);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: bounce-subtle 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--white-20);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white-40);
  border-radius: var(--radius-full);
  animation: float-particle 2s ease-in-out infinite;
  opacity: 1 !important;
}

.scroll-indicator span {
  font-size: var(--font-xs);
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ==========================================================================
   11. SECTION DIVIDERS
   ========================================================================== */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.section-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
}

.section-divider-wave {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-divider-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-divider-diagonal {
  position: relative;
  height: 100px;
  overflow: hidden;
  background: transparent;
}

.section-divider-diagonal::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--section-dark);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

/* ==========================================================================
   12. HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works {
  background: var(--section-dark);
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--gradient-dark-radial);
  border-radius: 50%;
  pointer-events: none;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

/* ── Image Side ──────────────────────────────────────────────────────────── */
.how-it-works-image {
  position: relative;
}

.how-it-works-image img {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--electric-blue-20);
  box-shadow: var(--shadow-glow-blue);
  transition: all var(--transition-slow);
}

.how-it-works-image:hover img {
  box-shadow: 0 0 60px rgba(0, 102, 255, 0.4), 0 0 120px rgba(0, 102, 255, 0.1);
  border-color: var(--electric-blue-50);
}

.how-it-works-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--electric-blue-20) 0%, transparent 70%);
  border-radius: 50%;
  animation: gentle-float 6s ease-in-out infinite;
}

/* ── Content Side ────────────────────────────────────────────────────────── */
.how-it-works-content .section-title {
  font-size: var(--font-5xl);
}

.how-it-works-content .section-subtitle {
  margin-bottom: var(--space-2xl);
}

/* ── Step Cards ──────────────────────────────────────────────────────────── */
.step-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 255, 0.03) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.step-card:hover {
  border-color: var(--white-15);
  transform: translateX(6px);
  box-shadow: var(--shadow-glow-blue);
}

.step-card:nth-child(2):hover {
  box-shadow: var(--shadow-glow-purple);
}

.step-card:nth-child(3):hover {
  box-shadow: var(--shadow-glow-gold);
}

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

.step-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xl);
  position: relative;
}

.step-icon.blue {
  background: var(--electric-blue-10);
  box-shadow: 0 0 20px var(--electric-blue-20);
}

.step-icon.purple {
  background: rgba(124, 58, 237, 0.1);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.step-icon.gold {
  background: rgba(240, 165, 0, 0.1);
  box-shadow: 0 0 20px var(--gold-20);
}

.step-content h4 {
  font-size: var(--font-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.step-content p {
  font-size: var(--font-sm);
  color: var(--white-60);
  line-height: 1.6;
}

/* ── Stats Pill Bar ──────────────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-4xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 var(--space-xl);
  border-right: 1px solid var(--white-08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: var(--font-4xl);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--font-sm);
  color: var(--white-60);
  font-weight: 400;
}

/* ==========================================================================
   13. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonials-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.80);
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: var(--z-content);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  backdrop-filter: var(--glass-blur-md);
  -webkit-backdrop-filter: var(--glass-blur-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-blue-purple);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--white-20);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow-blue);
}

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

.testimonial-stars {
  color: var(--gold);
  font-size: var(--font-base);
  margin-bottom: var(--space-lg);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--font-base);
  color: var(--white-80);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: var(--font-4xl);
  color: var(--electric-blue-50);
  font-family: Georgia, serif;
  line-height: 0;
  display: block;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-author img,
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--electric-blue-20);
  object-fit: cover;
  background: var(--glass-bg-strong);
}

.testimonial-author-info h5 {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--white);
}

.testimonial-author-info p {
  font-size: var(--font-xs);
  color: var(--white-60);
}

/* ── Counter Stats ───────────────────────────────────────────────────────── */
.counter-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-4xl);
  margin-top: var(--space-4xl);
  flex-wrap: wrap;
}

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

.counter-stat .counter-number {
  font-size: var(--font-6xl);
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.counter-stat .counter-label {
  font-size: var(--font-sm);
  color: var(--white-60);
  font-weight: 400;
}

/* ==========================================================================
   14. PRICING SECTION
   ========================================================================== */
.pricing {
  background: var(--section-dark);
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

/* Glowing orbs */
.pricing::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: orb-drift 15s ease-in-out infinite;
  pointer-events: none;
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  animation: orb-drift 18s ease-in-out infinite reverse;
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: var(--z-content);
}

/* ── Toggle ──────────────────────────────────────────────────────────────── */
.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  position: relative;
  z-index: var(--z-content);
}

.pricing-toggle-label {
  font-size: var(--font-base);
  color: var(--white-60);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.pricing-toggle-label.active {
  color: var(--white);
}

.pricing-toggle {
  width: 56px;
  height: 30px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
}

.pricing-toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--gradient-blue-purple);
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.pricing-toggle.yearly::before {
  transform: translateX(26px);
}

.pricing-toggle:hover {
  border-color: var(--white-20);
}

.save-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: var(--gold-20);
  color: var(--gold);
  font-size: var(--font-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-50);
}

/* ── Pricing Cards Grid ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: var(--z-content);
  margin-bottom: var(--space-3xl);
}

/* ── Pricing Card Base ───────────────────────────────────────────────────── */
.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-3xl);
  padding: var(--space-2xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--white-15);
}

/* ── Popular Card (Middle) ───────────────────────────────────────────────── */
.pricing-card.popular {
  border-color: var(--gold-50);
  box-shadow: 0 0 60px rgba(240, 165, 0, 0.1), var(--shadow-card);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--electric-blue), var(--gold));
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 0 80px rgba(240, 165, 0, 0.15), var(--shadow-card-hover);
}

.popular-badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  padding: 0.3rem 0.85rem;
  background: var(--gold-20);
  color: var(--gold);
  font-size: var(--font-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-50);
}

/* ── Card Inner Elements ─────────────────────────────────────────────────── */
.pricing-card-header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--white-08);
}

.pricing-plan-name {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.pricing-plan-desc {
  font-size: var(--font-sm);
  color: var(--white-60);
}

.pricing-price {
  margin: var(--space-lg) 0;
}

.pricing-price .amount {
  font-size: var(--font-6xl);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.pricing-price .currency {
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--white-60);
  vertical-align: super;
}

.pricing-price .period {
  font-size: var(--font-base);
  color: var(--white-40);
  font-weight: 400;
}

/* Feature list */
.pricing-features {
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.6rem 0;
  font-size: var(--font-sm);
  color: var(--white-80);
}

.pricing-features li .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.pricing-features li .cross {
  color: var(--danger-muted);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.pricing-features li.disabled {
  color: var(--white-40);
}

/* CTA in pricing card */
.pricing-cta {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-base);
  font-weight: 700;
  text-align: center;
  transition: all var(--transition-base);
  display: block;
}

.pricing-cta.primary {
  background: var(--gradient-blue-purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.pricing-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.pricing-cta.outline {
  background: transparent;
  border: 1px solid var(--white-20);
  color: var(--white-80);
}

.pricing-cta.outline:hover {
  border-color: var(--white-40);
  color: var(--white);
  background: var(--white-05);
  transform: translateY(-2px);
}

.pricing-cta.gold {
  background: linear-gradient(135deg, var(--gold), #e09000);
  color: var(--darkest);
  box-shadow: 0 4px 20px rgba(240, 165, 0, 0.3);
}

.pricing-cta.gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 165, 0, 0.5);
}

/* ── Money-back Badge ────────────────────────────────────────────────────── */
.money-back-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  margin: 0 auto;
  max-width: fit-content;
  position: relative;
  z-index: var(--z-content);
}

.money-back-badge .shield-icon {
  font-size: var(--font-xl);
}

.money-back-badge span {
  font-size: var(--font-sm);
  color: var(--white-60);
  font-weight: 500;
}

/* ==========================================================================
   15. ABOUT SECTION
   ========================================================================== */
.about {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--deep-navy);
  overflow: hidden;
}

/* Grid pattern overlay */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--white-03) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: var(--z-content);
}

.about-content .section-title {
  font-size: var(--font-5xl);
}

.about-text {
  font-size: var(--font-base);
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

/* ── About Highlights ────────────────────────────────────────────────────── */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.about-highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--electric-blue-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xl);
}

.about-highlight h4 {
  font-size: var(--font-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.about-highlight p {
  font-size: var(--font-sm);
  color: var(--white-60);
  line-height: 1.6;
}

/* ── About Image ─────────────────────────────────────────────────────────── */
.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
}

.about-image:hover img {
  box-shadow: var(--shadow-glow-blue), var(--shadow-card-hover);
  border-color: var(--electric-blue-20);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--electric-blue-10) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: gentle-float 8s ease-in-out infinite;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: gentle-float 6s ease-in-out infinite reverse;
}

/* ==========================================================================
   16. FAQ SECTION
   ========================================================================== */
.faq {
  background: var(--section-dark);
  padding: var(--section-py) 0;
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--white-15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
  border-color: var(--electric-blue-20);
  box-shadow: 0 4px 30px rgba(0, 102, 255, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: var(--white-03);
}

.faq-question h4 {
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--white-95);
  flex: 1;
  padding-right: var(--space-lg);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-lg);
  color: var(--white-60);
  transition: all var(--transition-base);
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--electric-blue-10);
  border-color: var(--electric-blue-20);
  color: var(--electric-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  font-size: var(--font-sm);
  color: var(--white-60);
  line-height: 1.8;
}

/* ==========================================================================
   17. SUPPORT CTA SECTION
   ========================================================================== */
.support-cta {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--gradient-cta-bg);
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
  overflow: hidden;
}

.support-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.support-cta-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.support-cta-content .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.support-cta-content .section-title {
  font-size: var(--font-5xl);
  margin-bottom: var(--space-md);
}

.support-cta-content .section-subtitle {
  margin: 0 auto var(--space-2xl);
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
}

.support-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition-base);
}

.btn-email:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 2.5rem;
  background: var(--whatsapp-green);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.footer {
  background: var(--darkest);
  border-top: 1px solid var(--white-08);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-brand .footer-logo .logo-icon {
  font-size: var(--font-2xl);
}

.footer-brand .footer-logo .logo-name {
  font-size: var(--font-xl);
  font-weight: 800;
  color: var(--white);
}

.footer-brand .footer-desc {
  font-size: var(--font-sm);
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-base);
  color: var(--white-60);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--electric-blue-10);
  border-color: var(--electric-blue-20);
  color: var(--electric-blue);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.footer-column h4 {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-column ul li a {
  font-size: var(--font-sm);
  color: var(--white-60);
  transition: all var(--transition-fast);
  position: relative;
}

.footer-column ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-column ul li a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid var(--electric-blue);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer-column ul li a:hover::before {
  opacity: 1;
}

/* ── Footer Bottom ───────────────────────────────────────────────────────── */
.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--white-08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: var(--font-sm);
  color: var(--white-40);
}

.footer-legal {
  display: flex;
  gap: var(--space-xl);
}

.footer-legal a {
  font-size: var(--font-sm);
  color: var(--white-40);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--white-80);
}

/* ==========================================================================
   19. AUTH MODALS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 9, 18, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: var(--space-xl);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  max-width: 460px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-3xl);
  backdrop-filter: var(--glass-blur-xl);
  -webkit-backdrop-filter: var(--glass-blur-xl);
  padding: var(--space-3xl);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition-slow);
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal {
  animation: modal-enter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.modal-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-lg);
  color: var(--white-60);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--white-10);
  color: var(--white);
  border-color: var(--white-20);
}

.modal-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.modal-header .modal-icon {
  font-size: var(--font-4xl);
  margin-bottom: var(--space-md);
  display: block;
}

.modal-header h2 {
  font-size: var(--font-2xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.modal-header p {
  font-size: var(--font-sm);
  color: var(--white-60);
}

/* ── Form Elements ───────────────────────────────────────────────────────── */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--white-80);
}

.form-input {
  padding: 0.85rem var(--space-lg);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: var(--font-base);
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: var(--white-40);
}

.form-input:focus {
  border-color: var(--electric-blue-50);
  box-shadow: 0 0 0 3px var(--electric-blue-10), 0 0 20px var(--electric-blue-10);
  background: rgba(0, 0, 0, 0.4);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-sm);
  color: var(--white-60);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--electric-blue);
  cursor: pointer;
}

.form-link {
  font-size: var(--font-sm);
  color: var(--electric-blue);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.form-link:hover {
  color: #3388ff;
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-blue-purple);
  background-size: 200% 200%;
  border-radius: var(--radius-lg);
  font-size: var(--font-base);
  font-weight: 700;
  color: var(--white);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.btn-submit:hover::before {
  left: 100%;
}

/* ── Social Auth Divider ─────────────────────────────────────────────────── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: var(--space-md) 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--white-08);
}

.auth-divider span {
  font-size: var(--font-xs);
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-auth-buttons {
  display: flex;
  gap: var(--space-md);
}

.btn-social {
  flex: 1;
  padding: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--white-80);
  transition: all var(--transition-fast);
}

.btn-social:hover {
  background: var(--white-05);
  border-color: var(--white-20);
  color: var(--white);
}

.modal-footer {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: var(--font-sm);
  color: var(--white-60);
}

.modal-footer a {
  color: var(--electric-blue);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.modal-footer a:hover {
  color: #3388ff;
  text-decoration: underline;
}

/* ==========================================================================
   20. BUTTONS — SHARED / UTILITY
   ========================================================================== */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white-60);
  transition: all var(--transition-base);
}

.btn-icon:hover {
  background: var(--white-10);
  border-color: var(--white-20);
  color: var(--white);
  transform: translateY(-2px);
}

/* Gradient border utility */
.gradient-border {
  position: relative;
  background: var(--glass-bg);
  border-radius: var(--radius-2xl);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-blue-purple);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ==========================================================================
   21. LOADING & SKELETON STATES
   ========================================================================== */
.skeleton {
  background: linear-gradient(90deg, var(--glass-bg) 25%, var(--white-08) 50%, var(--glass-bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   22. BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue-purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xl);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

/* ==========================================================================
   23. RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --section-py: 5rem;
  }

  .section-title {
    font-size: var(--font-4xl);
  }

  .hero h1 {
    font-size: var(--font-5xl);
  }

  .how-it-works-grid {
    gap: var(--space-2xl);
  }

  .pricing-card.popular {
    transform: scale(1.02);
  }

  .pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* ==========================================================================
   24. RESPONSIVE — MOBILE (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
    --font-hero: 3rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Navbar mobile */
  .navbar-links {
    display: none;
  }

  .navbar-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero h1 {
    font-size: var(--font-4xl);
  }

  .hero-subtitle {
    font-size: var(--font-base);
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .social-proof {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .social-proof-text {
    text-align: center;
  }

  .scroll-indicator {
    display: none;
  }

  /* How it works */
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .how-it-works-image {
    order: -1;
  }

  .section-title {
    font-size: var(--font-3xl);
  }

  /* Stats bar */
  .stats-bar {
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-lg);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--white-08);
    padding: var(--space-md) 0;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .counter-stats {
    gap: var(--space-2xl);
    flex-direction: column;
  }

  .counter-stat .counter-number {
    font-size: var(--font-5xl);
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.popular {
    transform: scale(1);
    order: -1;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image {
    order: -1;
  }

  /* FAQ */
  .faq-question {
    padding: var(--space-md) var(--space-lg);
  }

  .faq-answer {
    padding: 0 var(--space-lg);
  }

  .faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-md);
  }

  /* Support CTA */
  .support-buttons {
    flex-direction: column;
  }

  .btn-email,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .support-cta-content .section-title {
    font-size: var(--font-3xl);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .footer-brand .footer-desc {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand .footer-logo {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-legal {
    justify-content: center;
  }

  /* Modal */
  .modal {
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-2xl);
    max-width: 100%;
  }

  .social-auth-buttons {
    flex-direction: column;
  }

  /* Pricing toggle */
  .pricing-toggle-wrapper {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}

/* ==========================================================================
   25. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
  :root {
    --font-hero: 2.5rem;
  }

  .hero h1 {
    font-size: var(--font-3xl);
  }

  .hero-badge {
    font-size: var(--font-xs);
    padding: 0.4rem 1rem;
  }

  .section-title {
    font-size: var(--font-2xl);
  }

  .step-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .pricing-card {
    padding: var(--space-xl);
  }

  .pricing-price .amount {
    font-size: var(--font-5xl);
  }

  .counter-stat .counter-number {
    font-size: var(--font-4xl);
  }

  .about-highlight {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .support-cta-content .section-title {
    font-size: var(--font-2xl);
  }

  .modal {
    padding: var(--space-xl);
  }

  .modal-header h2 {
    font-size: var(--font-xl);
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* ==========================================================================
   26. PREFERS REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}

/* ==========================================================================
   27. PRINT STYLES
   ========================================================================== */
@media print {
  .navbar,
  .cursor-glow,
  .particles-container,
  .hero-light-rays,
  .back-to-top,
  .modal-overlay,
  .scroll-indicator {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section-title,
  .hero h1 {
    -webkit-text-fill-color: black;
    color: black;
  }
}

/* ==========================================================================
   28. HIGH CONTRAST / FORCED COLORS
   ========================================================================== */
@media (forced-colors: active) {
  .btn-primary,
  .btn-get-started,
  .btn-submit,
  .pricing-cta.primary {
    border: 2px solid ButtonText;
  }

  .glass-bg,
  .step-card,
  .testimonial-card,
  .pricing-card,
  .faq-item {
    border: 1px solid ButtonText;
  }
}

/* ==========================================================================
   29. ADDITIONAL POLISH — INTERACTIVE STATES
   ========================================================================== */

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--electric-blue);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--electric-blue);
  outline-offset: 2px;
}

/* Active/pressed states */
.btn-primary:active,
.btn-get-started:active,
.btn-submit:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary:active,
.btn-login:active {
  transform: translateY(0) scale(0.98);
}

/* Smooth image loading */
img {
  opacity: 1;
  transition: opacity var(--transition-slow);
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}

/* Tooltip utility */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.4rem 0.8rem;
  background: var(--darkest);
  color: var(--white-80);
  font-size: var(--font-xs);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
  border: 1px solid var(--glass-border);
  z-index: 100;
}

[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   30. GLASS CARD UTILITY
   ========================================================================== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.glass-card:hover {
  border-color: var(--white-15);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.glass-card-strong {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-2xl);
  backdrop-filter: var(--glass-blur-md);
  -webkit-backdrop-filter: var(--glass-blur-md);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.glass-card-strong:hover {
  border-color: var(--white-20);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

/* ==========================================================================
   31. NOTIFICATION / TOAST (UTILITY)
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 2rem;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-full);
  backdrop-filter: var(--glass-blur-xl);
  -webkit-backdrop-filter: var(--glass-blur-xl);
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--white);
  z-index: var(--z-modal);
  opacity: 0;
  transition: all var(--transition-spring);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  border-color: rgba(34, 197, 94, 0.3);
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   32. WAVE DIVIDERS (SVG via CSS)
   ========================================================================== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.wave-divider.top {
  margin-bottom: -1px;
}

.wave-divider.bottom {
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: calc(100% + 2px);
  height: 60px;
  position: relative;
  left: -1px;
}

.wave-divider svg path {
  fill: var(--section-dark);
}

.wave-divider.dark-to-navy svg path {
  fill: var(--deep-navy);
}

/* Diagonal divider via CSS */
.diagonal-divider {
  width: 100%;
  height: 80px;
  position: relative;
  overflow: hidden;
}

.diagonal-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--section-dark);
  transform: skewY(-2deg);
  transform-origin: bottom left;
}

/* ==========================================================================
   33. HTML-CSS COMPATIBILITY LAYER
   Maps actual HTML class names to CSS styles
   ========================================================================== */

/* ── Reveal: JS adds 'revealed' class, not 'active' ─────────────────────── */
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ── Navbar: HTML uses .navbar-container, .nav-links, .nav-actions ──────── */
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  list-style: none;
}

.nav-links li {
  list-style: none;
}

.nav-link {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--white-80);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-blue-purple);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* ── Logo: HTML uses .logo-title, .logo-subtitle ────────────────────────── */
.logo-title {
  font-size: var(--font-xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: var(--font-xs);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.navbar-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* ── Generic btn styles used in HTML ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-family);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn.btn-ghost {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--white-20);
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  color: var(--white-80);
  background: transparent;
}

.btn.btn-ghost:hover {
  border-color: var(--white-40);
  color: var(--white);
  background: var(--white-05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.btn.btn-primary {
  padding: 0.75rem 1.75rem;
  background: var(--gradient-blue-purple);
  background-size: 200% 200%;
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.btn.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.45);
}

.btn.btn-primary:hover::before {
  left: 100%;
}

.btn.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--font-base);
  font-weight: 700;
}

.btn.btn-block {
  width: 100%;
}

.btn-arrow, .btn-play {
  display: inline-flex;
  align-items: center;
}

/* ── Hero Section: HTML uses .hero-section ───────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background-image: url('Pics/ChatGPT%20Image%20May%2027,%202026,%2010_45_26%20PM.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.hero-section .hero-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-xl);
}

.hero-section .hero-title {
  font-size: var(--font-hero);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.03em;
}

.hero-section .hero-title .gradient-text {
  background: var(--gradient-blue-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
}

/* ── Section headers ─────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

/* ── How It Works: HTML uses .how-it-works-section ───────────────────────── */
.how-it-works-section {
  background: var(--section-dark);
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--gradient-dark-radial);
  border-radius: 50%;
  pointer-events: none;
}

.how-it-works-section .how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.how-it-works-section .how-it-works-image {
  position: relative;
}

.image-glow-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--electric-blue-20);
  box-shadow: var(--shadow-glow-blue);
  transition: all var(--transition-slow);
}

.image-glow-wrapper:hover {
  box-shadow: 0 0 60px rgba(0, 102, 255, 0.4), 0 0 120px rgba(0, 102, 255, 0.1);
  border-color: var(--electric-blue-50);
}

.image-glow-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Step cards in how-it-works */
.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-blue-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xs);
  font-weight: 800;
  color: var(--white);
}

.step-title {
  font-size: var(--font-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.step-description {
  font-size: var(--font-sm);
  color: var(--white-60);
  line-height: 1.6;
}

/* Stats bar items */
.stat-icon {
  font-size: var(--font-xl);
  margin-right: var(--space-sm);
}

.stat-text {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--white-80);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

/* ── Testimonials: HTML uses .testimonials-section ───────────────────────── */
.testimonials-section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
  background-image: url('Pics/ChatGPT%20Image%20May%2027,%202026,%2011_11_38%20PM.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials-section .testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonials-section .testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.80);
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: var(--z-content);
}

.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* Testimonial quote text */
.testimonial-quote {
  font-size: var(--font-base);
  color: var(--white-80);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-style: italic;
  border: none;
  padding: 0;
  margin-top: 0;
}

.testimonial-name {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--white);
}

.testimonial-role {
  font-size: var(--font-xs);
  color: var(--white-60);
  display: block;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Counter elements */
.counter-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.counter-icon {
  font-size: var(--font-2xl);
}

.counter-number {
  font-size: var(--font-5xl);
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.counter-suffix {
  font-size: var(--font-5xl);
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.counter-label {
  font-size: var(--font-sm);
  color: var(--white-60);
  font-weight: 400;
}

.counter-divider {
  color: var(--white-20);
  font-size: var(--font-2xl);
  align-self: center;
}

/* ── Pricing: HTML uses .pricing-section ─────────────────────────────────── */
.pricing-section {
  background: var(--section-dark);
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: orb-drift 15s ease-in-out infinite;
  pointer-events: none;
}

.pricing-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  animation: orb-drift 18s ease-in-out infinite reverse;
  pointer-events: none;
}

/* Pricing toggle wrapper */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: var(--z-content);
}

.toggle-label {
  font-size: var(--font-base);
  color: var(--white-60);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.toggle-switch {
  width: 56px;
  height: 30px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--gradient-blue-purple);
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.toggle-switch.active .toggle-thumb {
  transform: translateX(26px);
}

.toggle-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: var(--gold-20);
  color: var(--gold);
  font-size: var(--font-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-50);
}

/* Pricing card additional inner elements */
.pricing-tier {
  font-size: var(--font-xs);
  font-weight: 700;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xs);
}

.pricing-name {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.pricing-price {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--white-08);
}

.price-currency {
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--white-60);
  vertical-align: super;
}

.price-amount {
  font-size: var(--font-6xl);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  transition: all var(--transition-base);
}

.price-amount.price-changing {
  opacity: 0;
  transform: translateY(-10px);
}

.price-period {
  font-size: var(--font-base);
  color: var(--white-40);
  font-weight: 400;
}

.feature-included, .feature-excluded {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.5rem 0;
  font-size: var(--font-sm);
}

.feature-included {
  color: var(--white-80);
}

.feature-excluded {
  color: var(--white-40);
}

.feature-check, .feature-x {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.pricing-guarantee {
  text-align: center;
  font-size: var(--font-sm);
  color: var(--white-60);
  margin-top: var(--space-2xl);
  position: relative;
  z-index: var(--z-content);
}

/* ── About: HTML uses .about-section ─────────────────────────────────────── */
.about-section {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--deep-navy);
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--white-03) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}

.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: var(--z-content);
}

.about-section .about-text p {
  font-size: var(--font-base);
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about-section .about-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.about-section .highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--font-base);
  color: var(--white-80);
}

.about-section .highlight-icon {
  font-size: var(--font-xl);
  flex-shrink: 0;
}

.about-section .about-image {
  position: relative;
}

/* ── FAQ: HTML uses .faq-section ─────────────────────────────────────────── */
.faq-section {
  background: var(--section-dark);
  padding: var(--section-py) 0;
  position: relative;
}

.faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-section .faq-question span {
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--white-95);
  flex: 1;
  padding-right: var(--space-lg);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--white-60);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--electric-blue);
}

/* ── Support CTA: HTML uses .support-cta-section ─────────────────────────── */
.support-cta-section {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--gradient-cta-bg);
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
  overflow: hidden;
}

.support-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.support-cta-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.support-cta-title {
  font-size: var(--font-5xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.support-cta-subtitle {
  font-size: var(--font-lg);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.support-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.support-cta-buttons .btn-icon {
  display: inline;
  width: auto;
  height: auto;
  background: none;
  border: none;
}

/* WhatsApp button styling */
#supportWhatsAppBtn {
  background: var(--whatsapp-green) !important;
  border-color: var(--whatsapp-green) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

#supportWhatsAppBtn:hover {
  background: #20bd5a !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* ── Footer extra styles ─────────────────────────────────────────────────── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-tagline {
  font-size: var(--font-sm);
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--electric-blue-10);
  border-color: var(--electric-blue-20);
  color: var(--electric-blue);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.footer-col h4,
.footer-heading {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links li a {
  font-size: var(--font-sm);
  color: var(--white-60);
  transition: all var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-made-with {
  font-size: var(--font-sm);
  color: var(--white-40);
}

/* ── Modal card vs .modal ────────────────────────────────────────────────── */
.modal-card {
  width: 100%;
  max-width: 460px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-3xl);
  backdrop-filter: var(--glass-blur-xl);
  -webkit-backdrop-filter: var(--glass-blur-xl);
  padding: var(--space-3xl);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition-slow);
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-card {
  animation: modal-enter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.modal-logo {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.modal-title {
  font-size: var(--font-2xl);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.modal-subtitle {
  font-size: var(--font-sm);
  color: var(--white-60);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.modal-form .form-label {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--white-80);
  margin-bottom: var(--space-xs);
  display: block;
}

.modal-form .form-input {
  width: 100%;
  padding: 0.85rem var(--space-lg);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: var(--font-base);
  transition: all var(--transition-fast);
}

.modal-form .form-input::placeholder {
  color: var(--white-40);
}

.modal-form .form-input:focus {
  border-color: var(--electric-blue-50);
  box-shadow: 0 0 0 3px var(--electric-blue-10), 0 0 20px var(--electric-blue-10);
  background: rgba(0, 0, 0, 0.4);
}

.forgot-password {
  font-size: var(--font-sm);
  color: var(--electric-blue);
  font-weight: 500;
  text-align: right;
  display: block;
  margin-top: calc(-1 * var(--space-sm));
}

.forgot-password:hover {
  color: #3388ff;
  text-decoration: underline;
}

.modal-switch {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: var(--font-sm);
  color: var(--white-60);
}

.modal-switch a {
  color: var(--electric-blue);
  font-weight: 600;
}

.modal-switch a:hover {
  color: #3388ff;
  text-decoration: underline;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: var(--space-sm) 0;
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--white-08);
}

.modal-divider span {
  font-size: var(--font-xs);
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem var(--space-lg);
  background: var(--white);
  color: #333;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-google:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-fine-print {
  text-align: center;
  font-size: var(--font-xs);
  color: var(--white-40);
  margin-top: var(--space-lg);
}

/* Stars in testimonials and hero */
.stars {
  color: var(--gold);
  font-size: var(--font-base);
  margin-bottom: 4px;
  letter-spacing: 2px;
}

/* ── Mobile nav links as dropdown ────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: var(--glass-blur-xl);
    -webkit-backdrop-filter: var(--glass-blur-xl);
    border-bottom: 1px solid var(--white-08);
    padding: var(--space-xl);
    flex-direction: column;
    gap: 0;
    animation: slideDown 0.3s ease forwards;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .nav-link {
    display: block;
    padding: var(--space-md) 0;
    font-size: var(--font-lg);
    border-bottom: 1px solid var(--white-05);
  }

  .nav-links .nav-link::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero mobile */
  .hero-section .hero-title {
    font-size: var(--font-4xl);
  }

  .hero-section .hero-subtitle {
    font-size: var(--font-base);
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-cta .btn {
    width: 100%;
  }

  .social-proof {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .social-proof-text {
    text-align: center;
  }

  /* Sections */
  .how-it-works-section .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .pricing-section .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-section .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .counter-stats {
    gap: var(--space-xl);
  }

  .counter-divider {
    display: none;
  }

  .support-cta-buttons {
    flex-direction: column;
  }

  .support-cta-title {
    font-size: var(--font-3xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .modal-card {
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-2xl);
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section .hero-title {
    font-size: var(--font-3xl);
  }

  .support-cta-title {
    font-size: var(--font-2xl);
  }

  .counter-number {
    font-size: var(--font-4xl);
  }

  .counter-suffix {
    font-size: var(--font-4xl);
  }

  .price-amount {
    font-size: var(--font-5xl);
  }
}

/* ==========================================================================
   34. GREEN HERO BADGE
   ========================================================================== */
.hero-badge-green {
  background: rgba(34, 197, 94, 0.15) !important;
  border: 1px solid rgba(34, 197, 94, 0.5) !important;
  color: #22c55e !important;
  font-weight: 700;
}

/* ==========================================================================
   35. MODAL — OVERFLOW / SIZE FIX + AUTH TABS + PHONE INPUT
   ========================================================================== */

/* Overlay scrolls vertically so modal never clips off screen */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

/* Card: max-height prevents it from going off screen */
.modal-card {
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: rgba(12, 17, 35, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 1.6rem 1.8rem;
  position: relative;
  margin: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
  animation: modal-enter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
}

.modal-card::-webkit-scrollbar { width: 4px; }
.modal-card::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

/* Compact form spacing */
.modal-logo { text-align: center; margin-bottom: 0.6rem; }
.modal-title { font-size: 1.35rem; font-weight: 800; color: #fff; text-align: center; margin-bottom: 0.25rem; }
.modal-subtitle { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-align: center; margin-bottom: 0.75rem; line-height: 1.4; }
.modal-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.28rem; }
.modal-form .form-label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.modal-form .form-input {
  width: 100%;
  padding: 0.6rem 0.9rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-family);
  box-sizing: border-box;
}
.modal-form .form-input::placeholder { color: rgba(255,255,255,0.3); }
.modal-form .form-input:focus {
  border-color: rgba(0,102,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.12);
  outline: none;
}

/* Divider */
.modal-divider { display: flex; align-items: center; gap: 0.6rem; margin: 0.1rem 0; }
.modal-divider::before, .modal-divider::after { content:''; flex:1; height:1px; background: rgba(255,255,255,0.07); }
.modal-divider span { font-size: 0.7rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; }

/* Google button */
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.6rem 1rem; background: #fff; color: #333;
  border: none; border-radius: 10px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; width: 100%; font-family: var(--font-family);
}
.btn-google:hover { background: #f2f2f2; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* Switch + fine print */
.modal-switch { text-align: center; margin-top: 0.65rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.modal-switch a { color: #60a5fa; font-weight: 600; }
.modal-switch a:hover { color: #93c5fd; text-decoration: underline; }
.modal-fine-print { text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.28); margin-top: 0.4rem; }

/* Forgot password */
.forgot-password {
  font-size: 0.78rem; color: #60a5fa; font-weight: 500;
  text-align: right; display: block; margin-top: -0.2rem;
}
.forgot-password:hover { color: #93c5fd; text-decoration: underline; }

/* Close button */
.modal-close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55); font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ── Auth Tabs ───────────────────────────────────────────────────────────── */
.auth-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  padding: 3px;
  margin-bottom: 0.8rem;
}

.auth-tab {
  flex: 1;
  padding: 0.48rem 0.5rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-family);
}

.auth-tab.active {
  background: linear-gradient(135deg, #0066ff, #7c3aed);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 102, 255, 0.3);
}

.auth-tab:not(.active):hover {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

/* ── Phone Input ─────────────────────────────────────────────────────────── */
.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.phone-input-wrapper:focus-within {
  border-color: rgba(0,102,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.12);
}

.phone-prefix {
  padding: 0.6rem 0.8rem;
  background: rgba(0,102,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.07);
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}

.phone-input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
  width: 100%;
}

.phone-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* ── Very small screens ─────────────────────────────────────────────────── */
@media (max-height: 680px) {
  .modal-card { padding: 1.1rem 1.4rem; }
  .modal-logo { margin-bottom: 0.35rem; }
  .modal-logo svg { width: 28px !important; height: 28px !important; }
  .modal-title { font-size: 1.1rem; }
  .modal-subtitle { display: none; }
  .modal-form { gap: 0.55rem; }
  .modal-form .form-input { padding: 0.48rem 0.8rem; }
  .auth-tabs { margin-bottom: 0.55rem; }
}

@media (max-width: 480px) {
  .modal-card {
    padding: 1.2rem 1.2rem;
    border-radius: 16px;
    max-width: 100%;
  }
}

/* ==========================================================================
   END OF STYLES
   ========================================================================== */
