/* ==========================================================================
   SERVO FIEL — Premium Quiz Funnel
   A million-dollar design system inspired by Stripe, Linear, Vercel & Apple.
   ========================================================================== */

/* ==========================================================================
   0. DESIGN TOKENS
   ========================================================================== */
:root {
  /* ── Color: Deep Ocean Blue Palette (HSL for precision) ── */
  --color-bg:              hsl(210, 47%, 15%);
  --color-bg-deep:         hsl(210, 50%, 11%);
  --color-bg-elevated:     hsl(210, 42%, 20%);
  --color-bg-card:         hsl(210, 35%, 25%);
  --color-surface:         hsl(210, 30%, 30%);

  /* ── Color: Champagne Gold Accent ── */
  --color-primary:         hsl(42, 52%, 72%);
  --color-primary-hover:   hsl(42, 60%, 78%);
  --color-primary-deep:    hsl(42, 45%, 58%);
  --color-primary-muted:   hsla(42, 52%, 72%, 0.10);
  --color-primary-glow:    hsla(42, 52%, 72%, 0.22);
  --color-primary-subtle:  hsla(42, 52%, 72%, 0.06);

  /* ── Color: Secondary Accent — Soft Silver-Blue ── */
  --color-accent:          hsl(210, 60%, 70%);
  --color-accent-muted:    hsla(210, 60%, 70%, 0.10);

  /* ── Color: Text Hierarchy ── */
  --color-text:            hsl(40, 30%, 95%);
  --color-text-muted:      hsl(210, 25%, 72%);
  --color-text-dim:        hsl(210, 20%, 56%);
  --color-btn-text:        hsl(210, 47%, 14%);

  /* ── Color: Borders & Glass ── */
  --color-border:          hsla(210, 30%, 80%, 0.07);
  --color-border-hover:    hsla(42, 52%, 72%, 0.30);
  --color-border-subtle:   hsla(210, 30%, 80%, 0.04);
  --color-glass:           hsla(210, 35%, 22%, 0.55);
  --color-glass-heavy:     hsla(210, 40%, 18%, 0.75);

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* ── Border Radius ── */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* ── Multi-Layer Shadow System (blue-tinted) ── */
  --shadow-xs:   0 1px 2px hsla(210, 50%, 10%, 0.15);
  --shadow-sm:   0 2px 8px hsla(210, 50%, 10%, 0.18),
                 0 1px 3px hsla(210, 50%, 10%, 0.12);
  --shadow-md:   0 4px 16px hsla(210, 50%, 10%, 0.22),
                 0 2px 6px hsla(210, 50%, 10%, 0.15),
                 0 0 1px hsla(210, 50%, 10%, 0.10);
  --shadow-lg:   0 12px 40px hsla(210, 50%, 8%, 0.30),
                 0 4px 16px hsla(210, 50%, 10%, 0.20),
                 0 2px 4px hsla(210, 50%, 10%, 0.12);
  --shadow-xl:   0 24px 64px hsla(210, 50%, 6%, 0.40),
                 0 8px 24px hsla(210, 50%, 8%, 0.25),
                 0 4px 8px hsla(210, 50%, 10%, 0.15),
                 0 0 1px hsla(210, 50%, 10%, 0.10);
  --shadow-glow: 0 0 40px hsla(42, 52%, 72%, 0.12),
                 0 0 80px hsla(42, 52%, 72%, 0.06);
  --shadow-glow-strong: 0 0 30px hsla(42, 52%, 72%, 0.20),
                        0 0 60px hsla(42, 52%, 72%, 0.10),
                        0 0 100px hsla(42, 52%, 72%, 0.05);

  /* ── Timing ── */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:   0.35s var(--ease-in-out);
  --transition-fast: 0.2s var(--ease-in-out);
  --transition-slow: 0.6s var(--ease-out);
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}

::-webkit-scrollbar-thumb {
  background: hsla(42, 52%, 72%, 0.25);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsla(42, 52%, 72%, 0.40);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: hsla(42, 52%, 72%, 0.25) var(--color-bg-deep);
}

/* ── Custom Selection ── */
::selection {
  background: hsla(42, 52%, 72%, 0.30);
  color: var(--color-text);
}

::-moz-selection {
  background: hsla(42, 52%, 72%, 0.30);
  color: var(--color-text);
}


/* ==========================================================================
   2. KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-60px);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px hsla(42, 52%, 72%, 0.15),
                0 0 40px hsla(42, 52%, 72%, 0.08);
  }
  50% {
    box-shadow: 0 0 30px hsla(42, 52%, 72%, 0.30),
                0 0 60px hsla(42, 52%, 72%, 0.15),
                0 0 100px hsla(42, 52%, 72%, 0.08);
  }
}

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

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

@keyframes ripple-effect {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes progress-glow {
  0%, 100% {
    box-shadow: 0 0 8px hsla(42, 52%, 72%, 0.30),
                0 0 16px hsla(42, 52%, 72%, 0.15);
  }
  50% {
    box-shadow: 0 0 16px hsla(42, 52%, 72%, 0.50),
                0 0 32px hsla(42, 52%, 72%, 0.25),
                0 0 48px hsla(42, 52%, 72%, 0.10);
  }
}

@keyframes dot-pulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stagger-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes checkmark-draw {
  0% {
    stroke-dashoffset: 24;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(30px, -20px) scale(1.05); }
  50%      { transform: translate(-10px, -35px) scale(0.97); }
  75%      { transform: translate(-25px, 10px) scale(1.02); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 15px) scale(1.08); }
  66%      { transform: translate(20px, -25px) scale(0.95); }
}

@keyframes border-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes text-glow-pulse {
  0%, 100% {
    text-shadow: 0 0 20px hsla(42, 52%, 72%, 0.0);
  }
  50% {
    text-shadow: 0 0 30px hsla(42, 52%, 72%, 0.25),
                 0 0 60px hsla(42, 52%, 72%, 0.10);
  }
}


/* ==========================================================================
   3. PARTICLE CANVAS & BACKGROUND LAYERS
   ========================================================================== */

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Grid Pattern Overlay ── */
.grid-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    radial-gradient(circle, hsla(210, 30%, 80%, 0.8) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Floating Glow Orbs ── */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.4;
  will-change: transform;
}

.glow-orb--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, hsla(42, 52%, 72%, 0.10), transparent 70%);
  animation: orb-float-1 25s ease-in-out infinite;
}

.glow-orb--2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: -8%;
  background: radial-gradient(circle, hsla(210, 60%, 50%, 0.12), transparent 70%);
  animation: orb-float-2 30s ease-in-out infinite;
}

.glow-orb--3 {
  width: 350px;
  height: 350px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, hsla(42, 52%, 72%, 0.06), transparent 70%);
  animation: orb-float-1 35s ease-in-out infinite reverse;
}

/* ── Background Glow Effects ── */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  will-change: transform;
}

.bg-glow--top {
  width: clamp(400px, 60vw, 700px);
  height: 450px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse,
    hsla(42, 52%, 72%, 0.10) 0%,
    hsla(210, 60%, 50%, 0.04) 40%,
    transparent 70%
  );
}

.bg-glow--bottom {
  width: 550px;
  height: 550px;
  bottom: -180px;
  right: -120px;
  background: radial-gradient(
    circle,
    hsla(210, 50%, 35%, 0.30) 0%,
    hsla(210, 50%, 20%, 0.10) 40%,
    transparent 70%
  );
}


/* ==========================================================================
   4. APP WRAPPER & LAYOUT
   ========================================================================== */

.app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* Lucide icon defaults */
svg.lucide {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 2;
  flex-shrink: 0;
}

.main {
  padding-bottom: 4rem;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 1.5rem);
}

.container--narrow {
  max-width: 640px;
}

.container--wide {
  max-width: 960px;
}

.hidden {
  display: none !important;
}


/* ==========================================================================
   5. HEADER
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsla(210, 47%, 15%, 0.75);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

/* Subtle bottom glow line */
.header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(42, 52%, 72%, 0.12) 30%,
    hsla(42, 52%, 72%, 0.12) 70%,
    transparent
  );
}

.header__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  background: linear-gradient(135deg, var(--color-primary-muted), hsla(42, 52%, 72%, 0.05));
  border: 1px solid hsla(42, 52%, 72%, 0.18);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  transition: all var(--transition);
}

.logo__icon svg {
  width: 1rem;
  height: 1rem;
}

.logo__icon:hover {
  border-color: var(--color-border-hover);
  box-shadow: 0 0 20px hsla(42, 52%, 72%, 0.12);
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}


/* ==========================================================================
   6. PROGRESS BAR
   ========================================================================== */

.progress {
  height: 4px;
  background: hsla(210, 30%, 80%, 0.06);
  border-radius: 100px;
  overflow: visible;
  position: relative;
}

.progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--color-primary-deep),
    var(--color-primary),
    var(--color-primary-hover)
  );
  background-size: 200% 100%;
  border-radius: 100px;
  transition: width 0.5s var(--ease-out);
  position: relative;
  animation: progress-glow 2.5s ease-in-out infinite;
}

/* Sparkle at leading edge */
.progress__fill::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow:
    0 0 8px var(--color-primary),
    0 0 20px hsla(42, 52%, 72%, 0.35);
  opacity: 0.9;
  transition: opacity 0.3s;
}

/* Hide sparkle when width is 0 */
.progress__fill[style*="width: 0%"]::after,
.progress__fill[style*="width:0%"]::after {
  opacity: 0;
}


/* ==========================================================================
   7. STEPS & TRANSITIONS
   ========================================================================== */

.step {
  display: none;
  animation: fadeUp 0.6s var(--ease-out);
}

.step--active {
  display: block;
}

/* Step transition animations for JS-driven transitions */
.step-transition-enter {
  animation: slideInRight 0.5s var(--ease-out) forwards;
}

.step-transition-exit {
  animation: slideOutLeft 0.4s var(--ease-in-out) forwards;
}


/* ==========================================================================
   8. SECTION HEADERS
   ========================================================================== */

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  position: relative;
}

/* Decorative lines flanking the label */
.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(42, 52%, 72%, 0.35));
}

.section-label::after {
  background: linear-gradient(90deg, hsla(42, 52%, 72%, 0.35), transparent);
}

.section-label svg {
  width: 0.9rem;
  height: 0.9rem;
}


/* ==========================================================================
   9. BADGES
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-primary);
  background: var(--color-primary-muted);
  border: 1px solid hsla(42, 52%, 72%, 0.16);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer on badge */
.badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(42, 52%, 72%, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}

.badge svg {
  width: 0.85rem;
  height: 0.85rem;
}

.badge--result {
  background: hsla(42, 52%, 72%, 0.08);
  border-color: hsla(42, 52%, 72%, 0.22);
}

.badge--hero {
  background: hsla(42, 52%, 72%, 0.12);
  border-color: hsla(42, 52%, 72%, 0.28);
  font-size: 0.75rem;
  padding: 0.55rem 1.2rem;
}


/* ==========================================================================
   10. TYPOGRAPHY
   ========================================================================== */

.title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  background: linear-gradient(
    135deg,
    var(--color-text) 0%,
    hsla(40, 30%, 85%, 1) 50%,
    var(--color-text) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title--sm {
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  margin-bottom: 1.75rem;
}

.subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  max-width: 520px;
  line-height: 1.75;
}


/* ==========================================================================
   11. HERO ICON
   ========================================================================== */

.hero-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    hsla(42, 52%, 72%, 0.12),
    hsla(42, 52%, 72%, 0.03)
  );
  border: 1px solid hsla(42, 52%, 72%, 0.20);
  border-radius: 22px;
  color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

/* Inner glow */
.hero-icon::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    hsla(42, 52%, 72%, 0.15),
    transparent 50%,
    hsla(42, 52%, 72%, 0.08)
  );
  z-index: -1;
  opacity: 0.6;
}

.hero-icon svg {
  width: 2.2rem;
  height: 2.2rem;
}


/* ==========================================================================
   12. FEATURE PILLS
   ========================================================================== */

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.pill:hover {
  border-color: var(--color-border-hover);
  background: hsla(210, 35%, 22%, 0.70);
}

.pill svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--color-primary);
}


/* ==========================================================================
   13. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  max-width: 420px;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn svg {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform var(--transition);
}

/* ── Primary & CTA ── */
.btn--primary,
.btn--cta {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-deep) 100%
  );
  color: var(--color-btn-text);
  box-shadow:
    0 4px 20px hsla(42, 52%, 72%, 0.25),
    0 1px 3px hsla(42, 52%, 72%, 0.15),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.25);
}

/* Shimmer overlay */
.btn--primary::before,
.btn--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(0, 0%, 100%, 0.20),
    transparent
  );
  transform: skewX(-15deg);
  animation: shimmer 3.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.btn--primary:hover,
.btn--cta:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-hover) 0%,
    var(--color-primary) 100%
  );
  transform: translateY(-3px);
  box-shadow:
    0 8px 32px hsla(42, 52%, 72%, 0.35),
    0 4px 12px hsla(42, 52%, 72%, 0.20),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.30);
}

.btn--primary:hover svg,
.btn--cta:hover svg {
  transform: translateX(4px);
}

.btn--primary:active,
.btn--cta:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow:
    0 2px 12px hsla(42, 52%, 72%, 0.25),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.15);
}

/* ── CTA Extra Drama ── */
.btn--cta {
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn--cta::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-deep),
    var(--color-primary-hover),
    var(--color-primary)
  );
  background-size: 300% 300%;
  animation: gradient-shift 4s ease infinite;
  z-index: -1;
  opacity: 0.5;
}

.btn--lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 16px;
}

/* ── Ripple Effect ── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.35);
  transform: scale(0);
  animation: ripple-effect 0.6s linear forwards;
  pointer-events: none;
  z-index: 2;
}


/* ==========================================================================
   14. QUIZ INTRO
   ========================================================================== */

.quiz-intro {
  text-align: center;
  padding: 1.5rem 0 2.5rem;
}

.quiz-intro .title,
.quiz-intro .subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quiz-intro .btn {
  margin: 0 auto;
}


/* ==========================================================================
   15. QUIZ PROGRESS DOTS
   ========================================================================== */

.quiz-progress-dots {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.dot {
  flex: 1;
  height: 4px;
  background: hsla(210, 30%, 80%, 0.08);
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.dot--active {
  background: var(--color-primary);
  box-shadow: 0 0 10px hsla(42, 52%, 72%, 0.30);
}

/* Active dot sparkle sweep */
.dot--active::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(0, 0%, 100%, 0.4),
    transparent
  );
  animation: shimmer 2s ease-in-out infinite;
}

.dot--done {
  background: hsla(42, 52%, 72%, 0.40);
}


/* ==========================================================================
   16. QUIZ QUESTION
   ========================================================================== */

.quiz-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-dim);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.quiz-question__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}


/* ==========================================================================
   17. QUIZ OPTIONS
   ========================================================================== */

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(
    145deg,
    hsla(210, 35%, 25%, 0.85),
    hsla(210, 42%, 20%, 0.55)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.975rem;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

/* Hover gradient overlay */
.quiz-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(42, 52%, 72%, 0.07),
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.quiz-option:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-3px);
  box-shadow:
    var(--shadow-md),
    0 0 20px hsla(42, 52%, 72%, 0.06);
}

.quiz-option:hover::before {
  opacity: 1;
}

.quiz-option:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ── Selected State ── */
.quiz-option.selected {
  border-color: var(--color-primary);
  background: linear-gradient(
    145deg,
    hsla(42, 52%, 72%, 0.10),
    hsla(210, 42%, 20%, 0.60)
  );
  box-shadow:
    0 0 0 1px var(--color-primary),
    0 0 24px hsla(42, 52%, 72%, 0.12),
    var(--shadow-md);
  transform: scale(1.01);
}

.quiz-option.selected::after {
  content: '✓';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-btn-text);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  animation: bounce-in 0.4s var(--ease-spring);
}

/* ── Option Parts ── */
.quiz-option__icon {
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    var(--color-primary-muted),
    hsla(42, 52%, 72%, 0.04)
  );
  border: 1px solid hsla(42, 52%, 72%, 0.18);
  border-radius: 12px;
  color: var(--color-primary);
  transition: all var(--transition);
}

.quiz-option:hover .quiz-option__icon {
  border-color: hsla(42, 52%, 72%, 0.30);
  background: hsla(42, 52%, 72%, 0.14);
}

.quiz-option__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.quiz-option__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.quiz-option__letter {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.quiz-option__text {
  display: block;
}

.quiz-option__arrow {
  flex-shrink: 0;
  color: var(--color-text-dim);
  transition: all var(--transition);
}

.quiz-option__arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.quiz-option:hover .quiz-option__arrow {
  color: var(--color-primary);
  transform: translateX(5px);
}

.quiz-option.selected .quiz-option__arrow {
  opacity: 0;
}


/* ==========================================================================
   18. LOADING SCREEN
   ========================================================================== */

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: hsla(210, 47%, 12%, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-in-out), visibility 0.4s;
}

.loading-screen.active {
  opacity: 1;
  visibility: visible;
}

/* ── Elegant Multi-Ring Spinner ── */
.loading-spinner {
  position: relative;
  width: 64px;
  height: 64px;
}

.loading-spinner::before,
.loading-spinner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.loading-spinner::before {
  border-top-color: var(--color-primary);
  border-right-color: hsla(42, 52%, 72%, 0.30);
  animation: spin 1.2s linear infinite;
}

.loading-spinner::after {
  inset: 6px;
  border-bottom-color: var(--color-accent);
  border-left-color: hsla(210, 60%, 70%, 0.20);
  animation: spin 1.8s linear infinite reverse;
}

/* Center dot */
.loading-spinner > *:first-child,
.loading-spinner .spinner-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 12px var(--color-primary);
  animation: dot-pulse 1.5s ease-in-out infinite;
}

.loading-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  animation: dot-pulse 2s ease-in-out infinite;
}


/* ==========================================================================
   19. CONFETTI CONTAINER
   ========================================================================== */

.confetti-container {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
}

.confetti-container .confetti-piece {
  position: absolute;
  top: -10px;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  animation: confetti-fall linear forwards;
}


/* ==========================================================================
   20. RESULT CARD
   ========================================================================== */

.result-card {
  background: linear-gradient(
    160deg,
    hsla(210, 35%, 25%, 0.70),
    hsla(210, 42%, 20%, 0.50)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  /* Dramatic entrance */
  animation: scaleIn 0.7s var(--ease-out);
}

/* Animated top border gradient */
.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary-deep),
    var(--color-primary),
    var(--color-primary-hover),
    var(--color-primary-deep),
    transparent
  );
  background-size: 200% 100%;
  animation: border-shimmer 4s linear infinite;
}

/* Inner ambient glow */
.result-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: radial-gradient(
    ellipse,
    hsla(42, 52%, 72%, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

/* Noise texture layer */
.result-card > * {
  position: relative;
  z-index: 1;
}

.result-card__icon {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    hsla(42, 52%, 72%, 0.14),
    hsla(42, 52%, 72%, 0.04)
  );
  border: 1px solid hsla(42, 52%, 72%, 0.22);
  border-radius: 16px;
  color: var(--color-primary);
  margin-bottom: 1.35rem;
  animation: bounce-in 0.6s var(--ease-spring) 0.2s both;
}

.result-card__icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.result-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  animation: fadeUp 0.5s var(--ease-out) 0.3s both;
}

.result-body {
  font-size: 1.025rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.78;
  animation: fadeUp 0.5s var(--ease-out) 0.4s both;
}

.result-body p {
  margin-bottom: 1rem;
}

.result-body p:last-child {
  margin-bottom: 0;
}

.result-body strong {
  color: var(--color-text);
  font-weight: 600;
}

.result-cta-box {
  background: hsla(210, 50%, 10%, 0.30);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  animation: fadeUp 0.5s var(--ease-out) 0.5s both;
}

.result-cta-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

#step-result .btn {
  margin: 0 auto;
  display: flex;
}


/* ==========================================================================
   21. BRIDGE — VIDEO SECTION
   ========================================================================== */

.bridge-video {
  margin-bottom: 1.75rem;
}

.bridge-video__placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(
    150deg,
    var(--color-bg-card),
    var(--color-bg-elevated)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition);
}

/* Inner radial glow */
.bridge-video__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    hsla(42, 52%, 72%, 0.06),
    transparent 55%
  );
  transition: opacity var(--transition);
}

.bridge-video__placeholder:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-xl), 0 0 40px hsla(42, 52%, 72%, 0.08);
}

.bridge-video__play {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
  border-radius: 50%;
  color: var(--color-btn-text);
  box-shadow:
    0 8px 32px hsla(42, 52%, 72%, 0.35),
    0 0 0 8px hsla(42, 52%, 72%, 0.08);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

/* Pulsing ring */
.bridge-video__play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid hsla(42, 52%, 72%, 0.20);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.bridge-video__placeholder:hover .bridge-video__play {
  transform: scale(1.08);
  box-shadow:
    0 12px 40px hsla(42, 52%, 72%, 0.40),
    0 0 0 12px hsla(42, 52%, 72%, 0.10);
}

.bridge-video__play svg {
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 3px;
}

.bridge-video__label {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.bridge-video__duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-text-dim);
  position: relative;
  z-index: 1;
}

/* ── Glass Card ── */
.card-glass {
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture effect via CSS */
.card-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.4;
  pointer-events: none;
  border-radius: inherit;
}

.bridge-text p {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.68;
  position: relative;
  z-index: 1;
}

.bridge-text p:last-child {
  margin-bottom: 0;
}

.bridge-text p svg {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-primary);
  margin-top: 0.22rem;
}

#step-bridge .btn {
  margin: 0 auto;
  display: flex;
}


/* ==========================================================================
   22. SALES HERO
   ========================================================================== */

.sales-hero {
  background: linear-gradient(
    180deg,
    hsla(210, 42%, 20%, 0.50) 0%,
    transparent 100%
  );
  border-bottom: 1px solid var(--color-border);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ambient glow behind hero */
.sales-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(
    ellipse,
    hsla(42, 52%, 72%, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.sales-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.35rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.03em;
  background: linear-gradient(
    135deg,
    var(--color-text) 0%,
    hsla(40, 30%, 88%, 1) 40%,
    var(--color-primary) 80%,
    var(--color-text) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
}

.sales-subheadline {
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2.25rem;
  line-height: 1.72;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator__text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-indicator i {
  width: 1.5rem;
  height: 1.5rem;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  padding: 0.6rem 1.15rem;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.stat-pill:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

.stat-pill svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-primary);
}


/* ==========================================================================
   23. SALES BLOCKS
   ========================================================================== */

.sales-block {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--color-border);
}

.sales-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.sales-block__desc {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.72;
}


/* ==========================================================================
   24. CARD ICON
   ========================================================================== */

.card-icon {
  width: 3.15rem;
  height: 3.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.card-icon--gold {
  background: linear-gradient(
    145deg,
    hsla(42, 52%, 72%, 0.12),
    hsla(42, 52%, 72%, 0.04)
  );
  border: 1px solid hsla(42, 52%, 72%, 0.22);
  color: var(--color-primary);
}

.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}


/* ==========================================================================
   25. AUDIENCE CARDS
   ========================================================================== */

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.audience-card {
  background: linear-gradient(
    160deg,
    hsla(210, 35%, 25%, 0.75),
    hsla(210, 42%, 20%, 0.45)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient border effect on hover */
.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(
    160deg,
    hsla(42, 52%, 72%, 0.15),
    transparent 50%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.audience-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.audience-card:hover .card-icon--gold {
  box-shadow: 0 0 20px hsla(42, 52%, 72%, 0.12);
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.audience-card ul {
  list-style: none;
}

.audience-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.925rem;
  line-height: 1.55;
}

.audience-card li svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-primary);
  margin-top: 0.18rem;
  flex-shrink: 0;
}


/* ==========================================================================
   26. MODULE CARDS
   ========================================================================== */

.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

@media (min-width: 900px) {
  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.module-card {
  background: linear-gradient(
    160deg,
    hsla(210, 35%, 25%, 0.70),
    hsla(210, 42%, 20%, 0.40)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  /* 3D tilt base */
  transform-style: preserve-3d;
  perspective: 800px;
}

.module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsla(42, 52%, 72%, 0.04),
    transparent 40%
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.module-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
  box-shadow: var(--shadow-lg), 0 0 30px hsla(42, 52%, 72%, 0.05);
}

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

.module-card--bonus {
  border-color: hsla(42, 52%, 72%, 0.25);
  background: linear-gradient(
    160deg,
    hsla(42, 52%, 72%, 0.10),
    hsla(210, 35%, 22%, 0.50)
  );
}

.module-card--bonus::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary),
    transparent
  );
}

.module-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.module-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-dim);
  text-transform: uppercase;
}

.module-card__icon {
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary-muted),
    hsla(42, 52%, 72%, 0.03)
  );
  border-radius: 12px;
  color: var(--color-primary);
  transition: all var(--transition);
}

.module-card:hover .module-card__icon {
  background: hsla(42, 52%, 72%, 0.14);
  box-shadow: 0 0 16px hsla(42, 52%, 72%, 0.10);
}

.module-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.module-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.module-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}


/* ==========================================================================
   27. TAGS
   ========================================================================== */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-dim);
  background: hsla(210, 50%, 10%, 0.35);
  border: 1px solid var(--color-border);
  padding: 0.42rem 0.8rem;
  border-radius: 100px;
  align-self: flex-start;
}

.tag svg {
  width: 0.8rem;
  height: 0.8rem;
}

.tag--gold {
  color: var(--color-primary);
  background: var(--color-primary-muted);
  border-color: hsla(42, 52%, 72%, 0.22);
}


/* ==========================================================================
   28. TESTIMONIALS
   ========================================================================== */

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.testimonial-group__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.testimonial-group__label svg {
  width: 0.9rem;
  height: 0.9rem;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .testimonial-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial-card {
  background: linear-gradient(
    160deg,
    hsla(210, 35%, 25%, 0.65),
    hsla(210, 42%, 20%, 0.40)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

/* Subtle floating animation - each card slightly offset */
.testimonial-card:nth-child(odd) {
  animation: float 8s ease-in-out infinite;
}

.testimonial-card:nth-child(even) {
  animation: float 8s ease-in-out infinite 2s;
}

.testimonial-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.avatar {
  width: 2.85rem;
  height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-deep)
  );
  color: var(--color-btn-text);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 12px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-card__header div:nth-child(2) {
  flex: 1;
  min-width: 0;
}

.testimonial-card__header strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
}

.testimonial-card__header span {
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

.stars {
  display: flex;
  gap: 0.12rem;
  color: var(--color-primary);
}

.stars svg {
  width: 0.78rem;
  height: 0.78rem;
  fill: var(--color-primary);
  stroke: var(--color-primary);
}

.quote-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.5rem !important;
  height: 1.5rem !important;
  color: hsla(42, 52%, 72%, 0.15);
}

.testimonial-card p {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  line-height: 1.72;
  font-style: italic;
  position: relative;
  z-index: 1;
}


/* ==========================================================================
   29. FAQ
   ========================================================================== */

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

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

.faq-item {
  background: linear-gradient(
    160deg,
    hsla(210, 35%, 25%, 0.65),
    hsla(210, 42%, 20%, 0.40)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(42, 52%, 72%, 0.04),
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.faq-item:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item--wide {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .faq-item--wide {
    grid-column: span 2;
  }
}

.faq-item__icon {
  width: 2.85rem;
  height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    var(--color-primary-muted),
    hsla(42, 52%, 72%, 0.03)
  );
  border: 1px solid hsla(42, 52%, 72%, 0.15);
  border-radius: 12px;
  color: var(--color-primary);
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.faq-item:hover .faq-item__icon {
  border-color: hsla(42, 52%, 72%, 0.28);
  box-shadow: 0 0 16px hsla(42, 52%, 72%, 0.08);
}

.faq-item__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.faq-item h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

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


/* ==========================================================================
   30. SUPPORT BLOCK
   ========================================================================== */

.support-block {
  margin-top: 3rem;
  background: linear-gradient(
    160deg,
    hsla(210, 35%, 25%, 0.80),
    hsla(210, 42%, 20%, 0.55)
  );
  border: 1px solid hsla(42, 52%, 72%, 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

/* Animated top border */
.support-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary-deep),
    var(--color-primary),
    var(--color-primary-deep),
    transparent
  );
  background-size: 200% 100%;
  animation: border-shimmer 5s linear infinite;
}

/* Inner ambient glow */
.support-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100px;
  background: radial-gradient(
    ellipse,
    hsla(42, 52%, 72%, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.support-block__header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.support-block__icon {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    hsla(42, 52%, 72%, 0.14),
    hsla(42, 52%, 72%, 0.04)
  );
  border: 1px solid hsla(42, 52%, 72%, 0.28);
  border-radius: 16px;
  color: var(--color-primary);
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 24px hsla(42, 52%, 72%, 0.08);
}

.support-block__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.support-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.support-block__intro {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 700px) {
  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-item {
  background: hsla(210, 50%, 10%, 0.25);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.support-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsla(42, 52%, 72%, 0.03),
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.support-item:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.support-item:hover::before {
  opacity: 1;
}

.support-item__icon {
  width: 2.85rem;
  height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-muted);
  border: 1px solid hsla(42, 52%, 72%, 0.15);
  border-radius: 12px;
  color: var(--color-primary);
  margin: 0 auto 1rem;
  transition: all var(--transition);
}

.support-item:hover .support-item__icon {
  box-shadow: 0 0 16px hsla(42, 52%, 72%, 0.10);
  border-color: hsla(42, 52%, 72%, 0.28);
}

.support-item__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.support-item h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.support-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.support-block__closing {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.72;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.support-block__closing svg {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--color-primary);
  margin-top: 0.18rem;
}


/* ==========================================================================
   31. OFFER SECTION
   ========================================================================== */

.offer {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.offer__card {
  background: linear-gradient(
    160deg,
    hsla(210, 35%, 25%, 0.90),
    hsla(210, 47%, 15%, 0.80)
  );
  border: 1px solid hsla(42, 52%, 72%, 0.30);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
  position: relative;
  overflow: hidden;
}

/* Animated gradient background */
.offer__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top,
    hsla(42, 52%, 72%, 0.08),
    transparent 55%
  );
  pointer-events: none;
}

/* Premium glow border effect */
.offer__card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    hsla(42, 52%, 72%, 0.20),
    transparent 30%,
    transparent 70%,
    hsla(42, 52%, 72%, 0.10)
  );
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.offer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-btn-text);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
  padding: 0.5rem 1.15rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px hsla(42, 52%, 72%, 0.25);
}

/* Shimmer on badge */
.offer__badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(0, 0%, 100%, 0.25),
    transparent
  );
  animation: shimmer 2.5s ease-in-out infinite;
  border-radius: inherit;
}

.offer__badge svg {
  width: 0.85rem;
  height: 0.85rem;
}

.offer__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
  position: relative;
}

.offer__includes {
  list-style: none;
  text-align: left;
  max-width: 440px;
  margin: 0 auto 2.25rem;
  position: relative;
}

.offer__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  line-height: 1.5;
}

.offer__includes li:hover {
  color: var(--color-text);
  transform: translateX(4px);
}

.offer__includes li svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.offer__pricing {
  margin-bottom: 2rem;
  position: relative;
}

.offer__price-old {
  display: block;
  font-size: 1rem;
  color: var(--color-text-dim);
  text-decoration: line-through;
  margin-bottom: 0.35rem;
  opacity: 0.7;
}

.offer__price {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.offer__price strong {
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  position: relative;
  /* Shimmer on price */
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-primary-hover) 40%,
    hsla(0, 0%, 100%, 0.9) 50%,
    var(--color-primary-hover) 60%,
    var(--color-primary) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}

.offer__installments {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
}

.offer__installments svg {
  width: 1rem;
  height: 1rem;
}

.offer__anchor {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  font-style: italic;
}

.offer__card .btn {
  max-width: 100%;
  position: relative;
}

.offer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
  position: relative;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-dim);
  transition: color var(--transition-fast);
}

.trust-badge:hover {
  color: var(--color-text-muted);
}

.trust-badge svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--color-primary);
}


/* ==========================================================================
   32. FOOTER
   ========================================================================== */

.footer {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-dim);
  font-size: 0.85rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(42, 52%, 72%, 0.10) 30%,
    hsla(42, 52%, 72%, 0.10) 70%,
    transparent
  );
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.footer__logo svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--color-primary);
}


/* ==========================================================================
   33. SCROLL REVEAL
   ========================================================================== */

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   34. RESPONSIVE DESIGN
   ========================================================================== */

/* ── 480px: Large phones ── */
@media (max-width: 480px) {
  .hero-icon {
    width: 4rem;
    height: 4rem;
  }

  .hero-icon svg {
    width: 1.8rem;
    height: 1.8rem;
  }

  .quiz-option {
    padding: 1.1rem 1.15rem;
    gap: 0.8rem;
  }

  .quiz-option__icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .result-card {
    padding: 1.75rem 1.35rem;
    border-radius: var(--radius-lg);
  }

  .offer__card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .bridge-video__play {
    width: 4rem;
    height: 4rem;
  }

  .bridge-video__play svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .stat-pill {
    font-size: 0.78rem;
    padding: 0.5rem 0.85rem;
  }

  .support-block {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .module-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .loading-spinner {
    width: 52px;
    height: 52px;
  }
}

/* ── 640px: Tablets portrait ── */
@media (min-width: 640px) {
  .quiz-intro {
    padding: 2rem 0 3rem;
  }

  .result-cta-box {
    padding: 2rem;
  }
}

/* ── 768px: Tablets landscape ── */
@media (min-width: 768px) {
  .header__inner {
    padding: 1rem 2rem;
  }

  .container {
    padding: 3rem 2rem;
  }

  .sales-hero {
    padding: 4.5rem 0 5rem;
  }

  .offer__card {
    padding: 3rem 2.5rem;
  }
}

/* ── 900px: Small laptops ── */
@media (min-width: 900px) {
  .container--wide {
    max-width: 1040px;
  }
}

/* ── 1024px: Desktops ── */
@media (min-width: 1024px) {
  .container--wide {
    max-width: 1100px;
    padding: 3.5rem 2.5rem;
  }

  .sales-hero {
    padding: 5rem 0 5.5rem;
  }

  .audience-card {
    padding: 2.25rem 2rem;
  }

  .module-card {
    padding: 2rem;
  }

  .offer__card {
    padding: 3.5rem 3rem;
  }
}


/* ==========================================================================
   35. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
  }

  .hero-icon {
    animation: none;
  }

  .testimonial-card {
    animation: none;
  }

  .sales-headline {
    animation: none;
    -webkit-text-fill-color: var(--color-text);
  }

  .offer__price strong {
    animation: none;
    -webkit-text-fill-color: var(--color-primary);
  }
}


/* ==========================================================================
   36. FOCUS & ACCESSIBILITY
   ========================================================================== */

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* Remove outline for mouse/touch users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Skip to main content (if added) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-btn-text);
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}


/* ==========================================================================
   37. LANDING PAGE — HEADER WITH CTA
   ========================================================================== */

.header__inner--lp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.header__inner--lp .logo {
  margin-bottom: 0;
}

.header__cta {
  width: auto;
  max-width: none;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  border-radius: 12px;
  white-space: nowrap;
}

.btn--sm {
  width: auto;
  max-width: none;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  border-radius: 12px;
}


/* ==========================================================================
   38. LANDING PAGE — HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 2rem;
  overflow: hidden;
}

.hero .container--wide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  background: linear-gradient(
    135deg,
    var(--color-text) 0%,
    var(--color-primary) 45%,
    hsla(40, 30%, 90%, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-glow-pulse 5s ease-in-out infinite;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.stat-pill:hover {
  border-color: var(--color-border-hover);
  color: var(--color-primary);
}

.stat-pill svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--color-primary);
}


/* ==========================================================================
   39. LANDING PAGE — VSL PLAYER
   ========================================================================== */

.vsl-wrapper {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.vsl-inner {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow:
    var(--shadow-xl),
    0 0 60px hsla(42, 52%, 72%, 0.10),
    0 0 0 1px hsla(42, 52%, 72%, 0.06) inset;
  background: var(--color-bg-deep);
  position: relative;
}

.vsl-inner::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(
    135deg,
    hsla(42, 52%, 72%, 0.25),
    transparent 40%,
    hsla(210, 60%, 70%, 0.15) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.vsl-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  cursor: pointer;
  overflow: hidden;
}

.vsl-placeholder__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsl(210, 47%, 12%) 0%,
    hsl(210, 50%, 9%) 50%,
    hsl(42, 30%, 14%) 100%
  );
}

.vsl-placeholder__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    hsla(42, 52%, 72%, 0.08) 0%,
    transparent 70%
  );
  animation: pulse-glow 4s ease-in-out infinite;
}

.vsl-play-btn {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 90px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-deep) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  box-shadow:
    0 0 0 0 hsla(42, 52%, 72%, 0.5),
    0 8px 32px hsla(42, 52%, 72%, 0.35);
  animation: vsl-pulse 2.5s ease-in-out infinite;
}

@keyframes vsl-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 hsla(42, 52%, 72%, 0.5),
      0 8px 32px hsla(42, 52%, 72%, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 18px hsla(42, 52%, 72%, 0),
      0 12px 40px hsla(42, 52%, 72%, 0.45);
  }
}

.vsl-play-btn:hover {
  transform: scale(1.1);
}

.vsl-play-btn__ring {
  position: absolute;
  inset: -8px;
  border: 2px solid hsla(42, 52%, 72%, 0.30);
  border-radius: 50%;
  animation: ring-expand 2.5s ease-in-out infinite;
}

@keyframes ring-expand {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}

.vsl-play-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-btn-text);
  position: relative;
  z-index: 1;
  padding-left: 4px;
}

.vsl-play-btn__icon svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 2.5;
}

.vsl-placeholder__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.vsl-label {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.vsl-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.vsl-duration svg {
  width: 0.8rem;
  height: 0.8rem;
}

.vsl-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vsl-cta-below {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
}

.vsl-cta-below .btn {
  max-width: 500px;
  width: 100%;
}

.vsl-cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.vsl-cta-guarantee svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--color-primary);
}


/* ==========================================================================
   40. SCROLL INDICATOR (LP version)
   ========================================================================== */

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 2.5rem 0 1rem;
  color: var(--color-text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 1.1rem;
  height: 1.1rem;
}


/* ==========================================================================
   41. RESPONSIVE ADJUSTMENTS for LP
   ========================================================================== */

@media (max-width: 600px) {
  .header__cta {
    display: none;
  }

  .vsl-play-btn {
    width: 70px;
    height: 70px;
  }

  .vsl-play-btn__icon svg {
    width: 1.6rem;
    height: 1.6rem;
  }

  .hero__title {
    -webkit-text-fill-color: var(--color-text);
  }
}


/* ==========================================================================
   42. LOGO IMAGE
   ========================================================================== */

/* Header logo */
.logo__img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Inverte preto para branco/dourado no fundo escuro */
  filter: brightness(0) invert(1);
  transition: filter var(--transition), transform var(--transition);
}

.logo__img:hover {
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
  transform: scale(1.03);
}

/* Ajuste do container logo no header LP */
.header__inner--lp .logo {
  margin-bottom: 0;
  gap: 0;
}

/* Footer logo */
.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto 0.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* ==========================================================================
   43. MOBILE RESPONSIVENESS — FULL FIXES
   ========================================================================== */

/* ── Hero: empilha corretamente no mobile ── */
@media (max-width: 768px) {
  .hero {
    padding: clamp(1.5rem, 5vw, 3rem) 0 0;
  }

  .hero .container--wide {
    gap: 2rem;
    padding-bottom: 0;
  }

  .hero__title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    -webkit-text-fill-color: var(--color-text);
    line-height: 1.2;
  }

  .hero__sub {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero__stats {
    gap: 0.4rem;
  }

  .stat-pill {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  /* VSL wrapper: sem padding extra no mobile */
  .vsl-wrapper {
    gap: 1rem;
    padding: 0 0 1rem;
  }

  /* CTA abaixo da VSL */
  .vsl-cta-below {
    padding: 0 1rem 2.5rem;
  }

  .vsl-cta-below .btn {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
  }

  /* Scroll indicator: oculto no mobile */
  .scroll-indicator {
    display: none;
  }

  /* Badge hero menor */
  .badge--hero {
    font-size: 0.65rem;
    padding: 0.45rem 0.9rem;
  }

  /* Logo menor no mobile */
  .logo__img {
    height: 40px;
  }

  /* Header menor */
  .header__inner--lp {
    padding: 0.7rem 1rem;
  }
}

/* ── Smartphones pequenos (< 420px) ── */
@media (max-width: 420px) {
  .hero__title {
    font-size: 1.55rem;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
  }

  .vsl-play-btn {
    width: 64px;
    height: 64px;
  }

  .vsl-label {
    font-size: 0.85rem;
  }

  .offer__card {
    padding: 1.5rem 1rem;
  }

  .offer__title {
    font-size: 1.3rem;
  }

  .footer__logo-img {
    height: 44px;
  }
}


