/* ==========================================================================
   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');

/* ── Custom Brand Fonts ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Canva Sans';
  src: url('fonts/canva-sans-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


/* ==========================================================================
   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 (Apple & Linear Pro Style)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale.active,
.reveal-scale.revealed {
  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: linear-gradient(135deg, #ffffff 0%, #ffd700 45%, #f0a500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 100% 100%;
  filter: drop-shadow(0 2px 16px rgba(240, 165, 0, 0.4));
}

/* ── 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;
  perspective: 1000px;
}

.how-it-works-image img {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(240, 165, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 102, 255, 0.2);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease, border-color 0.8s ease;
  transform: rotateY(-3deg) rotateX(2deg);
}

.how-it-works-image:hover img {
  transform: rotateY(0deg) rotateX(0deg) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(240, 165, 0, 0.35);
  border-color: var(--gold);
}

.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 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  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(240, 165, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card.active-step,
.step-card:hover {
  border-color: rgba(240, 165, 0, 0.6);
  background: linear-gradient(135deg, rgba(240, 165, 0, 0.07), rgba(0, 102, 255, 0.04));
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(240, 165, 0, 0.2);
}

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

.step-card.active-step .step-number,
.step-card:hover .step-number {
  background: var(--gold);
  color: var(--darkest);
  box-shadow: 0 0 15px var(--gold);
}

.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(2, 315px);
  justify-content: center;
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: var(--z-content);
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Pricing Card Base ───────────────────────────────────────────────────── */
.pricing-card {
  background: rgba(14, 22, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 1.6rem 1.45rem 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.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/hero-bg.webp');
  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;
}

/* ═══════════════════════════════════════════════════════════════
   Section 2: How It Works (Centered SaaS Video Showcase)
   ═══════════════════════════════════════════════════════════════ */
.how-it-works-video-container {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  scroll-margin-top: 110px;
}

.saas-video-glow {
  position: relative;
  border-radius: var(--radius-2xl, 24px);
  overflow: hidden;
  border: 1px solid rgba(0, 102, 255, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 102, 255, 0.25), 0 0 100px rgba(240, 165, 0, 0.15);
  background: #0d1117;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.saas-video-glow:hover {
  border-color: rgba(240, 165, 0, 0.7);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 70px rgba(0, 102, 255, 0.4), 0 0 120px rgba(240, 165, 0, 0.3);
  transform: translateY(-3px);
}

.how-it-works-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: inherit;
}

/* Floating Bottom Action Buttons (Play from Start & Audio Toggle) */
.video-restart-btn,
.video-audio-toggle-btn {
  position: absolute;
  bottom: 20px;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(22, 27, 38, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease;
}

.video-restart-btn {
  left: 20px;
}

.video-audio-toggle-btn {
  right: 20px;
}

.video-restart-btn:hover,
.video-audio-toggle-btn:hover {
  background: rgba(30, 36, 50, 0.75);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-audio-toggle-btn.is-unmuted {
  border-color: rgba(46, 213, 115, 0.6);
  color: #2ed573;
  background: rgba(22, 45, 35, 0.55);
  box-shadow: 0 0 20px rgba(46, 213, 115, 0.25);
}

.video-audio-toggle-btn.is-unmuted:hover {
  background: rgba(46, 213, 115, 0.25);
  border-color: #2ed573;
  color: #ffffff;
}

/* Auto-hide controls when video is playing smoothly */
.saas-video-glow.controls-hidden .video-restart-btn,
.saas-video-glow.controls-hidden .video-audio-toggle-btn,
.saas-video-glow.controls-hidden .saas-video-center-btn {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(8px);
}

.saas-video-glow:hover .video-restart-btn,
.saas-video-glow:hover .video-audio-toggle-btn {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0);
}

/* Center Play/Pause Floating Button (Sleek Frosted Gray with Low Opacity) */
.saas-video-glow {
  cursor: pointer;
}

.saas-video-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 12;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(22, 27, 38, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
  opacity: 0;
  pointer-events: none;
}

.saas-video-center-btn .center-icon-play {
  margin-left: 3px;
  width: 26px;
  height: 26px;
}

.saas-video-center-btn .center-icon-pause {
  width: 26px;
  height: 26px;
}

/* When paused, the center button is visible with subtle clean low opacity */
.saas-video-glow.is-paused .saas-video-center-btn {
  opacity: 0.75;
  pointer-events: auto;
}

/* When hovering over the video, reveal center button smoothly */
.saas-video-glow:hover .saas-video-center-btn {
  opacity: 0.85;
  pointer-events: auto;
}

.saas-video-center-btn:hover {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1.08) !important;
  background: rgba(30, 36, 50, 0.75);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 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 (Kalakar Tall Aspect Ratio) ─────── */
.pricing-section {
  background: var(--section-dark);
  position: relative;
  padding: 3.5rem 0 3rem 0;
  overflow: hidden;
}

.pricing-section .section-header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.pricing-section .section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  line-height: 1.2;
  margin-top: 4px;
}

.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 Grid: Two tall, slender vertical cards centered side-by-side */
.pricing-grid.two-columns,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 315px);
  justify-content: center;
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: var(--z-content);
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

/* Tall Sleek Card */
.pricing-card {
  background: rgba(14, 22, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 1.6rem 1.45rem 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55);
}

/* Recommended Early Access Card (Kalakar Glowing Pill Border) */
.pricing-card.recommended-card {
  border: 1px solid rgba(56, 182, 255, 0.45);
  box-shadow: 0 0 35px rgba(0, 102, 255, 0.1), 0 12px 35px rgba(0, 0, 0, 0.4);
}

.pricing-card.recommended-card:hover {
  border-color: #38b6ff;
  box-shadow: 0 0 50px rgba(56, 182, 255, 0.22), 0 16px 45px rgba(0, 0, 0, 0.55);
}

/* Top Icon & Badge Row */
.pricing-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.pricing-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-80);
}

.pricing-card-icon.highlight-icon {
  background: rgba(56, 182, 255, 0.12);
  border-color: rgba(56, 182, 255, 0.3);
  color: #38b6ff;
}

.popular-badge {
  position: static;
  padding: 0.25rem 0.75rem;
  background: rgba(56, 182, 255, 0.15);
  color: #60a5fa;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 255, 0.35);
}

/* Coming Soon Ribbon */
.pricing-coming-soon-ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  background: var(--gold);
  color: var(--darkest);
  font-size: 0.58rem;
  font-weight: 800;
  padding: 3px 30px;
  transform: rotate(45deg);
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* Card Name */
.pricing-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

/* Price Row */
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0.2rem 0 0 0;
}

.price-currency {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.price-billing-cycle {
  font-size: 0.76rem;
  color: var(--white-40);
  margin-top: 2px;
  margin-bottom: 1.1rem;
}

/* Kalakar Pill CTA Button */
.pricing-card-btn {
  width: 100%;
  padding: 0.72rem 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 1.25rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.pricing-card-btn.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white-90);
}

.pricing-card-btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.pricing-card-btn.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 1px solid rgba(56, 182, 255, 0.5);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
}

.pricing-card-btn.btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.55);
  transform: translateY(-1px);
}

/* Features Wrap & Divider */
.pricing-features-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  flex: 1;
}

.pricing-features-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white-90);
  margin-bottom: 0.7rem;
}

.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--white-80);
}

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

.kalakar-check-icon {
  flex-shrink: 0;
  color: #34d399; /* Crisp emerald green like Kalakar */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.kalakar-cross-icon {
  flex-shrink: 0;
  color: var(--white-40);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pricing-guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: var(--white-50);
  margin-top: 1.25rem;
  margin-bottom: 0;
  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);
}

.social-link#socialTikTok:hover {
  background: rgba(255, 0, 80, 0.12);
  border-color: rgba(255, 0, 80, 0.4);
  color: #fe2c55;
  box-shadow: 0 4px 15px rgba(254, 44, 85, 0.35);
}

.social-link#socialInstagram:hover {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.4);
  color: #e1306c;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.35);
}

.social-link#socialFacebook:hover {
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.4);
  color: #1877f2;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.35);
}

.social-link#socialYouTube:hover {
  background: rgba(255, 0, 0, 0.12);
  border-color: rgba(255, 0, 0, 0.4);
  color: #ff0000;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.35);
}

.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-country-select {
  padding: 0.6rem 0.65rem;
  background: rgba(0, 102, 255, 0.12);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #60a5fa;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  outline: none;
  cursor: pointer;
  border-radius: 9px 0 0 9px;
  font-family: inherit;
}

.phone-country-select option {
  background: #0f172a;
  color: #ffffff;
  font-size: 0.82rem;
}

.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%;
  }
}

/* ── Premium Brand Logos ────────────────────────────────────────────────── */
.brand-logo-navbar {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5)) drop-shadow(0 2px 12px rgba(56, 182, 255, 0.4));
}
.brand-logo-navbar:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6)) drop-shadow(0 4px 20px rgba(56, 182, 255, 0.6));
}

.brand-logo-footer {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: opacity(0.85) drop-shadow(0 2px 8px rgba(56, 182, 255, 0.1));
  transition: filter 0.2s ease;
}
.brand-logo-footer:hover {
  filter: opacity(1) drop-shadow(0 2px 12px rgba(56, 182, 255, 0.25));
}

.brand-logo-modal {
  height: 60px;
  width: 60px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(56, 182, 255, 0.25));
}

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

/* ── Pricing Coming Soon Ribbon ─────────────────────────────────────────── */
.pricing-coming-soon-ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--gold);
  color: var(--darkest);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 30px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* ── 2 Columns Pricing Grid Override (Kalakar Sizing) ─────────────────── */
@media (min-width: 768px) {
  .pricing-grid.two-columns,
  .pricing-grid {
    grid-template-columns: repeat(2, 315px);
    justify-content: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
    align-items: stretch;
  }
}

/* ── Core Features Section (Roman Urdu) ────────────────────────────────── */
.core-features-section {
  padding: var(--space-4xl) 0;
  background: var(--section-dark);
  position: relative;
  border-bottom: 1px solid var(--glass-border);
}

.features-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  text-align: left;
}

.feature-detail-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  will-change: transform, opacity;
}

.features-detailed-grid.is-inview .feature-detail-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.features-detailed-grid.is-inview .feature-detail-card:nth-child(1) { transition-delay: 0.05s; }
.features-detailed-grid.is-inview .feature-detail-card:nth-child(2) { transition-delay: 0.15s; }
.features-detailed-grid.is-inview .feature-detail-card:nth-child(3) { transition-delay: 0.25s; }
.features-detailed-grid.is-inview .feature-detail-card:nth-child(4) { transition-delay: 0.35s; }

.feature-detail-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-2xl);
  background: radial-gradient(450px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(240, 165, 0, 0.14), transparent 45%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-detail-card:hover::after {
  opacity: 1;
}

.features-detailed-grid.is-inview .feature-detail-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
}

.feature-detail-card.highlight-card {
  border-color: var(--gold-50);
  background: radial-gradient(circle at top right, rgba(240, 165, 0, 0.04), rgba(255, 255, 255, 0.01));
}

.features-detailed-grid.is-inview .feature-detail-card.highlight-card:hover {
  border-color: var(--gold);
}

.feature-badge-new {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--darkest);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.feature-detail-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.feature-detail-card p {
  font-size: 0.9rem;
  color: var(--white-80);
  line-height: 1.6;
  margin: 0;
}

/* ── State of the Art: False Teaching Protection (Kalakar Clean Centered Card) ── */
.theology-guard-section {
  padding: 3.5rem 0 3rem 0;
  position: relative;
  overflow: hidden;
  background: var(--section-dark);
}

.theology-guard-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(14, 22, 32, 0.78);
  border: 1px solid rgba(240, 165, 0, 0.28);
  border-radius: 28px;
  padding: 3.2rem 3rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4), 0 0 35px rgba(240, 165, 0, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.theology-guard-card:hover {
  border-color: rgba(240, 165, 0, 0.5);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55), 0 0 55px rgba(240, 165, 0, 0.15);
  transform: translateY(-3px);
}

.theology-guard-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.16) 0%, rgba(56, 182, 255, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

.theology-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 1.35rem;
  letter-spacing: -0.5px;
}

.theology-line-top {
  display: block;
}

.theology-line-bottom {
  display: block;
}

.gradient-gold {
  background: linear-gradient(135deg, #fce08b 0%, #f0a500 60%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.theology-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
}

.theology-description strong {
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.theology-description strong.highlight-term {
  color: #fce08b;
  text-shadow: 0 0 12px rgba(240, 165, 0, 0.3);
}

@media (max-width: 768px) {
  .theology-guard-card {
    padding: 2.2rem 1.5rem;
    border-radius: 22px;
  }
  .theology-description {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

/* Style for feature notices */
.feature-notice {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 5px;
  list-style-type: none;
}

/* ==========================================================================
   TRIAL FUNNEL SECTION (Embedded Pre-Signup Trial Flow)
   ========================================================================== */
.trial-funnel-section {
  position: relative;
  padding: 80px 0;
  background: var(--section-dark);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  overflow: hidden;
}

.trial-container-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.trial-stage-panel {
  display: none;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(240, 165, 0, 0.25);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(240, 165, 0, 0.12);
  animation: trialFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.trial-stage-panel:hover {
  border-color: rgba(240, 165, 0, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 45px rgba(240, 165, 0, 0.18);
}

.trial-stage-panel.active {
  display: block;
}

@keyframes trialFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Tabs Header */
.trial-tabs-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--white-10);
}

.trial-tab-btn {
  flex: 1 1 30%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--white-60);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.trial-tab-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.trial-tab-btn.active {
  background: linear-gradient(135deg, var(--electric-blue), #0044cc);
  color: var(--white);
  box-shadow: 0 4px 15px var(--electric-blue-50);
}

/* Inputs & Form Controls */
.trial-input-group {
  margin-bottom: 20px;
}

.trial-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white-95);
  margin-bottom: 8px;
}

.trial-text-input {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--white-15);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.trial-text-input:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px var(--electric-blue-20);
}

.trial-or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 22px 0;
  color: var(--white-40);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.trial-or-divider::before, .trial-or-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--white-10);
}

.trial-or-divider span {
  padding: 0 16px;
}

/* File Dropzone */
.trial-dropzone {
  border: 2px dashed var(--white-20);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.trial-dropzone:hover, .trial-dropzone.dragover {
  border-color: var(--electric-blue);
  background: rgba(0, 102, 255, 0.08);
}

.trial-dropzone-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/* Upload Progress Bar */
.trial-upload-progress {
  display: none;
  margin-top: 16px;
}

.trial-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.trial-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--electric-blue), var(--gold));
  transition: width 0.2s ease;
}

.trial-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--white-60);
}

/* Analyzing Spinner Box */
.trial-spinner-box {
  text-align: center;
  padding: 40px 16px;
}

.trial-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid var(--white-15);
  border-top-color: var(--electric-blue);
  border-radius: 50%;
  animation: trialSpin 0.9s linear infinite;
  margin: 0 auto 24px;
}

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

/* Candidate Reel Grid (Single column on mobile <640px, 2 columns >=640px) */
.trial-candidates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .trial-candidates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trial-candidate-card {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--white-15);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.trial-candidate-card:hover {
  border-color: rgba(240, 165, 0, 0.6);
  background: rgba(240, 165, 0, 0.04);
  transform: translateY(-2px);
}

.trial-candidate-card.selected {
  border-color: var(--gold);
  background: rgba(240, 165, 0, 0.12);
  box-shadow: 0 8px 25px rgba(240, 165, 0, 0.35);
}

.trial-thumb-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.trial-candidate-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.trial-candidate-card:hover .trial-candidate-thumb {
  transform: scale(1.03);
}

/* Checkbox Badge Overlay */
.trial-card-checkbox {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  z-index: 6;
}

.trial-checkbox-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: transparent;
  font-weight: 900;
  font-size: 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.trial-candidate-card:hover .trial-checkbox-custom {
  border-color: var(--gold);
}

.trial-candidate-card.selected .trial-checkbox-custom {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  border-color: var(--gold);
  color: #000000;
  box-shadow: 0 0 14px rgba(240, 165, 0, 0.8);
  transform: scale(1.1);
}

/* Cloud AI Duration Badge */
.trial-duration-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(10, 15, 30, 0.85);
  border: 1px solid rgba(240, 165, 0, 0.5);
  color: #ffca28;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 6;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.trial-candidate-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.35;
}

.trial-candidate-desc {
  font-size: 0.86rem;
  color: var(--white-60);
  line-height: 1.45;
}

/* Card Footer & Preview Link */
.trial-candidate-footer {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trial-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #60a5fa;
  text-decoration: none;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.trial-preview-btn:hover {
  background: rgba(0, 102, 255, 0.35);
  color: #ffffff;
  border-color: #93c5fd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.trial-timestamp-tag {
  font-size: 0.82rem;
  color: var(--white-60);
  font-weight: 500;
}

/* OTP Box */
.trial-otp-box {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

/* Alert Box */
.trial-alert-box {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  display: none;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

/* ── Luxury User Profile Avatar & Navbar State ────────────────────────── */
.nav-user-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 8px 4px 5px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.nav-user-container:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 165, 0, 0.4);
}

.user-avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0a500 0%, #d48800 100%);
  color: #0d1117;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f0a500;
  box-shadow: 0 0 12px rgba(240, 165, 0, 0.4);
  overflow: hidden;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.user-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-display-name {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
  max-width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-nav-logout {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-nav-logout:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #ffffff;
  transform: translateY(-1px);
}

.waitlist-joined-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(240, 165, 0, 0.15), rgba(212, 136, 0, 0.2));
  border: 1px solid rgba(240, 165, 0, 0.45);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(240, 165, 0, 0.2);
  letter-spacing: 0.3px;
}

/* ==========================================================================
   20. AUTO-GENERATE ACCURATE CAPTIONS SECTION (Multilingual Showcase)
   ========================================================================== */
.captions-showcase-section {
  position: relative;
  padding: var(--space-5xl) 0;
  background: radial-gradient(circle at 50% 30%, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
  overflow: hidden;
}

.captions-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-3xl);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Left Card: Language Selector ────────────────────────────────────────── */
.language-selector-card {
  background: rgba(13, 20, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-3xl);
  backdrop-filter: var(--glass-blur-xl);
  -webkit-backdrop-filter: var(--glass-blur-xl);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.language-selector-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.language-card-title {
  font-size: var(--font-2xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.language-cloud-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin: auto 0;
  padding: 10px 0;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-sm);
  font-weight: 600;
  cursor: pointer;
  transform: translateY(18px) rotate(var(--rot, 0deg)) scale(0.94);
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.28s ease,
              border-color 0.28s ease,
              box-shadow 0.28s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  user-select: none;
  will-change: transform, opacity;
}

.captions-grid-layout.is-inview .lang-pill {
  opacity: 1;
  transform: translateY(0) rotate(var(--rot, 0deg)) scale(1);
}

.captions-grid-layout.is-inview .lang-pill:nth-child(1) { transition-delay: 0.03s; }
.captions-grid-layout.is-inview .lang-pill:nth-child(2) { transition-delay: 0.07s; }
.captions-grid-layout.is-inview .lang-pill:nth-child(3) { transition-delay: 0.11s; }
.captions-grid-layout.is-inview .lang-pill:nth-child(4) { transition-delay: 0.15s; }
.captions-grid-layout.is-inview .lang-pill:nth-child(5) { transition-delay: 0.19s; }
.captions-grid-layout.is-inview .lang-pill:nth-child(6) { transition-delay: 0.23s; }
.captions-grid-layout.is-inview .lang-pill:nth-child(7) { transition-delay: 0.27s; }
.captions-grid-layout.is-inview .lang-pill:nth-child(8) { transition-delay: 0.31s; }
.captions-grid-layout.is-inview .lang-pill:nth-child(9) { transition-delay: 0.35s; }
.captions-grid-layout.is-inview .lang-pill:nth-child(10) { transition-delay: 0.39s; }
.captions-grid-layout.is-inview .lang-pill:nth-child(11) { transition-delay: 0.43s; }

.captions-grid-layout.is-inview .lang-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transform: translateY(-2px) scale(1.06) rotate(0deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.captions-grid-layout.is-inview .lang-pill:active {
  transform: scale(0.97) rotate(0deg);
}

.captions-grid-layout.is-inview .lang-pill.active {
  background: rgba(46, 213, 115, 0.16);
  border-color: rgba(46, 213, 115, 0.65);
  color: #2ed573;
  box-shadow: 0 0 25px rgba(46, 213, 115, 0.25), inset 0 1px 0 rgba(46, 213, 115, 0.3);
  transform: scale(1.05) rotate(0deg);
  font-weight: 700;
}

.pill-check-icon {
  stroke-width: 3;
  flex-shrink: 0;
}

.language-card-footer {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--white-60);
  font-weight: 500;
}

.language-card-footer .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ed573;
  box-shadow: 0 0 10px #2ed573;
  animation: pulse-glow 2s infinite;
}

/* ── Right Card: 9:16 Video Player ───────────────────────────────────────── */
.captions-video-card {
  background: rgba(13, 20, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-3xl);
  backdrop-filter: var(--glass-blur-xl);
  -webkit-backdrop-filter: var(--glass-blur-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.video-mode-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.mode-tab-btn {
  background: transparent;
  border: none;
  color: var(--white-60);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
}

.mode-tab-btn:hover {
  color: var(--white);
}

.mode-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.4), rgba(0, 102, 255, 0.2));
  border: 1px solid var(--electric-blue-50);
  color: var(--white);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

.captions-video-viewport {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 102, 255, 0.18);
}

.captions-reel-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.captions-reel-video.active {
  opacity: 1;
  pointer-events: auto;
}

/* Floating Unmute Button */
.unmute-floating-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(10, 15, 30, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(46, 213, 115, 0.5);
  color: #2ed573;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 15px rgba(46, 213, 115, 0.2);
  transition: all 0.2s ease;
}

.unmute-floating-btn:hover {
  background: rgba(46, 213, 115, 0.2);
  border-color: #2ed573;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(46, 213, 115, 0.4);
}

.unmute-floating-btn.is-muted {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white-80);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.unmute-floating-btn.is-muted:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

/* Video State Badge */
.video-state-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white-90);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  pointer-events: none;
}

/* Responsive Collapse */
@media (max-width: 960px) {
  .captions-grid-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .language-selector-card {
    padding: 32px 20px;
  }

  .captions-video-viewport {
    max-width: 300px;
  }
}

/* ==========================================================================
   21. 3D COVERFLOW SOCIAL MEDIA REELS SHOWCASE (Dynamic 3D Fan-Out)
   ========================================================================== */
.social-showcase-section {
  position: relative;
  width: 100%;
  padding: var(--space-4xl) 0;
  background: radial-gradient(circle at 50% 40%, rgba(0, 102, 255, 0.06) 0%, rgba(240, 165, 0, 0.03) 40%, transparent 75%);
  overflow: hidden;
}

.social-scroll-runway {
  position: relative;
  width: 100%;
  height: auto;
}

.social-sticky-frame {
  position: relative;
  width: 100%;
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-sizing: border-box;
  padding: 0;
  z-index: 5;
}

.social-sticky-frame .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
}

.social-showcase-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.coverflow-stage {
  perspective: 1400px;
  -webkit-perspective: 1400px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  width: 100%;
  max-width: 1200px;
  margin: 32px auto 0;
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

/* 3D Card */
.coverflow-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 440px;
  margin-top: -220px;
  margin-left: -130px;
  border-radius: 24px;
  cursor: pointer;
  transform-origin: center center;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.45s ease, 
              filter 0.45s ease;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  will-change: transform, opacity;
}

.coverflow-card.active {
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.85), 0 0 35px rgba(240, 165, 0, 0.28);
}

.coverflow-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0f1d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.coverflow-card.active .coverflow-card-inner {
  border-color: rgba(240, 165, 0, 0.5);
}

/* Card Media & Video */
.card-media-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  overflow: hidden;
}

.coverflow-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  filter: brightness(0.85);
  transition: filter 0.4s ease;
}

.coverflow-card.active .coverflow-video-element {
  filter: brightness(1);
}

/* Top Bar: Badge + Action Controls */
.card-top-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  gap: 6px;
}

.card-platform-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.badge-dot {
  opacity: 0.5;
  font-size: 0.65rem;
}

.view-pill {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.view-pill.highlight-pill {
  color: #fce588;
  text-shadow: 0 0 8px rgba(240, 165, 0, 0.6);
}

.tiktok-badge {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(254, 44, 85, 0.5);
  color: #fe2c55;
}

.fb-badge {
  background: rgba(8, 102, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.yt-badge {
  background: rgba(255, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* Action Controls (Play/Pause & Mute/Unmute) */
.card-action-btns {
  display: none;
  align-items: center;
  gap: 6px;
}

.coverflow-card.active .card-action-btns {
  display: flex;
}

.card-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 165, 0, 0.6);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 10px rgba(240, 165, 0, 0.25);
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.card-action-btn:hover {
  background: rgba(240, 165, 0, 0.3);
  border-color: #f5d773;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(240, 165, 0, 0.45);
}

/* Card Info Overlay & Direct Social Link */
.card-info-overlay {
  position: relative;
  z-index: 5;
  text-align: left;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 7, 18, 0.88) 40%, rgba(3, 7, 18, 0.98) 100%);
  margin: -16px;
  padding: 24px 16px 16px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.card-social-direct-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
  transition: color 0.2s ease;
}

.link-ext-icon {
  color: var(--white-60);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.card-social-direct-link:hover .card-title {
  color: var(--gold);
}

.card-social-direct-link:hover .link-ext-icon {
  color: var(--gold);
  transform: translate(2px, -2px);
}

.card-tags {
  font-size: 0.74rem;
  color: var(--white-60);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Reflection Effect */
.card-reflection {
  position: absolute;
  bottom: -460px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  transform: scaleY(-1);
  opacity: 0.15;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent 60%);
  filter: blur(2px);
  pointer-events: none;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

/* Active Center Card Highlight */
.coverflow-card.active .coverflow-card-inner {
  border-color: rgba(240, 165, 0, 0.7);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(240, 165, 0, 0.35);
}

.coverflow-card.active .card-play-btn {
  background: linear-gradient(135deg, rgba(240, 165, 0, 0.8), rgba(212, 136, 0, 0.9));
  border-color: #f0a500;
  color: #0d1117;
  box-shadow: 0 0 25px rgba(240, 165, 0, 0.6);
}

/* Initial Stacked State & Fan-Out Transitions */
.coverflow-stage.stacked .coverflow-card {
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.85s ease, 
              filter 0.85s ease;
}

.coverflow-stage.fanned .coverflow-card {
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.85s ease, 
              filter 0.85s ease;
}

/* Navigation Controls */
/* Navigation Controls (Cleanly positioned below video stage) */
.coverflow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 32px auto 0 auto;
  position: relative;
  z-index: 20;
  width: 100%;
}

.coverflow-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.coverflow-nav-btn:hover {
  background: rgba(240, 165, 0, 0.25);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(240, 165, 0, 0.45);
}

.coverflow-nav-btn:active {
  transform: scale(0.96);
}

.coverflow-pagination-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.coverflow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.coverflow-dot.active {
  width: 26px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(240, 165, 0, 0.6);
}

/* Video Lightbox Modal */
.reel-modal-card {
  position: relative;
  width: 90vw;
  max-width: 400px;
  height: 82vh;
  max-height: 720px;
  background: #030712;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 102, 255, 0.3);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.reel-modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.reel-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Media Queries for Coverflow */
@media (max-width: 768px) {
  .social-showcase-section {
    padding: var(--space-3xl) 0;
  }

  .coverflow-stage {
    height: 420px;
    margin: 20px auto 0;
    perspective: 850px;
    -webkit-perspective: 850px;
  }

  .coverflow-card {
    width: 220px;
    height: 380px;
    margin-top: -190px;
    margin-left: -110px;
    border-radius: 22px;
  }

  .card-reflection {
    display: none;
  }

  .coverflow-controls {
    margin: 24px auto 0 auto;
    gap: 16px;
  }

  .coverflow-nav-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .coverflow-stage {
    height: 390px;
    margin: 16px auto 0;
    perspective: 750px;
    -webkit-perspective: 750px;
  }

  .coverflow-card {
    width: 210px;
    height: 355px;
    margin-top: -177px;
    margin-left: -105px;
    border-radius: 20px;
  }

  .coverflow-controls {
    margin: 20px auto 0 auto;
    gap: 14px;
  }

  .coverflow-nav-btn {
    width: 38px;
    height: 38px;
  }

  .coverflow-nav-btn svg {
    width: 17px;
    height: 17px;
  }
}

/* Referral Launch Incentive Banner Styles (Clean Frosted Glass, Minimalist & Subtle) */
.referral-launch-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 6px 16px;
  border-radius: 9999px;
  margin: 0 auto 18px auto;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  white-space: nowrap;
  max-width: 95vw;
}

.referral-launch-banner:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.banner-badge {
  background: rgba(240, 165, 0, 0.14);
  border: 1px solid rgba(240, 165, 0, 0.25);
  color: #f0a500;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
  flex-shrink: 0;
}

.banner-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.banner-text strong {
  color: #ffffff;
  font-weight: 600;
}

.banner-text-desktop {
  display: inline;
}

.banner-text-mobile {
  display: none;
}

.banner-action {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .banner-text-desktop {
    display: none !important;
  }
  .banner-text-mobile {
    display: inline !important;
  }
  .referral-launch-banner {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: normal !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 8px 12px !important;
    gap: 6px 8px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
    margin: 0 auto 16px auto !important;
  }
  .banner-text {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
  }
  .banner-badge {
    font-size: 0.68rem !important;
    padding: 2px 7px !important;
  }
  .banner-action {
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    color: var(--gold) !important;
    white-space: nowrap !important;
  }
}

.referral-launch-banner:hover .banner-action {
  color: #ffffff;
  transform: translateX(2px);
}

.card-referral-alternative {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.or-separator {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
}

.btn-referral-unlock-cta {
  width: 100%;
  padding: 11px 16px;
  background: rgba(240, 165, 0, 0.08);
  border: 1px dashed rgba(240, 165, 0, 0.55);
  color: #f0a500;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-referral-unlock-cta:hover {
  background: rgba(240, 165, 0, 0.18);
  border-style: solid;
  border-color: #f0a500;
  color: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(240, 165, 0, 0.2);
}

/* ==========================================================================
   TRIAL SECTION: CLAIMED / TRIAL COMPLETED CARD
   ========================================================================== */
.trial-claimed-card {
  text-align: center;
  padding: 36px 24px;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(240, 165, 0, 0.06), rgba(0, 102, 255, 0.04));
  border: 1px solid rgba(240, 165, 0, 0.35);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(240, 165, 0, 0.12);
  animation: fadeInClaimed 0.4s ease-out;
}

@keyframes fadeInClaimed {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.trial-claimed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f0a500;
  background: rgba(240, 165, 0, 0.12);
  border: 1px solid rgba(240, 165, 0, 0.4);
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trial-claimed-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 12px 0 10px;
  line-height: 1.3;
}

.trial-claimed-body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 10px;
}

.trial-claimed-body strong {
  color: #f0a500;
}

.trial-claimed-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}

.trial-claimed-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   TRIAL SECTION: STORIES CAROUSEL & 2-MIN TIMER
   ========================================================================== */
.trial-stories-wrapper {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInStories 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInStories {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.trial-story-card {
  background: rgba(13, 20, 36, 0.85);
  border: 1px solid rgba(240, 165, 0, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(240, 165, 0, 0.1);
  border-radius: 18px;
  padding: 22px 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trial-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f0a500, #0066ff, transparent);
}

.trial-story-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.trial-story-figure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f0a500;
  background: rgba(240, 165, 0, 0.12);
  border: 1px solid rgba(240, 165, 0, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: opacity 0.25s ease;
}

.trial-story-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.story-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.story-nav-btn:hover {
  background: rgba(240, 165, 0, 0.25);
  border-color: #f0a500;
  color: #ffffff;
  transform: scale(1.1);
}

.trial-story-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.35;
  transition: opacity 0.25s ease;
}

.trial-story-body {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  min-height: 95px;
  transition: opacity 0.25s ease;
}

.trial-story-footer {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.trial-render-progress-box {
  background: rgba(10, 15, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 20px;
}

.trial-progress-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.84rem;
}

.trial-progress-labels span:first-child {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.trial-percent-val {
  color: #f0a500;
  font-weight: 700;
  font-family: monospace;
  white-space: nowrap;
}

.trial-timer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(240, 165, 0, 0.08);
  border: 1px solid rgba(240, 165, 0, 0.25);
  border-radius: 12px;
  margin: 0 auto;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.trial-timer-badge .timer-val {
  font-family: monospace;
  font-size: 0.98rem;
  font-weight: 800;
  color: #f0a500;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER (Sleek Glassmorphism Floating Capsule)
   ═══════════════════════════════════════════════════════════════ */
.gc-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 580px;
  width: calc(100% - 40px);
  padding: 12px 20px;
  background: rgba(13, 20, 36, 0.94);
  border: 1px solid rgba(240, 165, 0, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(240, 165, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gc-cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.gc-cookie-banner.hiding {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.gc-cookie-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.gc-cookie-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.gc-cookie-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.gc-cookie-actions {
  flex-shrink: 0;
}

.gc-cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  background: linear-gradient(135deg, #f0a500, #ffc837);
  color: #0d1424;
  border: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.gc-cookie-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 14px rgba(240, 165, 0, 0.4);
}

.gc-cookie-btn:active {
  transform: translateY(0) scale(0.98);
}

@media (max-width: 640px) {
  .gc-cookie-banner {
    bottom: 16px;
    border-radius: 16px;
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .gc-cookie-content {
    align-items: flex-start;
  }
  .gc-cookie-actions {
    width: 100%;
  }
  .gc-cookie-btn {
    width: 100%;
    padding: 9px 16px;
    border-radius: 10px;
  }
}


