/* ══════════════════════════════════════════════════════════════════
   MANODEMY LANDING PAGE V2.0 — ELITE DESIGN SYSTEM (TOP-5 WORLD STANDARD)
   Engineered using Advanced Color Science, Cognitive Flow & Chromatic Contrast
   ══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Playfair+Display:ital,wght@1,700&family=Caveat:wght@400;700&family=Sacramento&family=Allura&family=Satisfy&family=Dancing+Script:wght@600;700&family=Kalam:wght@700&display=swap');

:root {
  /* ══════ COLOR SCIENCE SYSTEM (60-30-10 Rule) ══════ */
  /* 60% Dominant: Deep Chromatic Indigo Void (Minimizes fatigue, maximizes premium feel) */
  --void: #060913;
  /* The Absolute Void - Darkest Saturated Blue */
  --base: #0B0F19;
  /* Core Page Background */
  --surface: #121826;
  /* Midtone Glass Surface */
  --elevated: #1B2336;
  /* High-Contrast Interactive Surface */
  --code-bg: #0F131D;
  /* Terminal Backing */

  /* 30% Secondary: Structured Slate Typography & Tactile Glass Borders */
  --ink: #F8FAFC;
  /* Ultra-Bright Off-White for High Readability */
  --ink-dim: #94A3B8;
  /* Cool Slate for Subtitles & Secondary Copy */
  --ink-muted: #475569;
  /* Deep Steel for Details & Extra Muted States */

  /* 10% Accents: Concentrated Chromatic Triggers (For conversion focus) */
  --cyan: #00E6F6;
  /* Electric Cyan Accent (Primary action trigger) */
  --cyan-glow: rgba(0, 230, 246, 0.25);

  --gold: #FFB020;
  /* Warm Cohort Amber (Urgency & Pricing triggers) */
  --gold-glow: rgba(255, 176, 32, 0.15);

  --purple: #A855F7;
  /* Chromatic Balance Spectrum Indigo */
  --purple-glow: rgba(168, 85, 247, 0.2);

  --emerald: #10B981;
  /* Success State Emerald Green */
  --rose: #F43F5E;
  /* Warning State Coral Red */

  /* Glassmorphism Borders & Rims */
  --rim: rgba(255, 255, 255, 0.05);
  --rim-strong: rgba(255, 255, 255, 0.12);
  --rim-cyan: rgba(0, 230, 246, 0.15);

  /* Elite High-Gloss Glassmorphism Tokens */
  --glass-bg: linear-gradient(135deg, rgba(18, 24, 38, 0.55) 0%, rgba(11, 15, 25, 0.75) 100%);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-strong: rgba(255, 255, 255, 0.15);
  --glass-shine: linear-gradient(110deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.02) 100%);
  --shadow-bloom: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  --shadow-cyan-bloom: 0 0 30px rgba(0, 230, 246, 0.15);
  --shadow-gold-bloom: 0 0 30px rgba(255, 176, 32, 0.12);

  /* Typography Scale */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-data: 'JetBrains Mono', monospace;

  /* Micro-Interactions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* Elite Custom Out-Quint Curve */
  --transition: all 400ms var(--ease);
}

/* ══════ CORE RESET & BASE STYLING ══════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--void);
}

body {
  font-family: var(--font-body);
  background: var(--base);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* Focus outlines for superior accessibility */
*:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  background: var(--cyan);
  color: var(--base);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 4px;
  z-index: 99999;
  transition: top 300ms ease;
}

.skip-link:focus {
  top: 1.5rem;
  outline: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Chromatic Divider (Dissolving light border) */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rim-strong), transparent);
  opacity: 0.5;
}

/* ══════ NAVIGATION (Tactile Floating bar) ══════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6, 9, 19, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(6, 9, 19, 0.9);
  border-bottom: 1px solid var(--rim);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 850;
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.nav-brand-name span {
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0, 230, 246, 0.4);
}

.nav-brand-sub {
  font-family: var(--font-data);
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pill {
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-dim);
  border: 1px solid transparent;
  background: transparent;
  transition: var(--transition);
}

.nav-pill:hover {
  color: #fff;
  border-color: var(--rim);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.nav-pill--free {
  border: 1px dashed var(--rim-cyan);
  background: rgba(0, 230, 246, 0.04);
  color: var(--cyan);
}

.nav-pill--free:hover {
  background: rgba(0, 230, 246, 0.08);
  border-color: var(--cyan);
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-ghost {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-dim);
  padding: 8px 18px;
  transition: var(--transition);
}

.btn-ghost:hover {
  color: #fff;
}

.btn-nav-buy {
  background: linear-gradient(135deg, var(--cyan) 0%, #0077f6 100%);
  color: #fff;
  font-weight: 750;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-display);
  border-top: 1.5px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2.5px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 20px rgba(0, 230, 246, 0.25);
  transition: var(--transition);
}

.btn-nav-buy:hover {
  background: linear-gradient(135deg, #00f5ff 0%, #3b82f6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 230, 246, 0.5), 0 0 15px var(--cyan-glow);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 50%;
  border: 1px solid var(--rim);
  background: rgba(255, 255, 255, 0.02);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--void);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-overlay.active {
  display: flex;
}

.mobile-overlay a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-dim);
  padding: 12px;
  transition: var(--transition);
}

.mobile-overlay a:hover {
  color: #fff;
  transform: scale(1.05);
}

.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  font-size: 32px;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

@media(max-width:768px) {

  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ══════ HERO SECTION (Visual Chameleon Masterpiece) ══════ */
.hero {
  min-height: auto;
  padding: 5rem 0 2rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* World-class multi-layered background blooms (Color Science) */
.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 246, 0.09) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 230, 246, 0.25);
  border-left: 2.5px solid var(--cyan);
  background: rgba(0, 230, 246, 0.06);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-data);
  font-size: 11.5px;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0, 230, 246, 0.1);
  animation: badge-pulse 3s infinite ease-in-out;
  align-self: flex-start;
}

@keyframes badge-pulse {

  0%,
  100% {
    border-color: rgba(0, 230, 246, 0.25);
    box-shadow: 0 0 15px rgba(0, 230, 246, 0.1);
  }

  50% {
    border-color: rgba(0, 230, 246, 0.60);
    box-shadow: 0 0 25px rgba(0, 230, 246, 0.25);
  }
}

/* Premium gradient typography for maximum visual depth */
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 5.8vw, 62px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(0, 230, 246, 0.7) 50%, #fff 60%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-shimmer 6s ease-in-out infinite;
}

@keyframes hero-shimmer {
  0%, 100% { background-position: 200% center; }
  50% { background-position: -200% center; }
}

.typed-learn {
  font-family: var(--font-data);
  /* JetBrains Mono coding-themed font */
  font-weight: 700;
  font-size: 0.85em;
  /* Premium monospaced coding scale next to Outfit */
  color: var(--cyan);
  -webkit-text-fill-color: var(--cyan);
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow: 0 0 10px rgba(0, 230, 246, 0.45);
  display: inline-block;
  overflow: hidden;
  border-right: 3px solid var(--cyan);
  /* The sleek coding typewriter cursor */
  white-space: nowrap;
  margin-right: 0.25em;
  /* Elegant natural spacing before Python */
  vertical-align: middle;
  position: relative;
  top: -0.06em;
  /* Fine-tuned alignment to sit perfectly level on the baseline */
  letter-spacing: -0.01em;
  text-transform: none;
  /* Renders spelling exactly as typed */
  animation:
    typing-learn 6s steps(12, end) infinite,
    blink-caret 0.75s step-end infinite;
}

/* Typing & Backspacing animation loop */
@keyframes typing-learn {
  0% {
    width: 0
  }

  /* Type out 'start coding' (12 characters) from 5% to 20% */
  5% {
    width: 0
  }

  20% {
    width: 12ch
  }

  /* Hold 'start coding' fully typed for 3.3s to allow easy reading */
  75% {
    width: 12ch
  }

  /* Backspace/Delete 'start coding' from 75% to 90% */
  90% {
    width: 0
  }

  /* Pause before typing again */
  100% {
    width: 0
  }
}

/* Coding terminal cursor blinking keyframes */
@keyframes blink-caret {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: var(--cyan);
  }
}



.py-logo {
  width: 0.9em;
  height: 0.9em;
  vertical-align: middle;
  margin: 0 0.1em;
  filter: drop-shadow(0 0 16px rgba(0, 230, 246, 0.5)) drop-shadow(0 0 4px rgba(255, 232, 115, 0.3));
  display: inline-block;
  animation: logo-jump-glow 3.5s ease-in-out infinite;
}

@keyframes logo-jump-glow {

  0%,
  100% {
    transform: translateY(-0.02em);
    filter: drop-shadow(0 0 12px rgba(0, 230, 246, 0.4)) drop-shadow(0 0 3px rgba(255, 232, 115, 0.2));
  }

  50% {
    transform: translateY(-0.16em);
    filter: drop-shadow(0 0 22px rgba(0, 230, 246, 0.7)) drop-shadow(0 0 8px rgba(255, 232, 115, 0.4));
  }
}

.gradient-actually {
  background: linear-gradient(90deg, #00F5FF 0%, #3B82F6 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px rgba(0, 230, 246, 0.15);
}

.gradient-coding {
  background: linear-gradient(90deg, #FFAE00 0%, #FF5A70 55%, #E91E63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px rgba(255, 174, 0, 0.15);
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 540px;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.hero-sub strong {
  color: #fff;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  gap: 20px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-proof span:not(:last-child)::after {
  content: '·';
  margin-left: 20px;
  color: var(--ink-muted);
  font-size: 16px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 2.25rem;
  border-radius: 50px;
  font-size: 15.5px;
  font-weight: 800;
  font-family: var(--font-display);
  transition: var(--transition);
}

/* Chameleon active states matching elite spectrum curves */
.btn-gold--filled {
  background: linear-gradient(135deg, var(--cyan) 0%, #0077f6 100%);
  color: #fff;
  border-top: 1.5px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2.5px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 25px rgba(0, 230, 246, 0.3), 0 0 15px var(--cyan-glow);
  animation: cta-pulse-glow 3s ease-in-out infinite;
}

@keyframes cta-pulse-glow {
  0%, 100% { box-shadow: 0 10px 25px rgba(0, 230, 246, 0.3), 0 0 15px var(--cyan-glow); }
  50% { box-shadow: 0 10px 35px rgba(0, 230, 246, 0.5), 0 0 30px var(--cyan-glow); }
}

.btn-gold--filled:hover {
  background: linear-gradient(135deg, #00f5ff 0%, #7c3aed 100%);
  /* Chameleon spectral transition on hover */
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 15px 30px rgba(0, 230, 246, 0.4), 0 0 25px rgba(124, 58, 237, 0.25);
  animation: none;
}

.btn-gold--outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--rim-strong);
  border-top-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(0, 0, 0, 0.5);
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-gold--outline:hover {
  color: var(--cyan);
  border-color: rgba(0, 230, 246, 0.35);
  background: rgba(0, 230, 246, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 12px var(--cyan-glow);
}


/* World-class Premium Code Terminal */
.terminal {
  background: linear-gradient(135deg, rgba(13, 17, 28, 0.7) 0%, rgba(6, 9, 17, 0.85) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 50px -10px rgba(0, 230, 246, 0.08);
  position: relative;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

/* Video variant — no height constraint, uses 16:9 aspect ratio */
.terminal--video {
  height: auto !important;
  min-height: unset !important;
  max-height: unset !important;
  flex: none !important;
}

/* ── DEMO badge and live-dot removed (title bar removed) ── */


/* ── Video body ── */
.terminal-video-body {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7.5;
  background: #000;
  overflow: hidden;
}

/* ── Poster (click-to-play thumbnail) ── */
.video-poster {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
  transition: opacity 0.35s ease;
}

.video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.4s ease;
  filter: brightness(0.75) saturate(1.1);
}

.video-poster:hover .video-poster-img {
  transform: scale(1.03);
  filter: brightness(0.65) saturate(1.2);
}

.video-poster-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.video-poster:hover .video-poster-overlay {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

/* ── Glowing play button ── */
.video-play-btn {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 230, 246, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(0, 230, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 0 rgba(0, 230, 246, 0.4),
    0 0 40px rgba(0, 230, 246, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
  animation: play-btn-pulse 2.5s ease-in-out infinite;
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  color: #fff;
  margin-left: 4px; /* optical centering for play triangle */
  filter: drop-shadow(0 0 6px rgba(0, 230, 246, 0.6));
}

.video-poster:hover .video-play-btn {
  transform: scale(1.12);
  background: rgba(0, 230, 246, 0.28);
  box-shadow:
    0 0 0 8px rgba(0, 230, 246, 0.12),
    0 0 60px rgba(0, 230, 246, 0.4),
    0 12px 40px rgba(0, 0, 0, 0.6);
  animation: none;
}

@keyframes play-btn-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(0, 230, 246, 0.4),
      0 0 30px rgba(0, 230, 246, 0.2),
      0 8px 32px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(0, 230, 246, 0.08),
      0 0 50px rgba(0, 230, 246, 0.35),
      0 8px 32px rgba(0, 0, 0, 0.5);
  }
}

/* ── "Watch Full Demo" label ── */
.video-cta-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease;
}

.video-poster:hover .video-cta-label {
  color: var(--cyan);
}

/* ── YouTube iframe ── */
.hero-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.hero-video-iframe.hidden {
  opacity: 0;
  pointer-events: none;
}

.terminal:hover {
  border-color: rgba(0, 230, 246, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 40px 100px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(0, 230, 246, 0.22);
  transform: translateY(-4px);
}

.terminal-bar {
  background: rgba(8, 11, 20, 0.95);
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 5;
}

/* MacOS traffic lights micro-icons inside dots */
.terminal-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dot-r::before {
  content: '×';
  font-size: 9px;
  line-height: 1;
}

.dot-y::before {
  content: '–';
  line-height: 1;
}

.dot-g::before {
  content: '+';
  font-size: 8px;
  line-height: 1;
}

.terminal-bar:hover .dot::before {
  opacity: 1;
}

.dot-r {
  background: #FF5F56;
  box-shadow: 0 0 4px rgba(255, 95, 86, 0.2);
}

.dot-y {
  background: #FEBC2E;
  box-shadow: 0 0 4px rgba(254, 188, 46, 0.2);
}

.dot-g {
  background: #27C93F;
  box-shadow: 0 0 4px rgba(39, 201, 63, 0.2);
}

.terminal-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-dim);
  margin-left: 12px;
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: color 0.4s var(--ease), opacity 0.4s var(--ease);
}

.terminal:hover .terminal-title {
  color: var(--ink);
  opacity: 1;
}

.terminal-body {
  padding: 1.25rem 1.75rem;
  font-family: var(--font-data);
  font-size: 13.5px;
  line-height: 1.8;
  height: 200px !important;
  min-height: 200px !important;
  max-height: 200px !important;
  position: relative;
  color: #F1F5F9;
  overflow: hidden;
  background: rgba(6, 9, 18, 0.4);
}

/* Beautiful tech backdrop grid mesh */
.terminal-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.015) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Spectral light bloom blobs in backend */
.terminal-blobs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
  transition: opacity 0.6s var(--ease);
}

.terminal:hover .blob {
  opacity: 0.2;
}

.blob-purple {
  top: -10%;
  right: -5%;
  width: 180px;
  height: 180px;
  background: var(--purple);
}

.blob-cyan {
  bottom: -15%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: var(--cyan);
}

.terminal-code-wrapper {
  position: relative;
  z-index: 2;
}

.terminal-body pre {
  margin: 0;
  overflow-x: auto;
}

.terminal-body code {
  font-family: var(--font-data);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Elite Tokyo Night IDE Syntax theme */
.terminal-body .kw {
  color: #FF5376;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 83, 118, 0.12);
}

.terminal-body .str {
  color: #E2B540;
  text-shadow: 0 0 10px rgba(226, 181, 64, 0.08);
}

.terminal-body .cmt {
  color: #64748B;
  font-style: italic;
  opacity: 0.85;
}

.terminal-body .num {
  color: #00E6F6;
  text-shadow: 0 0 10px rgba(0, 230, 246, 0.15);
}

/* Typing cursor styles removed — replaced by video player */

.hero-right {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.terminal-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 0.75rem;
  justify-content: center;
  flex-wrap: nowrap;
}

.stat-badge {
  background: linear-gradient(135deg, rgba(20, 26, 42, 0.45) 0%, rgba(10, 14, 24, 0.65) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top-color: rgba(255, 255, 255, 0.10);
  padding: 8px 12px;
  border-radius: 12px;
  font-family: var(--font-data);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s var(--ease);
  cursor: default;
}

/* Glass shine on badge hover */
.stat-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s var(--ease);
}

.stat-badge:hover::before {
  left: 150%;
}

.stat-badge:hover {
  transform: translateY(-3px) scale(1.02);
  color: var(--ink);
}

/* Active LED indicator styles */
.badge-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.badge-led::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  opacity: 0.4;
  animation: led-pulse 2s infinite ease-in-out;
}

@keyframes led-pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(2.2);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}

/* LED Color Schemes */
.badge-days .badge-led {
  background: var(--cyan);
}

.badge-days .badge-led::after {
  background: var(--cyan);
}

.badge-days .badge-icon {
  color: var(--cyan);
}

.badge-days:hover {
  border-color: rgba(0, 230, 246, 0.35);
  box-shadow: 0 10px 25px rgba(0, 230, 246, 0.15), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.badge-challenges .badge-led {
  background: var(--purple);
}

.badge-challenges .badge-led::after {
  background: var(--purple);
}

.badge-challenges .badge-icon {
  color: var(--purple);
}

.badge-challenges:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.15), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.badge-video .badge-led {
  background: var(--rose);
}

.badge-video .badge-led::after {
  background: var(--rose);
}

.badge-video .badge-icon {
  color: var(--rose);
}

.badge-video:hover {
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: 0 10px 25px rgba(244, 63, 94, 0.15), 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Badge Icon fine sizing */
.badge-icon {
  width: 15px;
  height: 15px;
  opacity: 0.85;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.stat-badge:hover .badge-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* High-Gloss Social Proof cards at bottom */
.hero-right .hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 1.15rem;
  margin-bottom: 0;
  width: 100%;
}

.proof-card {
  background: linear-gradient(135deg, rgba(16, 22, 38, 0.45) 0%, rgba(8, 11, 20, 0.65) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.6);
  padding: 12px 14px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 400ms var(--ease), border-color 400ms var(--ease), box-shadow 400ms var(--ease);
  cursor: default;
}

.proof-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.02);
}

.proof-card span {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-dim);
  line-height: 1.3;
  transition: color 0.4s var(--ease);
}

.proof-card:hover span {
  color: var(--ink);
}

/* Icon specific animations & glow states */
.proof-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.proof-card:hover .proof-icon {
  transform: scale(1.15) translateY(-1px);
}

/* Rating Card - Gold Glow */
.rating-card .proof-icon {
  color: var(--gold);
  filter: drop-shadow(0 0 4px rgba(255, 176, 32, 0.15));
}

.rating-card:hover .proof-icon {
  filter: drop-shadow(0 0 10px rgba(255, 176, 32, 0.5));
}

/* Learners Card - Purple Glow */
.learners-card .proof-icon {
  color: var(--purple);
  filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.15));
}

.learners-card:hover .proof-icon {
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

/* Certificate Card - Cyan Glow */
.cert-card .proof-icon {
  color: var(--cyan);
  filter: drop-shadow(0 0 4px rgba(0, 230, 246, 0.15));
}

.cert-card:hover .proof-icon {
  filter: drop-shadow(0 0 10px rgba(0, 230, 246, 0.5));
}

@media(max-width:1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-left: auto;
    margin-right: auto;
    justify-content: center !important;
    width: 100% !important;
  }

  .btn-gold {
    flex: 1 1 50% !important;
    width: auto !important;
    font-size: 12.5px !important;
    padding: 0 12px !important;
    height: 50px !important;
    white-space: nowrap !important;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .terminal {
    max-width: 540px;
    margin: 0 auto;
  }
}

@media(max-width:540px) {
  .hero-right .hero-proof {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .proof-card {
    flex-direction: row;
    padding: 12px 16px;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
  }

  .terminal-stats {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .stat-badge {
    justify-content: flex-start;
    padding: 10px 16px;
    font-size: 12.5px;
  }
}

@media(max-width:768px) {
  .hero-sub {
    font-size: 16px;
  }

  .terminal-body {
    font-size: 12.5px;
  }
}

/* ═══ SOCIAL PROOF STRIP ═══ */
.proof-strip {
  background: rgba(11, 15, 25, 0.5);
  border-top: 1px solid var(--rim);
  border-bottom: 1px solid var(--rim);
  padding: 2rem 0;
  position: relative;
}

.proof-strip::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 230, 246, 0.06) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.proof-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-stat {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--rim);
  transition: var(--transition);
}

.proof-stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.02);
}

.proof-stat:hover .proof-num {
  color: #fff;
  text-shadow: 0 0 25px var(--cyan), 0 0 10px var(--cyan-glow);
}

.proof-stat:hover .proof-label {
  color: var(--ink);
}

.proof-stat:last-child {
  border-right: none;
}

.proof-num {
  font-family: var(--font-display);
  font-weight: 850;
  font-size: 46px;
  color: var(--cyan);
  display: block;
  text-shadow: 0 0 20px var(--cyan-glow);
  position: relative;
}

.proof-num::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  border-radius: 2px;
  transition: transform 400ms var(--ease);
}

.proof-stat:hover .proof-num::after {
  transform: translateX(-50%) scaleX(1);
}

.proof-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

@media(max-width:992px) {
  .proof-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .proof-stat {
    border-right: none;
    border-bottom: 1px solid var(--rim);
    padding: 1.5rem 1rem;
  }

  .proof-stat:nth-child(odd) {
    border-right: 1px solid var(--rim);
  }

  .proof-stat:nth-child(n+3) {
    border-bottom: none;
  }
}

@media(max-width:576px) {
  .proof-strip .container {
    grid-template-columns: 1fr;
  }

  .proof-stat {
    border-right: none !important;
    border-bottom: 1px solid var(--rim) !important;
    padding: 1.5rem 1rem;
  }

  .proof-stat:last-child {
    border-bottom: none !important;
  }
}

/* ═══ FREE PREVIEW (High Contrast Interactive Section) ═══ */
.preview {
  background: var(--base);
  padding: 2rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.preview-bg-bloom-left {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 230, 246, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.preview-bg-bloom-right {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 176, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.preview .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.preview-badge-top {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 230, 246, 0.08);
  border: 1px solid rgba(0, 230, 246, 0.2);
  color: var(--cyan);
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(0, 230, 246, 0.05);
}

.preview h2 {
  font-family: var(--font-display);
  font-weight: 850;
  font-size: clamp(26px, 3.2vw, 32px);
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.preview h2 span {
  background: linear-gradient(90deg, var(--cyan), #8af3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preview-body {
  font-size: 15.5px;
  color: var(--ink-dim);
  max-width: 540px;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.preview-list {
  list-style: none;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 300ms var(--ease);
}

.preview-list li:hover {
  background: rgba(0, 230, 246, 0.04);
  border-color: rgba(0, 230, 246, 0.15);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bullet-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 230, 246, 0.12);
  border: 1px solid rgba(0, 230, 246, 0.25);
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 300ms var(--ease);
}

.preview-list li:hover .bullet-icon-wrapper {
  background: var(--cyan);
  color: var(--base);
  box-shadow: 0 0 12px rgba(0, 230, 246, 0.5);
  transform: scale(1.08);
}

.bullet-icon {
  width: 14px;
  height: 14px;
}

.bullet-text {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  transition: color 300ms var(--ease);
}

.preview-list li:hover .bullet-text {
  color: var(--ink);
}

.preview-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-top-color: var(--glass-border-strong);
  border-bottom-color: rgba(0, 0, 0, 0.7);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-bloom), var(--shadow-cyan-bloom), 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  animation: preview-float 4.5s ease-in-out infinite;
}

@keyframes preview-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}

.preview-card:hover {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(0, 230, 246, 0.35);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.75), 0 0 45px rgba(0, 230, 246, 0.2);
}

/* Premium Lock Graphic Styles */
.premium-lock-wrapper {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px auto;
  position: relative;
}

.premium-lock-svg {
  width: 100%;
  height: 100%;
}

.lock-ring-slow {
  transform-origin: center;
  animation: rotateRing 25s linear infinite;
}

.lock-ring-fast {
  transform-origin: center;
  animation: rotateRingCounter 12s linear infinite;
}

.shackle-anim {
  transform-origin: 22px 28px;
  animation: shackleFloat 4s ease-in-out infinite;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateRingCounter {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes shackleFloat {
  0%, 100% { transform: rotate(-25deg) translateY(-2px); }
  50% { transform: rotate(-35deg) translateY(-5px); }
}

.preview-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}

.preview-meta {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}

/* Sleek Mock Jupyter-style Notebook Interface */
.mock-notebook-cell {
  background: rgba(10, 16, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 1.25rem;
  text-align: left;
  font-family: var(--font-data);
  font-size: 12px;
  line-height: 1.6;
  position: relative;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cell-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.cell-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.cell-header .dot.red { background: #ff5f56; }
.cell-header .dot.yellow { background: #ffbd2e; }
.cell-header .dot.green { background: #27c93f; }

.cell-header .cell-title {
  font-size: 11px;
  color: var(--ink-muted);
  margin-left: auto;
  opacity: 0.8;
}

.cell-body {
  display: flex;
  flex-direction: column;
}

.cell-line {
  display: flex;
  white-space: pre;
}

.line-no {
  color: #5c6370;
  font-weight: bold;
  padding-right: 12px;
  min-width: 48px;
  display: inline-block;
  user-select: none;
}

.code-comment { color: #5c6370; font-style: italic; }
.code-keyword { color: #c678dd; font-weight: bold; }
.code-func { color: #61afef; }
.code-string { color: #98c379; }

.cell-output {
  background: rgba(39, 201, 63, 0.05);
  border-left: 2.5px solid #27c93f;
  padding: 6px 12px;
  margin-top: 10px;
  border-radius: 2px 6px 6px 2px;
  display: flex;
  align-items: center;
}

.output-no {
  color: #27c93f;
  font-weight: bold;
  font-size: 11.5px;
  padding-right: 12px;
  min-width: 48px;
  user-select: none;
}

.output-text {
  color: #a8fbc4;
  font-weight: 500;
  text-shadow: 0 0 8px rgba(39, 201, 63, 0.25);
}

.btn-gold--filled.preview-cta {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #00e6f6 100%);
  border-top: 1.5px solid rgba(255, 255, 255, 0.45);
  border-bottom: 2.5px solid rgba(0, 0, 0, 0.45);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 0 15px rgba(16, 185, 129, 0.2);
  animation: sandbox-cta-pulse 3s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  width: 100%;
}

.btn-gold--filled.preview-cta:hover {
  background: linear-gradient(135deg, #00e6f6 0%, #10b981 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 230, 246, 0.45), 0 0 25px rgba(16, 185, 129, 0.35);
  animation: none;
}

@keyframes sandbox-cta-pulse {
  0%, 100% {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 0 15px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.55), 0 0 30px rgba(16, 185, 129, 0.4);
  }
}

.preview-micro {
  font-family: 'Caveat', cursive;
  font-size: 21px;
  color: var(--ink-dim);
  margin-top: 14px;
  display: block;
  letter-spacing: 0.02em;
}

@media(max-width:768px) {
  .preview .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ═══ HOW IT WORKS (Modern Spaced Rhythm) ═══ */
.how {
  padding: 4.5rem 0;
  background: var(--void);
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -0.02em;
}

.section-head h2 span {
  background: linear-gradient(135deg, var(--cyan) 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-head p {
  font-size: 17.5px;
  color: var(--ink-dim);
  max-width: 580px;
  margin: 0 auto;
}

.how-steps {
  display: flex;
  gap: 2rem;
  align-items: stretch; /* mathematically force identical card heights for perfect symmetry! */
}

.how-step {
  flex: 1;
  position: relative;
  padding: 2.75rem 2.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-top: 3px solid rgba(255, 255, 255, 0.12); /* Default top rim placeholder */
  border-radius: 20px; /* high-end soft radius */
  box-shadow: var(--shadow-bloom);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}

/* Chromatic semantic accent mappings using advanced color theory */
.how-step--cyan {
  border-top: 3px solid var(--cyan);
}
.how-step--cyan .how-num {
  background: linear-gradient(135deg, var(--cyan) 0%, rgba(0, 230, 246, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.how-step--cyan:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(0, 230, 246, 0.45);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 0 25px rgba(0, 230, 246, 0.15);
}

.how-step--purple {
  border-top: 3px solid var(--purple);
}
.how-step--purple .how-num {
  background: linear-gradient(135deg, var(--purple) 0%, rgba(168, 85, 247, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.how-step--purple:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 0 25px rgba(168, 85, 247, 0.15);
}

.how-step--emerald {
  border-top: 3px solid var(--emerald);
}
.how-step--emerald .how-num {
  background: linear-gradient(135deg, var(--emerald) 0%, rgba(16, 185, 129, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.how-step--emerald:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 0 25px rgba(16, 185, 129, 0.15);
}

.how-num {
  font-family: var(--font-display);
  font-weight: 950;
  font-size: 76px;
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}

.how-step:hover .how-num {
  opacity: 0.35;
  transform: translateY(-3px);
}

.how-step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  margin-bottom: 12px;
  color: #fff;
}

.how-step p {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.75;
}

/* Beautiful dynamic flowing connector paths with exact mathematical centers */
.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  position: relative;
  /* padding-top removed for auto vertical centering inside stretched flex container! */
}

.how-connector--cyan-purple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 230, 246, 0.15) 0%, rgba(0, 230, 246, 0.6) 30%, rgba(168, 85, 247, 0.6) 70%, rgba(168, 85, 247, 0.15) 100%);
  transform: translateY(-50%);
}

.how-connector--purple-emerald::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.6) 30%, rgba(16, 185, 129, 0.6) 70%, rgba(16, 185, 129, 0.15) 100%);
  transform: translateY(-50%);
}

.how-connector--cyan-purple .connector-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  box-shadow: 0 0 10px rgba(0, 230, 246, 0.4), 0 0 20px rgba(168, 85, 247, 0.25);
  position: relative;
  z-index: 2;
  animation: connector-pulse-cyan-purple 2.5s ease-in-out infinite;
}

.how-connector--purple-emerald .connector-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--emerald) 100%);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.4), 0 0 20px rgba(16, 185, 129, 0.25);
  position: relative;
  z-index: 2;
  animation: connector-pulse-purple-emerald 2.5s ease-in-out infinite;
}

@keyframes connector-pulse-cyan-purple {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 230, 246, 0.4); }
  50% { transform: scale(1.3); box-shadow: 0 0 18px rgba(0, 230, 246, 0.6), 0 0 28px rgba(168, 85, 247, 0.4); }
}

@keyframes connector-pulse-purple-emerald {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(168, 85, 247, 0.4); }
  50% { transform: scale(1.3); box-shadow: 0 0 18px rgba(168, 85, 247, 0.6), 0 0 28px rgba(16, 185, 129, 0.4); }
}

@media(max-width:768px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* slightly larger gap on mobile for better breathing room */
  }

  .how-connector {
    width: 100%;
    min-width: unset;
    height: 50px;
    padding-top: 0;
  }

  .how-connector::before {
    display: none; /* override default horizontal bar fallback */
  }

  .how-connector--cyan-purple::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 230, 246, 0.15) 0%, rgba(0, 230, 246, 0.6) 30%, rgba(168, 85, 247, 0.6) 70%, rgba(168, 85, 247, 0.15) 100%);
    transform: translateX(-50%);
  }

  .how-connector--purple-emerald::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.6) 30%, rgba(16, 185, 129, 0.6) 70%, rgba(16, 185, 129, 0.15) 100%);
    transform: translateX(-50%);
  }
}

/* ═══ CURRICULUM GRID (Perfect Alignments) ═══ */
.curriculum {
  background: var(--base);
  padding: 4.5rem 0;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  border: 1px solid var(--rim-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink-dim);
  transition: var(--transition);
}

.filter-tab:hover {
  border-color: rgba(0, 230, 246, 0.4);
  color: var(--cyan);
  background: rgba(0, 230, 246, 0.04);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--cyan) 0%, #3b82f6 100%);
  color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 4px 15px rgba(0, 230, 246, 0.35);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.day-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-top-color: var(--glass-border-strong);
  border-bottom-color: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.day-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}

.day-card:hover {
  border-color: rgba(0, 230, 246, 0.45);
  transform: translateY(-4px) scale(1.02);
  background: var(--elevated);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 230, 246, 0.15);
}

.day-num {
  font-family: var(--font-data);
  font-size: 10px;
  color: var(--cyan);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.day-emoji {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.day-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  line-height: 1.5;
  display: block;
}

.day-badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.free-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
  animation: free-badge-pulse 2s ease-in-out infinite;
}

@keyframes free-badge-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15); }
  50% { box-shadow: 0 2px 12px rgba(16, 185, 129, 0.4), 0 0 8px rgba(16, 185, 129, 0.2); }
}

/* Category top-border accents */
.day-card[data-category="basics"] {
  border-top: 2px solid rgba(0, 230, 246, 0.35);
}

.day-card[data-category="structures"] {
  border-top: 2px solid rgba(168, 85, 247, 0.35);
}

.day-card[data-category="analysis"] {
  border-top: 2px solid rgba(16, 185, 129, 0.35);
}

.day-card[data-category="advanced"] {
  border-top: 2px solid rgba(255, 176, 32, 0.35);
}

.lock-badge {
  font-size: 15px;
  opacity: 0.4;
  color: var(--ink-dim);
}

@media(max-width:1024px) {
  .curriculum-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:600px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══ COMPARISON TABLE ═══ */
.compare {
  padding: 4.5rem 0;
  background: var(--void);
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--rim);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare th,
.compare td {
  padding: 18px 24px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--rim);
}

.compare tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}

.compare tbody tr {
  transition: background 300ms var(--ease);
}

.compare tbody tr:hover {
  background: rgba(0, 230, 246, 0.02);
}

.compare thead th {
  background: var(--surface);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}

.compare .col-mano {
  border-left: 2px solid rgba(0, 230, 246, 0.22);
  border-right: 2px solid rgba(0, 230, 246, 0.22);
  background: rgba(0, 230, 246, 0.03);
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease);
}

.compare thead .col-mano {
  background: rgba(0, 230, 246, 0.08);
  color: var(--cyan);
  font-weight: 900;
  border-top: 4px solid var(--cyan);
  border-left: 2px solid rgba(0, 230, 246, 0.22);
  border-right: 2px solid rgba(0, 230, 246, 0.22);
  text-shadow: 0 0 10px rgba(0, 230, 246, 0.25);
}

.compare tbody tr:last-child .col-mano {
  border-bottom: 2px solid rgba(0, 230, 246, 0.22);
}

.compare tbody tr:hover .col-mano {
  background: rgba(0, 230, 246, 0.06);
}

.compare .yes {
  color: var(--emerald);
  font-weight: bold;
}

.compare .no {
  color: var(--rose);
  font-weight: bold;
}

.compare-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
}

.compare-badge--yes {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.1);
}

.compare-badge--no {
  background: rgba(244, 63, 94, 0.12);
  color: var(--rose);
  border: 1px solid rgba(244, 63, 94, 0.25);
  box-shadow: 0 0 8px rgba(244, 63, 94, 0.1);
}

.compare-badge--warning {
  background: rgba(255, 176, 32, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 176, 32, 0.25);
  box-shadow: 0 0 8px rgba(255, 176, 32, 0.1);
}

.compare-badge--neutral-yes {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-dim);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.compare-svg {
  width: 11px;
  height: 11px;
}

.compare-price-mano {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 230, 246, 0.15);
}

.compare-price-bootcamp {
  font-weight: 700;
  color: var(--rose);
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.15);
}

/* Beautiful micro-interactions on list badge hovers */
.compare-status:hover .compare-badge--yes {
  transform: scale(1.15);
  background: rgba(16, 185, 129, 0.22);
  border-color: var(--emerald);
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.35);
}

.compare-status:hover .compare-badge--no {
  transform: scale(1.15);
  background: rgba(244, 63, 94, 0.22);
  border-color: var(--rose);
  box-shadow: 0 0 14px rgba(244, 63, 94, 0.35);
}

.compare-status:hover .compare-badge--warning {
  transform: scale(1.15);
  background: rgba(255, 176, 32, 0.22);
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(255, 176, 32, 0.35);
}

.compare-status:hover .compare-badge--neutral-yes {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--ink);
  color: #fff;
}

/* ═══ TESTIMONIALS (Luxury Cards Grid) ═══ */
.testimonials {
  background: var(--base);
  padding: 4.5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.test-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-top-color: var(--glass-border-strong);
  border-bottom-color: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  padding: 2rem;
  padding-top: 2.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-bloom);
  position: relative;
  overflow: hidden;
}

.test-card::before {
  content: '“';
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-style: italic;
  color: var(--cyan);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.test-card:hover {
  border-color: rgba(0, 230, 246, 0.35);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55), 0 0 25px rgba(0, 230, 246, 0.12);
}

.test-stars {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 16px;
}

.test-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--ink-dim);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  background: rgba(0, 230, 246, 0.08);
  border: 1px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 230, 246, 0.15);
}

.test-name {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--ink-dim);
}

@media(max-width:768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══ PRICING SECTION (World-Class Cohort Card) ═══ */
.pricing {
  background: var(--void);
  padding: 5.5rem 0;
}

.urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 176, 32, 0.08);
  border: 1px solid rgba(255, 176, 32, 0.28);
  border-radius: 10px;
  padding: 12px 24px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 176, 32, 0.05);
}

.countdown span {
  font-weight: 700;
  color: #fff;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 230, 246, 0.3);
  border-top-color: var(--glass-border-strong);
  border-bottom-color: rgba(0, 0, 0, 0.7);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-bloom), var(--shadow-cyan-bloom);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 26px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 230, 246, 0.3) 60deg,
    transparent 120deg,
    rgba(168, 85, 247, 0.2) 200deg,
    transparent 260deg,
    rgba(0, 230, 246, 0.15) 340deg,
    transparent 360deg
  );
  z-index: -1;
  animation: pricing-ring-rotate 8s linear infinite;
  opacity: 0.6;
}

@keyframes pricing-ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pricing-card>* {
  position: relative;
  z-index: 2;
}

.pricing-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(0, 230, 246, 0.55);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 230, 246, 0.35);
}

.popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan) 0%, #3b82f6 100%);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 230, 246, 0.3);
}

.price-old {
  font-size: 16px;
  color: var(--ink-dim);
  text-decoration: line-through;
  opacity: 0.7;
}

.price-now {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: #fff;
  display: block;
  line-height: 1;
  margin: 10px 0;
}

.price-now span {
  background: linear-gradient(135deg, #ffffff 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(0, 230, 246, 0.3);
}

.price-inr {
  font-family: var(--font-data);
  font-size: 14.5px;
  color: var(--ink-dim);
}

.discount-pill {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 50px;
  margin: 10px 0 1.5rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.discount-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
  animation: discount-shimmer 3s ease-in-out infinite;
}

@keyframes discount-shimmer {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

.pricing-features {
  text-align: left;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  list-style: none;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .feat-check {
  color: var(--cyan);
  margin-right: 12px;
  font-weight: bold;
  font-size: 16px;
}

.guarantee {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--rim-strong);
  border-radius: 16px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  margin-top: 1.25rem;
  text-align: left;
}

.guarantee .shield {
  font-size: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0, 230, 246, 0.2));
}

.guarantee strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.guarantee p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.65;
}

.trust-trio {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.trust-trio span {
  font-family: var(--font-data);
  font-size: 11.5px;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.8;
}

/* ═══ FAQ SECTION (Smooth Accordions) ═══ */
.faq {
  padding: 4.5rem 0;
  background: var(--base);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--rim);
  transition: var(--transition);
}

.faq-item[open] {
  border-left: 3px solid var(--cyan);
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 17px;
  color: #fff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 22px;
  color: var(--cyan);
  transition: var(--transition);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--rose);
}

.faq-answer {
  padding: 0 1.5rem 1.75rem;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.75;
}

/* ═══ FINAL CTA (Gradient Spectrums) ═══ */
.final-cta {
  background: var(--void);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 246, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 48px);
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
}

.final-cta h2 span {
  background: linear-gradient(135deg, #ffffff 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta .sub {
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.final-cta .ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.final-cta .micro {
  font-family: var(--font-data);
  font-size: 12.5px;
  color: var(--ink-dim);
  opacity: 0.8;
}

/* ═══ FOOTER STYLING ═══ */
.footer {
  background: #060913;
  border-top: 1px solid var(--rim);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 850;
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}

.footer-brand-name span {
  color: var(--cyan);
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--ink-dim);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 16px;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-copy {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--ink-muted);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink-dim);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14.5px;
  color: var(--ink-dim);
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--cyan);
  transform: translateX(2px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--rim);
  padding-top: 2rem;
  font-family: var(--font-data);
  font-size: 11.5px;
  color: var(--ink-muted);
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ═══ MOBILE STICKY BOTTOM CONVERSION BAR ═══ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  background: rgba(11, 15, 25, 0.95);
  border-top: 1px solid var(--rim-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 900;
  gap: 14px;
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.5);
}

@media(max-width:768px) {
  .mobile-sticky {
    display: flex;
  }

  body {
    padding-bottom: 84px;
  }
}

.sticky-free {
  flex: 1;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rim-strong);
  color: var(--ink);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  transition: var(--transition);
}

.sticky-free:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--cyan);
}

.sticky-buy {
  flex: 1;
  height: 50px;
  background: linear-gradient(135deg, var(--cyan) 0%, #0077f6 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(0, 230, 246, 0.35);
  transition: var(--transition);
}

.sticky-buy:hover {
  background: linear-gradient(135deg, #00f5ff 0%, #3b82f6 100%);
  box-shadow: 0 8px 25px rgba(0, 230, 246, 0.5);
}

/* ═══ WORLD-CLASS SCROLL REVEALS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ DESKTOP HERO BOTTOM ALIGNMENT & PREMIUM ANIMATION ═══ */
@media (min-width: 1025px) {
  .hero .container {
    align-items: end;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
  }

  .hero-left .hero-ctas {
    margin-bottom: 0;
  }

  .hero-right {
    display: flex;
    flex-direction: column;
  }
}

/* Premium Staggered Micro-Reveal for Bottom Aligning Elements */
.hero-right.reveal .hero-proof {
  opacity: 0;
  transform: translateY(32px);
  /* Deeper translation for dynamic bottom-aligning motion */
  transition: opacity 1200ms var(--ease), transform 1200ms var(--ease);
}

.hero-right.reveal.visible .hero-proof {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   ═══ ENTERPRISE CUSTOMER REVIEWS & RATINGS SYSTEM (V2 VOID) ═══
   ───────────────────────────────────────────────────────────── */

.reviews-sec {
  background: var(--void);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.reviews-sec::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 230, 246, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* Overall Statistics Panel */
.reviews-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.5fr;
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(18, 24, 38, 0.4) 0%, rgba(11, 15, 25, 0.6) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top-color: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  align-items: center;
}

.rev-score-col {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-right: 2rem;
}

.rev-score-massive {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 64px);
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.rev-score-massive span {
  font-size: 24px;
  color: var(--ink-muted);
  font-weight: 500;
}

.rev-stars-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.rev-stars-row svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(255, 176, 32, 0.3));
}

.rev-count-sub {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Accordion Smooth Expand/Collapse Container */
.reviews-collapse-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 600ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  width: 100%;
}

.reviews-collapse-wrapper.expanded {
  grid-template-rows: 1fr;
}

.reviews-collapse-inner {
  min-height: 0;
  width: 100%;
}

/* Neat Toggle Expand Button */
.btn-toggle-reviews {
  margin-top: 16px;
  height: 38px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0 1.25rem;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 300ms var(--ease), background-color 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease), color 300ms var(--ease);
}

.btn-toggle-reviews:hover {
  background: rgba(0, 230, 246, 0.06);
  border-color: rgba(0, 230, 246, 0.25);
  color: var(--cyan);
  box-shadow: 0 4px 12px rgba(0, 230, 246, 0.05);
  transform: translateY(-1px) scale(1.03);
}

.btn-toggle-reviews:active {
  transform: translateY(0) scale(0.97);
}

.btn-toggle-reviews svg {
  width: 12px;
  height: 12px;
  transition: transform 550ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-toggle-reviews.active {
  background: rgba(0, 230, 246, 0.10);
  border-color: rgba(0, 230, 246, 0.35);
  color: var(--cyan);
  box-shadow: 0 4px 15px rgba(0, 230, 246, 0.1);
}

.btn-toggle-reviews.active svg {
  transform: rotate(180deg);
}

/* Distribution Bars */
.rev-distribution-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 1rem;
}

.rev-dist-row {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 200ms var(--ease);
}

.rev-dist-row:hover {
  transform: translateX(4px);
}

.rev-dist-label {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--ink-dim);
  min-width: 45px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rev-dist-track {
  flex-grow: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.rev-dist-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, #00aaff 100%);
  box-shadow: 0 0 10px rgba(0, 230, 246, 0.2);
  transition: width 800ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
}

.rev-dist-pct {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--ink-muted);
  min-width: 36px;
  text-align: right;
}

.rev-dist-row:hover .rev-dist-pct {
  color: #fff;
}

/* Trust Metrics Pillar / Write a Review CTA Container */
.rev-trust-col {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.rev-trust-col .btn-write-review {
  height: 52px;
  padding: 0 2rem;
  font-size: 15px;
  background: linear-gradient(135deg, rgba(0, 230, 246, 0.12) 0%, rgba(0, 119, 246, 0.05) 100%);
  border: 1px solid rgba(0, 230, 246, 0.35);
  box-shadow: 0 6px 20px rgba(0, 230, 246, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 300ms var(--ease);
}

.rev-trust-col .btn-write-review svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  transition: transform 300ms var(--ease);
}

.rev-trust-col .btn-write-review:hover {
  background: linear-gradient(135deg, rgba(0, 230, 246, 0.22) 0%, rgba(0, 119, 246, 0.12) 100%);
  border-color: var(--cyan);
  box-shadow: 0 8px 30px rgba(0, 230, 246, 0.25), 0 0 15px rgba(0, 230, 246, 0.1);
  transform: translateY(-2px);
  color: #fff;
}

.rev-trust-col .btn-write-review:hover svg {
  transform: rotate(15deg) scale(1.1);
}
/* ─────────────────────────────────────────────────────────────
   REVIEWS SCROLLABLE CAROUSEL & DOTS
   ───────────────────────────────────────────────────────────── */

.rev-carousel-container {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.rev-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 0 20px 0;
  scrollbar-width: none;
  cursor: grab;
}

.rev-carousel-track::-webkit-scrollbar {
  display: none;
}

.rev-carousel-track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

/* Single combined highly polished .rev-card styling */
.rev-card {
  flex: 0 0 380px;
  max-width: 85vw;
  scroll-snap-align: start;
  user-select: none;
  background: linear-gradient(135deg, rgba(18, 24, 38, 0.30) 0%, rgba(8, 11, 20, 0.50) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), border-color 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Top cyan accent line */
.rev-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 246, 0.35), transparent);
  filter: blur(1px);
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

/* Diagonal light sweep */
.rev-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.rev-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 230, 246, 0.10);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 230, 246, 0.04);
}

.rev-card:hover::before,
.rev-card:hover::after {
  opacity: 1;
}

/* Card Top: Avatar + Info */
.rev-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--elevated) 0%, rgba(27, 35, 54, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 230, 246, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06), 0 4px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  object-fit: cover;
  letter-spacing: 0.02em;
}

.rev-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.rev-card-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rev-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.rev-card-role {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
  margin-top: -1px;
  letter-spacing: 0.01em;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--emerald);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.badge-verified svg {
  width: 9px;
  height: 9px;
}

.rev-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rev-card-stars {
  display: flex;
  gap: 3px;
}

.rev-card-stars svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  filter: drop-shadow(0 0 4px rgba(255, 176, 32, 0.25));
}

.rev-card-stars svg.muted {
  color: rgba(255, 255, 255, 0.08);
  filter: none;
}

.rev-card-date {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--ink-muted);
}

/* Card Body: Comment */
.rev-card-body {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.65;
  flex-grow: 1;
}

/* Card Tags: stacked pros/cons */
.rev-card-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rev-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-family: var(--font-body);
  line-height: 1.4;
}

.rev-tag svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  stroke-width: 2.5;
}

.rev-tag-pro {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.12);
  color: var(--emerald);
}

.rev-tag-con {
  background: rgba(244, 63, 94, 0.05);
  border: 1px solid rgba(244, 63, 94, 0.10);
  color: var(--rose);
}

/* Card Bottom: Recommend Badge */
.rev-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: none;
  padding-top: 0;
  margin-top: 4px;
}

.rev-helpful-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms var(--ease);
  height: 30px;
}

.rev-helpful-btn svg {
  width: 13px;
  height: 13px;
  color: var(--ink-muted);
  transition: transform 200ms var(--ease), color 250ms var(--ease);
}

.rev-helpful-btn:hover {
  background: rgba(0, 230, 246, 0.08);
  border-color: rgba(0, 230, 246, 0.25);
  color: var(--cyan);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 230, 246, 0.1);
}

.rev-helpful-btn:hover svg {
  transform: scale(1.1);
  color: var(--cyan);
}

.rev-helpful-btn.active {
  background: rgba(0, 230, 246, 0.12);
  border-color: rgba(0, 230, 246, 0.4);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 230, 246, 0.15);
}

.rev-helpful-btn.active svg {
  color: var(--cyan);
}

.rev-rec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-body);
}

.rev-rec svg {
  width: 15px;
  height: 15px;
}

.rev-rec.yes {
  color: var(--emerald);
}

.rev-rec.no {
  color: var(--ink-muted);
}

/* Empty State */
.rev-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(18, 24, 38, 0.3) 0%, rgba(11, 15, 25, 0.5) 100%);
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.rev-empty span:first-child {
  font-size: 32px;
  opacity: 0.3;
}

.rev-empty h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.rev-empty p {
  font-size: 13.5px;
  color: var(--ink-dim);
  max-width: 320px;
  margin: 0 auto;
}

/* Loading State inside Carousel */
.rev-carousel-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  width: 100%;
}

/* Floating Navigation Arrows */
.rev-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(18, 24, 38, 0.80);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 300ms var(--ease);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.rev-carousel-arrow:hover {
  background: rgba(0, 230, 246, 0.1);
  border-color: rgba(0, 230, 246, 0.3);
  color: var(--cyan);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 230, 246, 0.15);
}

.rev-carousel-arrow--prev {
  left: -24px;
}

.rev-carousel-arrow--next {
  right: -24px;
}

.rev-carousel-arrow.dimmed {
  opacity: 0.35;
  pointer-events: none;
}

.rev-carousel-arrow svg {
  width: 20px;
  height: 20px;
}

/* Pagination Dots */
.rev-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 300ms var(--ease);
}

.rev-dot:hover {
  background: rgba(0, 230, 246, 0.4);
}

.rev-dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 230, 246, 0.5);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .rev-carousel-arrow {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .rev-carousel-track .rev-card {
    flex: 0 0 calc(100vw - 48px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   SUBMISSION FORM DIALOG MODAL (V2 NEON GLASS)
   ═══════════════════════════════════════════════════════════════ */
.rev-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.rev-modal-overlay.active {
  display: flex;
}

.rev-modal-card {
  background: linear-gradient(135deg, rgba(15, 22, 42, 0.95) 0%, rgba(6, 9, 21, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(0, 230, 246, 0.3);
  box-shadow: 0 25px 70px -10px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 230, 246, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  animation: modalScaleUp 350ms cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.rev-modal-header {
  padding: 1.15rem 2rem 0.95rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rev-modal-header h3 {
  font-family: var(--font-display);
  font-weight: 850;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rev-modal-header h3 svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

.btn-close-modal {
  background: transparent;
  border: none;
  color: var(--ink-muted);
  font-size: 24px;
  cursor: pointer;
  transition: color 200ms var(--ease);
  outline: none;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close-modal:hover {
  color: #fff;
}

.rev-modal-body {
  padding: 1.25rem 2rem;
  overflow-y: auto;
  flex-grow: 1;
}

@media (min-width: 769px) {
  .rev-modal-body {
    overflow-y: hidden !important;
  }
}

/* Custom interactive ratings */
.rev-rating-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.65rem 1.25rem;
}

.rev-selector-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rev-selector-stars {
  display: flex;
  gap: 8px;
}

.rev-selector-stars svg {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 150ms var(--ease), color 150ms var(--ease), filter 150ms var(--ease);
}

.rev-selector-stars svg:hover {
  transform: scale(1.2);
}

.rev-selector-stars svg.active {
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(255, 176, 32, 0.6));
}

.rev-selector-desc {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--gold);
  min-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Form fields layout */
.rev-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.rev-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0.75rem;
}

.rev-form-group.full-width {
  grid-column: 1 / -1;
}

.rev-form-group label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink-dim);
}

.rev-form-group input[type="text"],
.rev-form-group input[type="email"],
.rev-form-group select,
.rev-form-group textarea {
  width: 100%;
  background: rgba(11, 15, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.rev-form-group input:focus,
.rev-form-group select:focus,
.rev-form-group textarea:focus {
  border-color: rgba(0, 230, 246, 0.45);
  box-shadow: 0 0 12px rgba(0, 230, 246, 0.2), inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.rev-form-group textarea {
  height: 80px;
  resize: none;
}

.rev-char-counter {
  align-self: flex-end;
  font-family: var(--font-data);
  font-size: 10px;
  color: var(--ink-muted);
  margin-top: 1px;
}

/* Custom Emerald/Rose Recommendation Toggle Switch */
.rev-rec-switch-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px 14px;
}

.rev-switch-label {
  display: flex;
  flex-direction: column;
}

.rev-switch-label strong {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 13px;
  color: #fff;
}

.rev-switch-label span {
  font-size: 10.5px;
  color: var(--ink-muted);
}

.rev-switch-control {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.rev-switch-control input {
  opacity: 0;
  width: 0;
  height: 0;
}

.rev-switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-radius: 24px;
  transition: background-color 300ms var(--ease), border-color 300ms var(--ease);
}

.rev-switch-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: var(--rose);
  border-radius: 50%;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), background-color 300ms var(--ease);
}

.rev-switch-control input:checked + .rev-switch-slider {
  background-color: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.rev-switch-control input:checked + .rev-switch-slider:before {
  transform: translateX(24px);
  background-color: var(--emerald);
}

/* Modal form Footer actions */
.rev-modal-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-modal-cancel {
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0 1.25rem;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 13.5px;
  cursor: pointer;
  transition: all 200ms var(--ease);
}

.btn-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.btn-modal-submit {
  height: 42px;
  background: linear-gradient(135deg, var(--cyan) 0%, #0077f6 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 8px;
  padding: 0 1.5rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 13.5px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 230, 246, 0.25);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-modal-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 230, 246, 0.4);
  background: linear-gradient(135deg, #00f5ff 0%, #3b82f6 100%);
}

.btn-modal-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE LAYOUT BREAKPOINTS
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .reviews-dashboard {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .rev-score-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }

  .rev-trust-col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 0;
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .reviews-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-toolbar .rev-search-wrapper {
    max-width: 100%;
  }

  .btn-write-review {
    width: 100%;
    justify-content: center;
  }

  .rev-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rev-modal-card {
    max-height: calc(100vh - 20px);
    max-width: 620px;
  }
}

@media (max-width: 576px) {
  .rev-trust-col {
    grid-template-columns: 1fr;
  }
}

/* Pros & Cons Dynamic Tags list */
.rev-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  min-height: 24px;
}

.rev-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 230, 246, 0.06);
  border: 1px solid rgba(0, 230, 246, 0.15);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--cyan);
  transition: all 200ms var(--ease);
}

.rev-tag-item:hover {
  background: rgba(0, 230, 246, 0.12);
  border-color: rgba(0, 230, 246, 0.3);
}

#cons-tags-list .rev-tag-item {
  background: rgba(244, 63, 94, 0.06);
  border-color: rgba(244, 63, 94, 0.15);
  color: var(--rose);
}

#cons-tags-list .rev-tag-item:hover {
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.3);
}

.btn-remove-tag {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 150ms var(--ease);
}

.btn-remove-tag:hover {
  opacity: 1;
}

/* Media Uploader Previews list */
.media-previews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.media-preview-item {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 24, 38, 0.6);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.media-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-preview-icon {
  font-size: 20px;
}

.btn-remove-media {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(4, 6, 12, 0.8);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 150ms var(--ease);
}

.btn-remove-media:hover {
  background: var(--rose);
  border-color: transparent;
}

/* Landscape Modal Two-Column Layout */
.rev-modal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.rev-modal-col-left,
.rev-modal-col-right {
  display: flex;
  flex-direction: column;
}

.rev-modal-col-left {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-right: 2rem;
}

/* Photo Upload Dropzone */
.rev-media-dropzone {
  border: 2px dashed rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 250ms var(--ease), background 250ms var(--ease);
  background: rgba(11, 15, 25, 0.3);
  min-height: 80px;
}

.rev-media-dropzone:hover,
.rev-media-dropzone.drag-over {
  border-color: rgba(0, 230, 246, 0.4);
  background: rgba(0, 230, 246, 0.03);
  box-shadow: 0 0 12px rgba(0, 230, 246, 0.1);
}

.rev-media-dropzone.has-file {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.03);
}

.rev-media-dropzone.has-file:hover {
  border-color: rgba(16, 185, 129, 0.6);
  background: rgba(16, 185, 129, 0.05);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}

.rev-media-dropzone.has-file .dropzone-content {
  display: none;
}

.rev-media-dropzone .media-previews-container {
  margin-top: 0;
  display: flex;
  justify-content: center;
}

.rev-modal-footer-inline {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 1.5rem;
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

.dropzone-icon {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.2);
  transition: color 250ms var(--ease);
}

.rev-media-dropzone:hover .dropzone-icon,
.rev-media-dropzone.drag-over .dropzone-icon {
  color: var(--cyan);
}

.dropzone-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-dim);
}

.dropzone-text strong {
  color: var(--cyan);
}

.dropzone-hint {
  font-family: var(--font-data);
  font-size: 9.5px;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
}

/* Responsive: Stack columns on mobile */
@media (max-width: 768px) {
  .rev-modal-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rev-modal-col-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .rev-modal-card {
    max-width: 620px;
  }
}

/* Spinner Keyframes */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   PRICING MODAL OVERLAY (V2 PREMIUM GLOW)
   ========================================================================== */
.pricing-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 12, 0.9);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  padding: 40px 20px;
  overflow-y: auto;
}

.pricing-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.pricing-modal-card {
  position: relative;
  width: 100%;
  max-width: 900px; /* Expanded for landscape card */
  margin: auto;
  border-radius: 24px;
  animation: modalScaleUp 350ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pricing-modal-overlay:not(.active) .pricing-modal-card {
  animation: none;
}

.btn-close-pricing-modal {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 24, 35, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ink-silver);
  font-size: 20px;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 230, 246, 0.2);
  z-index: 10002;
  transition: all 0.2s ease;
}

.btn-close-pricing-modal:hover {
  background: #ff4a6b;
  border-color: #ff4a6b;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 74, 107, 0.4);
}

/* Adjustments to make pricing-card look spectacular inside modal */
.pricing-card.modal-version {
  margin: 0;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 
              0 0 40px rgba(0, 230, 246, 0.15), 
              inset 0 0 32px rgba(255, 255, 255, 0.02);
  overflow: hidden; /* Prevent inner scrolling completely */
}

/* Landscape Design for the Pricing Card inside the Modal */
.pricing-card.modal-version.landscape-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
  padding: 1.75rem 2.25rem;
  max-width: 100%;
  text-align: left;
}

.pricing-card.modal-version.landscape-layout .pricing-left {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 2rem;
  text-align: center;
}

.pricing-card.modal-version.landscape-layout .pricing-left .popular-badge {
  margin-bottom: 1rem;
}

.pricing-card.modal-version.landscape-layout .pricing-left .price-now {
  font-size: 70px;
  margin: 5px 0;
  filter: drop-shadow(0 0 15px rgba(0, 230, 246, 0.45));
}

.pricing-card.modal-version.landscape-layout .pricing-left .discount-pill {
  margin: 8px 0 0.75rem;
}

.pricing-card.modal-version.landscape-layout .pricing-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-card.modal-version.landscape-layout .pricing-features {
  margin-bottom: 1rem;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-card.modal-version.landscape-layout .pricing-features li {
  padding: 6px 0;
  font-size: 14px;
}

.pricing-card.modal-version.landscape-layout .btn-gold {
  height: 52px;
  font-size: 14.5px;
  margin-bottom: 1rem;
}

.pricing-card.modal-version.landscape-layout .guarantee {
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  gap: 12px;
}

.pricing-card.modal-version.landscape-layout .guarantee .shield {
  font-size: 26px;
}

.pricing-card.modal-version.landscape-layout .guarantee strong {
  font-size: 14px;
  margin-bottom: 2px;
}

.pricing-card.modal-version.landscape-layout .guarantee p {
  font-size: 12px;
  line-height: 1.5;
}

.pricing-card.modal-version.landscape-layout .trust-trio {
  margin-top: 0.25rem;
  gap: 20px;
}

/* Responsive adjustment for close button and landscape layout on smaller screens */
@media (max-width: 768px) {
  .pricing-modal-card {
    max-width: 500px;
  }
  .btn-close-pricing-modal {
    top: 15px;
    right: 15px;
  }
  .pricing-card.modal-version.landscape-layout {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    text-align: center;
  }
  .pricing-card.modal-version.landscape-layout .pricing-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 2rem;
    width: 100%;
  }
  .pricing-card.modal-version.landscape-layout .pricing-right {
    width: 100%;
  }
  .pricing-card.modal-version.landscape-layout .pricing-features {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .pricing-card.modal-version.landscape-layout {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   GLASSMORPHIC AUTH MODAL (V2 ELITE)
   ========================================================================== */
.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 11000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
  padding: 20px;
}

.auth-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(0, 230, 246, 0.1),
              inset 0 0 32px rgba(255, 255, 255, 0.02);
  animation: modalScaleUp 350ms var(--ease);
}

.btn-close-auth-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-dim);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-close-auth-modal:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg);
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-modal-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.auth-modal-header h3 span {
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0, 230, 246, 0.3);
}

.auth-modal-header p {
  font-size: 14px;
  color: var(--ink-dim);
}

.auth-message-box {
  display: none;
  font-size: 13.5px;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-input-group label {
  display: none; /* Hide labels, rely on placeholders to match mockup */
}

.auth-input {
  width: 100%;
  height: 52px;
  background: #0A0B10;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 0 1.25rem;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  transition: var(--transition);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6);
}

.auth-input::placeholder {
  color: #60647A;
}

.auth-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.btn-auth-submit {
  width: 100%;
  height: 54px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 0.5rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #00F0FF, #8A2BE2);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.25), 0 4px 20px rgba(138, 43, 226, 0.25);
  transition: all 0.3s ease;
}

.btn-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 240, 255, 0.35), 0 6px 25px rgba(138, 43, 226, 0.35);
}

.social-auth-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--font-data);
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-divider span {
  padding: 0 10px;
}

.google-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rim-strong);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: var(--transition);
}

.google-signin-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.auth-footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  font-size: 14px;
  font-weight: 500;
}

.auth-footer-links a {
  color: #8C93A8;
  transition: var(--transition);
  text-decoration: none;
}

.auth-footer-links a:hover {
  color: #fff;
}

/* ==========================================================================
   EMBEDDED CHECKOUT VIEW (INLINE MORPH UX)
   ========================================================================== */
.pricing-checkout-view {
  display: flex;
  flex-direction: column;
}

.checkout-back-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--cyan);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.checkout-back-link:hover {
  color: #fff;
  transform: translateX(-3px);
}

.checkout-header {
  margin-bottom: 1.25rem;
}

.checkout-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.checkout-subtitle {
  font-size: 13px;
  color: var(--ink-dim);
}

.checkout-price-summary {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.checkout-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0, 230, 246, 0.35);
}

.checkout-original {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink-muted);
  text-decoration: line-through;
}

.coupon-section {
  display: flex;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.coupon-section input {
  flex: 1;
  height: 44px;
  background: rgba(15, 20, 35, 0.6);
  border: 1px solid var(--rim-strong);
  border-radius: 10px;
  padding: 0 0.85rem;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #fff;
  transition: var(--transition);
}

.coupon-section input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}

.coupon-apply {
  height: 44px;
  padding: 0 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rim-strong);
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: #fff;
  transition: var(--transition);
}

.coupon-apply:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.checkout-divider {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 11px;
  color: var(--ink-muted);
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.checkout-divider::before,
.checkout-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-divider span {
  padding: 0 10px;
}

.gateway-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1rem;
}

.gateway-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14.5px;
  color: #fff;
  transition: var(--transition);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.gateway-btn svg {
  width: 18px;
  height: 18px;
}

.gateway-btn.razorpay {
  background: linear-gradient(135deg, #0b72e7 0%, #084ca1 100%);
  box-shadow: 0 4px 15px rgba(11, 114, 231, 0.25);
}

.gateway-btn.razorpay:hover {
  background: linear-gradient(135deg, #1d82f8 0%, #0b5cb7 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 114, 231, 0.4);
}

.gateway-btn.stripe {
  background: linear-gradient(135deg, #635bff 0%, #463ebb 100%);
  box-shadow: 0 4px 15px rgba(99, 91, 255, 0.25);
}

.gateway-btn.stripe:hover {
  background: linear-gradient(135deg, #7c75ff 0%, #5149d1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 91, 255, 0.4);
}

.gateway-btn.paypal {
  background: linear-gradient(135deg, #003087 0%, #001c64 100%);
  box-shadow: 0 4px 15px rgba(0, 48, 135, 0.25);
}

.gateway-btn.paypal:hover {
  background: linear-gradient(135deg, #0045c4 0%, #00287a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 48, 135, 0.4);
}

.checkout-spinner {
  display: none;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(0, 230, 246, 0.1);
  border-top-color: var(--cyan);
  border-radius: 50%;
  margin: 1rem auto 0;
  animation: spin 0.8s linear infinite;
}

.checkout-spinner.active {
  display: block;
}

/* ==========================================================================
   REVIEWS HORIZONTAL CAROUSEL & NAVIGATION CONTROLS
   ========================================================================== */

/* ═══ GUEST CTA HORIZONTAL STACKING IN RIGHT COLUMN ═══ */
.hero-right .hero-ctas {
  display: flex;
  flex-direction: row !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  margin-top: 1.05rem !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
}

.hero-right .hero-ctas .btn-gold {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 140px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 12.5px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  padding: 12px 20px !important;
  height: auto !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.hero-right .hero-ctas .btn-gold--outline:hover {
  background: rgba(15, 23, 42, 0.75) !important;
  color: #ffffff !important;
  border-color: rgba(0, 230, 246, 0.45) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 230, 246, 0.15) !important;
  transform: translateY(-2px) !important;
}

.hero-right .hero-ctas .btn-gold--filled:hover {
  transform: translateY(-3px) scale(1.025) !important;
  box-shadow: 0 12px 35px rgba(0, 114, 255, 0.5), 0 0 25px rgba(0, 230, 246, 0.35) !important;
}