/* =========================================
   1. DESIGN SYSTEM & VARIABLES
   ========================================= */
:root {
  /* --- COLORS --- */
  /* Backgrounds */
  --bg-main: #020202;
  /* Deepest black */
  --bg-secondary: #0D0D0F;
  /* Slightly elevated dark layer */
  --bg-card: #141416;
  /* Surface color */

  /* Accents */
  --color-accent: #B026FF;
  /* Vibrant Neon Purple */
  --color-accent-hover: #961ce0;
  /* Slightly dimmer for hover backgrounds */
  --color-accent-glow: rgba(176, 38, 255, 0.5);
  /* Glow effect color */

  /* Text & Borders */
  --text-primary: #F0F0F0;
  /* High contrast white/grey */
  --text-secondary: #A0A0A5;
  /* Muted grey */
  --border-subtle: #25252A;
  /* Subtle separator */

  /* --- TYPOGRAPHY --- */
  /* Families */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;

  /* Sizes (Fluid scales could be added, fixed for now) */
  --fs-hero: 3.5rem;
  --fs-h1: 2.5rem;
  --fs-h2: 2rem;
  --fs-h3: 1.5rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* --- SPACING & LAYOUT --- */
  --container-width: 1200px;
  --header-height: 80px;

  /* --- TRANSITIONS --- */
  --transition-fast: 0.2s ease;
  --transition-standard: 0.3s ease-in-out;
}

/* =========================================
   2. RESET & NORMALIZATION
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  /* Remove mobile blue tap box */
}

html {
  font-size: 16px;
  /* scroll-behavior: smooth;  <-- Removed to let Lenis handle the physics */
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--fs-hero);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-h1);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

/* =========================================
   4. COMPONENT BASES
   ========================================= */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 2em;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-standard);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 0 20px var(--color-accent-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
  transform: skewX(-15deg);
}

.btn-primary:hover {
  background-color: var(--color-accent);
  /* Keep same, glow does work */
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--color-accent-glow), 0 0 10px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::after {
  left: 100%;
  transition: 0.7s ease-in-out;
}

.btn-ghost {
  background-color: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Layout Containers */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 5rem 0;
}

/* Features Section */
#features {
  padding: 6rem 0;
  background-color: #050505;
  /* Deep black for contrast */
}

/* Utility */
.text-neon {
  color: var(--color-accent);
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =========================================
   5. SCROLL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  /* Default: Enter from bottom */
  transition: all 0.8s ease-out;
}

.reveal.from-top {
  transform: translateY(-30px);
  /* Enter from top */
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* =========================================
   6. SECTION SPECIFIC STYLES
   ========================================= */

/* Members Area - 3D Holo Card */
.members-visual {
  /* Remove old box styles */
  background: transparent;
  border: none;
  box-shadow: none;

  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 1000px;
  /* Essential for 3D effect */
}

/* Clear old pseudo-element background if it exists */
.members-visual::before {
  display: none;
}

.holo-card {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1a1a1e 0%, #0d0d0f 100%);
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  transform-style: preserve-3d;
  transform: rotateX(0) rotateY(0);
  transition: transform 0.1s ease-out;
  /* Smooth follow, snap back handled by JS */

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.holo-content {
  text-align: center;
  transform: translateZ(60px);
  /* Push content forward in 3D space */
  pointer-events: none;
  /* Let clicks pass through to container if needed */
}

.holo-icon {
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  filter: drop-shadow(0 0 15px rgba(176, 38, 255, 0.6));
}

.holo-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.holo-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.holo-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  width: 80%;
  margin: 0 auto;
}

.holo-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  mix-blend-mode: overlay;
  transform: translateZ(1px);
  /* Sit just above the background */
}

.members-visual:hover .holo-glare {
  opacity: 1;
}

/* Differentials Cards */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.diff-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
  position: relative;
}

.diff-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(176, 38, 255, 0.15);
  z-index: 2;
}

/* Audio Demo */
.audio-player {
  background: linear-gradient(145deg, var(--bg-card) 0%, #1a1a1e 100%);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.audio-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audio-player:hover {
  border-color: var(--color-accent);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.audio-player:hover::before {
  opacity: 1;
}

.play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(176, 38, 255, 0.7);
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 10px rgba(176, 38, 255, 0.1);
  background: white;
  color: var(--color-accent);
}

.play-btn svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

/* Waveform Container */
.waveform-bar {
  flex-grow: 1;
  height: 24px;
  /* Maintain compact pill container */
  display: flex;
  align-items: center;
  gap: 6px;
  /* Wider gap for distinct bars */
  padding: 0;
  overflow: visible;
  mask-image: none;
  -webkit-mask-image: none;
  background: none;
  opacity: 1;
  /* Always fully visible per design */
}

/* Individual Bars (Pills) */
.spectrum-bar {
  width: 6px;
  /* Explicit width for chunkiness */
  flex: none;
  /* Disable flex growing */
  background: #C66AFF;
  /* Solid violet/purple */
  border-radius: 999px;
  /* Fully rounded caps */
  height: 100%;
  transform-origin: center;
  transform: scaleY(0.4);

  /* Initial static visual resembling audio track */
  animation: none;
}

/* Static variance for aesthetic look when paused */
.spectrum-bar:nth-child(2n) {
  transform: scaleY(0.6);
}

.spectrum-bar:nth-child(3n) {
  transform: scaleY(0.8);
}

.spectrum-bar:nth-child(4n) {
  transform: scaleY(0.5);
}

.spectrum-bar:nth-child(5n) {
  transform: scaleY(0.3);
}

/* Hover State - "Warm-up" */
.audio-player:hover .spectrum-bar {
  background: #D58CFF;
  box-shadow: 0 0 10px rgba(176, 38, 255, 0.4);
}

/* PLAYING State - Active Animation */
.audio-player.playing .waveform-bar {
  opacity: 1;
}

.audio-player.playing .spectrum-bar {
  background: #B026FF;
  box-shadow: 0 0 8px rgba(176, 38, 255, 0.6);
  animation: spectrum-pill-dance var(--bar-duration) ease-in-out infinite alternate;
  animation-delay: var(--bar-delay);
}

@keyframes spectrum-pill-dance {
  0% {
    transform: scaleY(0.3);
  }

  100% {
    transform: scaleY(1.0);
  }
}



/* Playing state for button (active look) */
.audio-player.playing .play-btn {
  background: white;
  color: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(176, 38, 255, 0.3);
  /* Combine transitions and animation */
  animation: btn-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn:active {
  transform: scale(0.9) !important;
  /* Force tactile press feel */
}

@keyframes btn-pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 15px rgba(176, 38, 255, 0);
  }

  100% {
    transform: scale(1.05);
  }

  /* Ends at the 'playing' hover scale */
}

/* Access Steps */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  /* Context for the line */
}

/* Connecting Line - Reference adjusted for 80px circle */
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  /* Center of 80px icon */
  left: calc(50% + 55px);
  /* Start after icon (40px radius + 15px gap) */
  width: calc(100% - 110px);
  /* Span to next */
  height: 2px;
  background: linear-gradient(90deg, transparent, #B026FF, transparent);
  opacity: 0.6;
  z-index: 0;
  box-shadow: 0 0 10px rgba(176, 38, 255, 0.4);
}

@media (max-width: 768px) {
  .step-item:not(:last-child)::after {
    display: none;
  }
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(176, 38, 255, 0.1);
  /* Subtle purple bg */
  border: 1px solid rgba(176, 38, 255, 0.5);
  /* Visible border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  /* White number inside */
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
}

/* Social Proof */
.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 48px;
  height: 48px;
  background: #333;
  border-radius: 50%;
  overflow: hidden;
  /* Crop square images to circle */
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   7. PRICING SECTION
   ========================================= */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--color-accent);
  border-radius: 16px;
  padding: 3rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: 0 0 30px rgba(176, 38, 255, 0.1);
  animation: pulse-glow 4s infinite ease-in-out;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.1);
  }

  50% {
    box-shadow: 0 0 50px rgba(176, 38, 255, 0.25);
    border-color: #C66AFF;
  }

  100% {
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.1);
  }
}

.pricing-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 2rem 0;
  line-height: 1;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #B026FF;
  align-self: flex-start;
  margin-top: 0.8rem;
}

.amount {
  font-size: 5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
  align-self: flex-end;
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  display: inline-block;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.check-icon {
  color: var(--color-accent);
}

.btn-full-purple {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.2rem;
  background: #B026FF;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-radius: 6px;
  /* Slightly rounded */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-full-purple::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  /* Stronger shine */
  transition: 0.5s;
  z-index: -1;
  transform: skewX(-15deg);
}

.btn-full-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(176, 38, 255, 0.8);
  background: #c25eff;
}

.btn-full-purple:hover::after {
  left: 100%;
  transition: 0.7s ease-in-out;
}

.trust-elements {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Pricing Card Enhancements */
.pricing-card {
  position: relative;
  overflow: hidden;
  /* Ensure inner light stays inside */
  border: 1px solid var(--border-subtle);
  /* Baseline border */
}

/* Inner Background Light Animation */
.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(176, 38, 255, 0.08), transparent 60%);
  animation: rotate-light 10s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes rotate-light {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Ensure content sits above the background light */
.pricing-card>* {
  position: relative;
  z-index: 1;
}

/* Special Offer Badge */
.special-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(176, 38, 255, 0.15);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(176, 38, 255, 0.4);
  animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.7);
  }
}

/* Feature Grid (Why Choose) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--transition-standard);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* SPOTLIGHT EFFECT */
/* .spotlight-card: Base style handled by utility classes */

/* =========================================
   ACCESS STEPS ENERGY WAVE ANIMATION (SEQUENTIAL LOOP)
   ========================================= */

/* 
   TIMING STRATEGY (8s Loop for Smoother/Slower Travel)
   
   Sequence:
   Step 1: 0% - 12.5% (Active)
   Line 1: 10% - 35% (Travels for 2s - Smoother)
   Step 2: 32.5% - 45% (Active)
   Line 2: 42.5% - 67.5% (Travels for 2s)
   Step 3: 65% - 77.5% (Active)
   Rest:   77.5% - 100%
*/

/* Step Icon Sequence */
@keyframes step-sequence {
  0% {
    border-color: rgba(176, 38, 255, 0.5);
    background: rgba(176, 38, 255, 0.1);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
    color: #fff;
  }

  /* Fade In */
  2% {
    border-color: #fff;
    background: rgba(176, 38, 255, 0.5);
    box-shadow: 0 0 50px rgba(176, 38, 255, 0.8);
  }

  /* Hold Peak */
  10.5% {
    border-color: #fff;
    background: rgba(176, 38, 255, 0.5);
    box-shadow: 0 0 50px rgba(176, 38, 255, 0.8);
  }

  /* Fade Out */
  12.5% {
    border-color: rgba(176, 38, 255, 0.5);
    background: rgba(176, 38, 255, 0.1);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
  }

  100% {
    border-color: rgba(176, 38, 255, 0.5);
    background: rgba(176, 38, 255, 0.1);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
  }
}

/* Line Travel Sequence - Slower & Smoother */
@keyframes line-sequence {
  0% {
    background-position: -100% 0;
    opacity: 0.3;
  }

  /* Start Moving & Fade In */
  1% {
    opacity: 1;
  }

  /* Reach End (Takes ~2s) */
  24% {
    background-position: 200% 0;
    opacity: 1;
  }

  /* Fade Out */
  25% {
    opacity: 0.3;
    background-position: 200% 0;
  }

  100% {
    background-position: -100% 0;
    opacity: 0.3;
  }
}

/* Update Line Base Style */
.step-item:not(:last-child)::after {
  background: linear-gradient(90deg, transparent 0%, #B026FF 50%, transparent 100%);
  opacity: 0.6;
  /* Static visibility */
}

/* Apply Logic with Delays (8s Loop) */

/* Step 1: Starts at 0s */
.step-item:nth-child(1) .step-icon {
  animation: step-sequence 8s ease-out infinite;
  animation-delay: 0s;
}

/* Line 1: Static now */
/* .step-item:nth-child(1)::after { removed animation } */

/* Step 2: Starts at 2.6s (32.5%) */
.step-item:nth-child(2) .step-icon {
  animation: step-sequence 8s ease-out infinite;
  animation-delay: 2.6s;
}

/* Line 2: Static now */
/* .step-item:nth-child(2)::after { removed animation } */

/* Step 3: Starts at 5.2s (65%) */
.step-item:nth-child(3) .step-icon {
  animation: step-sequence 8s ease-out infinite;
  animation-delay: 5.2s;
}

.spotlight-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  /* The flashlight: transparent center, dark outside */
  background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.spotlight-card:hover::after {
  opacity: 1;
}

/* Additional Border Glow using ::before (optional, subtle border highlight) */
.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 1px;
  /* Border width */
  background: radial-gradient(500px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(176, 38, 255, 0.5), transparent 40%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
  pointer-events: none;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  /* border-color: var(--color-accent); <--- Removed to let the spotlight border shine */
  box-shadow: 0 10px 40px -10px rgba(176, 38, 255, 0.2);
}

/* Override existing ::before for features if it conflicts */
/*.feature-card::before {
  display: none; 
}*/
/* Actually current ::before is a static gradient, we can keep it as base or remove it. 
   Let's ensure the new spotlights sit on top.
*/


.feature-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(176, 38, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: var(--color-accent);
  color: #fff;
}

.feature-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.text-gradient {
  background: linear-gradient(90deg, #4facfe 0%, #B026FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HERO SECTION REDESIGN */
.hero {
  /* Using global background var but ensuring it allows for overlays */
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
}

.text-gradient-purple {
  background: linear-gradient(135deg, #B026FF 0%, #7c4dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 25px rgba(176, 38, 255, 0.4));
}

/* Hero Buttons */
.btn-hero-cta {
  background: linear-gradient(90deg, #B026FF 0%, #764ba2 100%);
  border: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
  padding: 0.8em 2em;
  font-size: 1rem;
}

.btn-hero-cta:hover {
  box-shadow: 0 0 40px rgba(176, 38, 255, 0.6);
  transform: translateY(-2px);
}

.btn-hero-listen {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8em 2em;
  font-size: 1rem;
  color: #fff;
}

.btn-hero-listen:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Hero Stats - Fixed Row Layout */
.hero-stats {
  display: flex;
  flex-direction: row;
  /* FORCE ROW */
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 800px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-val {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}





.transition-blob {
  position: absolute;
  left: var(--click-x, 50%);
  top: var(--click-y, 50%);
  width: 100px;
  height: 100px;
  /* Centering the blob on the click point */
  margin-left: -50px;
  margin-top: -50px;
  background: #B026FF;
  border-radius: 50%;
  filter: blur(40px);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.3s ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.transition-active .transition-blob {
  opacity: 1;
  transform: scale(30);
  /* Scale huge to cover screen */
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.faq-active {
  border-color: rgba(176, 38, 255, 0.5);
  box-shadow: 0 0 15px rgba(176, 38, 255, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  padding-right: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.faq-active .faq-icon {
  transform: rotate(45deg);
  /* Turns plus to check or X, assumes plus icon */
  color: #fff;
}

/* =========================================
   MEMBERS LIST ANIMATION
   ========================================= */
.list-icon-anim {
  width: 32px;
  height: 32px;
  background: rgba(176, 38, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  box-shadow: 0 0 10px rgba(176, 38, 255, 0.2);
  animation: pulse-soft 2s infinite ease-in-out;
}

.list-icon-anim.delay-2 {
  animation-delay: 0.3s;
}

.list-icon-anim.delay-3 {
  animation-delay: 0.6s;
}

@keyframes pulse-soft {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.2);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.4);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.2);
  }
}

/* Ensure Holo Icon is Centered */
.holo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* This centers horizontal flex children */
  text-align: center;
}

.holo-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  filter: drop-shadow(0 0 10px var(--color-accent));
}

/* Cursor Glow Effect (Audio Section) */
.cursor-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(176, 38, 255, 0.3) 0%, rgba(176, 38, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
  filter: blur(60px);
  /* Slightly less blur to show shape */
  animation: liquid-morph 4s infinite linear;
  /* Faster, linear rotation */
}

@keyframes liquid-morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(-50%, -50%) rotate(180deg);
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

#audio-demo:hover .cursor-glow {
  opacity: 1;
}



.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================
   PACK CONTENTS GRID
   ========================================= */
.pack-category-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pack-category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(176, 38, 255, 0.3);
}

.pack-category-card:hover img {
  transform: scale(1.1);
}

.pack-category-card:hover .pack-card-glow {
  border-color: var(--color-accent);
  box-shadow: inset 0 0 20px rgba(176, 38, 255, 0.2);
}

.pack-category-card:hover .pack-card-overlay h4 {
  color: var(--color-accent);
}

/* =========================================
   MOBILE RESPONSIVENESS FIX (MAX-WIDTH: 430px)
   ========================================= */
@media (max-width: 430px) {

  /* GLOBAL FIXES */
  body {
    overflow-x: hidden;
  }

  .container {
    width: 95%;
    padding: 0 0.75rem;
  }

  section {
    padding: 3rem 0;
  }

  /* TYPOGRAPHY FIXES */
  h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* HEADER */
  header {
    padding: 1rem 0 !important;
  }

  header .container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  header nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header nav a {
    margin-left: 0 !important;
    font-size: 0.85rem;
  }

  /* HERO SECTION */
  .hero {
    min-height: auto !important;
    padding: 2rem 0 !important;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }

  .hero p {
    font-size: 0.95rem !important;
    margin-bottom: 2rem !important;
  }

  /* HERO BUTTONS */
  .hero .btn {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
  }

  .hero>div>div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  /* HERO STATS */
  .hero-stats {
    gap: 2rem !important;
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
  }

  .stat-val {
    font-size: 1.5rem !important;
  }

  .stat-label {
    font-size: 0.7rem !important;
  }

  /* SONIC REACTOR - HIDE ON MOBILE */
  .sonic-reactor {
    display: none !important;
  }

  /* GRID LAYOUTS */
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* MEMBERS AREA */
  .members-visual {
    height: 300px;
  }

  .holo-card h3 {
    font-size: 1.3rem;
  }

  .holo-subtitle {
    font-size: 0.75rem;
  }

  .holo-stats {
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  /* FEATURE GRID - FIX OVERFLOW */
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.75rem;
  }

  .feature-card h4 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  /* AUDIO DEMO - FIX OVERFLOW */
  .audio-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .audio-player {
    padding: 1rem;
    gap: 1rem;
  }

  .play-btn {
    width: 48px;
    height: 48px;
  }

  .play-btn svg {
    width: 16px;
    height: 16px;
  }

  /* ACCESS STEPS */
  #access-steps .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  /* PRICING SECTION - FIX OVERFLOW */
  #pricing h1 {
    font-size: 1.75rem !important;
  }

  #pricing p {
    font-size: 1rem !important;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .special-badge {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
  }

  .pricing-card h3 {
    font-size: 1.25rem;
  }

  .pricing-subtitle {
    font-size: 0.85rem;
  }

  .price-container {
    margin: 1.5rem 0;
  }

  .currency {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }

  .amount {
    font-size: 3rem !important;
    letter-spacing: -1px;
  }

  .period {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .pricing-features {
    margin: 1.5rem 0;
  }

  .pricing-features li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .btn-full-purple {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .trust-elements {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  /* FAQ SECTION */
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-content {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.9rem;
  }

  /* TESTIMONIALS */
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card p {
    font-size: 0.9rem;
  }

  /* BUTTONS GLOBAL */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-outline,
  .btn-ghost {
    width: 100%;
    max-width: 100%;
  }

  /* FOOTER */
  footer {
    padding: 2rem 0 !important;
    margin-top: 2rem !important;
  }

  footer p {
    font-size: 0.85rem;
  }

  /* FIX HORIZONTAL OVERFLOW */
  * {
    max-width: 100%;
  }

  img,
  video,
  canvas {
    max-width: 100%;
    height: auto;
  }

  /* ENSURE NO ELEMENT BREAKS LAYOUT */
  .container>* {
    max-width: 100%;
  }

  /* ==========================================
     REMOÇÃO DE ELEMENTOS NO MOBILE
     ========================================== */

  /* OCULTAR NAVEGAÇÃO COMPLETA (Preços + ACESSAR) */
  header nav {
    display: none !important;
  }

  /* REDUZIR PADDING DO HEADER (CORRIGIR ESPAÇO VAZIO) */
  header {
    padding: 1rem 0 !important;
  }

  /* CENTRALIZAR LOGO NO MOBILE */
  header .container {
    justify-content: center !important;
  }

  /* REDUZIR ESPAÇO ENTRE HEADER E HERO */
  .hero {
    padding-top: 1rem !important;
  }

  /* GUARANTEE SECTION */
  #guarantee {
    padding: 3rem 0 !important;
  }

  #guarantee .container>div>div:first-child {
    margin-bottom: 1.5rem !important;
  }

  #guarantee .container>div>div:first-child>div:last-child {
    width: 100px !important;
    height: 100px !important;
  }

  #guarantee .container>div>div:first-child>div:last-child>div:first-child {
    font-size: 1.8rem !important;
  }

  #guarantee .container>div>div:first-child>div:last-child>div:nth-child(2) {
    font-size: 1.3rem !important;
  }

  #guarantee h2 {
    font-size: 1.5rem !important;
  }

  #guarantee p {
    font-size: 0.95rem !important;
    padding: 0 0.5rem;
  }

  /* Guarantee trust badges - stack vertically */
  #guarantee .container>div>div:last-child {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  #guarantee .container>div>div:last-child>div {
    width: 100%;
    justify-content: center;
  }

  /* PAIN POINTS */
  #pain-points h2 {
    font-size: 1.5rem !important;
  }

  #pain-points>div>div:nth-child(2) {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  #pain-points>div>div:nth-child(2)>div {
    padding: 1.25rem !important;
  }

  /* PACK CONTENTS GRID - Mobile horizontal scroll */
  #pack-contents {
    padding: 3rem 0 !important;
  }

  #pack-contents h2 {
    font-size: 1.5rem !important;
  }

  .pack-grid {
    grid-template-columns: repeat(10, 140px) !important;
    gap: 1rem !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    margin: 0 -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .pack-grid::-webkit-scrollbar {
    display: none;
  }

  .pack-category-card {
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .pack-category-card .pack-card-overlay {
    padding: 1rem !important;
  }

  .pack-category-card .pack-card-overlay h4 {
    font-size: 0.9rem !important;
  }

  .pack-category-card .pack-card-overlay p {
    font-size: 0.65rem !important;
  }

  /* COMPARISON TABLE */
  #comparison {
    padding: 3rem 0 !important;
  }

  #comparison table {
    font-size: 0.75rem !important;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  #comparison th,
  #comparison td {
    padding: 0.75rem 0.5rem !important;
  }

  /* EXIT POPUP */
  #exit-popup>div {
    padding: 1.75rem 1.25rem !important;
    margin: 0.75rem !important;
    max-width: calc(100vw - 1.5rem) !important;
  }

  #exit-popup-emoji {
    font-size: 2.5rem !important;
  }

  #exit-popup-title {
    font-size: 1.25rem !important;
  }

  #exit-popup-subtitle {
    font-size: 0.9rem !important;
  }

  #exit-popup-urgency {
    font-size: 0.8rem !important;
  }

  #exit-popup .btn-primary {
    padding: 0.9rem !important;
    font-size: 0.9rem !important;
  }

  /* STICKY BAR mobile */
  #sticky-cta-bar>div {
    flex-direction: column !important;
    gap: 0.75rem !important;
    padding: 0.75rem 1rem !important;
  }

  #sticky-cta-bar .btn-primary {
    width: 100% !important;
    padding: 0.65rem 1.5rem !important;
  }

  /* PURCHASE NOTIFICATION */
  #purchase-notification {
    max-width: calc(100vw - 2rem) !important;
    left: 1rem !important;
    right: 1rem !important;
    bottom: 80px !important;
  }

  /* URGENCY BANNER */
  .urgency-banner {
    font-size: 0.75rem !important;
    padding: 0.5rem 1rem !important;
  }

  /* BONUS SECTION */
  #bonus {
    padding: 3rem 0 !important;
  }

  #bonus h2 {
    font-size: 1.5rem !important;
  }

  #bonus .feature-grid {
    gap: 1rem !important;
  }

  #bonus .feature-card {
    padding: 1.25rem !important;
  }

  #bonus .feature-icon-box {
    font-size: 1.25rem !important;
  }

  #bonus .feature-card h4 {
    font-size: 1rem !important;
  }

  #bonus .feature-card p {
    font-size: 0.85rem !important;
  }

  /* SOCIAL PROOF - TESTEMUNHOS */
  #social-proof {
    padding: 3rem 0 !important;
  }

  #social-proof h2 {
    font-size: 1.5rem !important;
    margin-bottom: 2rem !important;
  }

  #social-proof>div>div:nth-child(2) {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .testimonial-card {
    padding: 1.25rem !important;
  }

  .testimonial-card p {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }

  .testimonial-author {
    gap: 0.75rem !important;
  }

  .avatar {
    width: 40px !important;
    height: 40px !important;
  }

  .avatar img {
    width: 40px !important;
    height: 40px !important;
  }

  /* TOUCH-FRIENDLY BUTTONS - Larger tap targets */
  .btn,
  button {
    min-height: 48px;
    touch-action: manipulation;
  }

  .btn-full-purple,
  .btn-primary {
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
  }

  /* AUDIO PLAYER - Better touch experience */
  .audio-player {
    min-height: 70px !important;
    padding: 1rem !important;
  }

  .play-btn {
    min-width: 48px !important;
    min-height: 48px !important;
  }

  /* SCROLL SNAP FOR PACK GRID - Better swipe feel */
  .pack-grid {
    scroll-padding: 16px;
  }

  /* STICKY CTA - Mobile optimized */
  #sticky-cta-bar {
    padding: 0.75rem 0 !important;
  }

  #sticky-cta-bar>div {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  #sticky-cta-bar .btn {
    width: 100% !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.9rem !important;
  }

  /* SPACING FOR THUMB ZONE */
  .container {
    padding-bottom: 0.5rem;
  }

  /* FASTER ANIMATIONS ON MOBILE */
  .reveal {
    transition-duration: 0.3s !important;
  }

  /* HIDE CURSOR GLOW ON MOBILE */
  .cursor-glow {
    display: none !important;
  }

  /* ACCESS STEPS - Mobile card style */
  .step-item {
    text-align: center;
    padding: 1.5rem !important;
    background: rgba(176, 38, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(176, 38, 255, 0.1);
  }

  .step-item h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .step-item p {
    font-size: 0.9rem !important;
    margin: 0 !important;
  }

  /* CTA SECTION - Mobile priority */
  #pricing .pricing-card {
    box-shadow: 0 20px 60px rgba(176, 38, 255, 0.25) !important;
  }

  /* PAYMENT METHODS - Better mobile layout */
  #pricing .pricing-card>div:last-child>div:last-child {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  #pricing .pricing-card>div:last-child>div:last-child>div {
    width: 100%;
    justify-content: center;
  }

  /* REMOVE HOVER EFFECTS ON MOBILE (performance) */
  .pack-category-card:hover {
    transform: none;
  }

  .pack-category-card:active {
    transform: scale(0.98);
  }

  /* COMPARISON TABLE - Mobile horizontal scroll indicator */
  #comparison {
    position: relative;
  }

  /* FAQ - Better mobile accordion */
  .faq-item {
    margin-bottom: 0.75rem !important;
  }

  .faq-question {
    padding: 1rem !important;
    font-size: 0.9rem !important;
  }

  /* MODAL POPUPS - Full width on mobile */
  #exit-popup>div {
    width: calc(100vw - 2rem) !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    margin: 1rem !important;
  }
}

/* =========================================
   TABLET RESPONSIVENESS (MAX-WIDTH: 768px)
   ========================================= */
@media (max-width: 768px) and (min-width: 431px) {

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero h1 {
    font-size: 2.75rem !important;
  }

  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audio-grid {
    grid-template-columns: 1fr !important;
  }

  #access-steps .grid-2 {
    grid-template-columns: 1fr !important;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .pricing-card {
    max-width: 100%;
  }

  .amount {
    font-size: 4rem;
  }

  /* GUARANTEE - Tablet */
  #guarantee .container>div>div:last-child {
    flex-wrap: wrap;
  }

  /* EXIT POPUP - Tablet */
  #exit-popup>div {
    max-width: 420px;
  }

  /* Sticky bar stays horizontal on tablet */
  #sticky-cta-bar>div {
    flex-direction: row;
  }
}