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

:root {
  --primary-red: #f4001e;
  --primary-red-dim: rgba(244, 0, 30, 0.2);
  --primary-red-glow: rgba(244, 0, 30, 0.4);
  --dark-bg: #030303;
  --dark-panel: rgba(20, 20, 22, 0.6);
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-border: rgba(255, 255, 255, 0.06);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --white: #ffffff;
  
  --gradient-red: linear-gradient(135deg, #ff455d 0%, #d1001a 100%);
  --gradient-card: linear-gradient(180deg, rgba(30,30,30,0.8) 0%, rgba(10,10,10,0.9) 100%);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --shadow-glow: 0 0 40px rgba(244, 0, 30, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(244, 0, 30, 0.35);
  --shadow-card: inset 0 1px 1px rgba(255,255,255,0.05), 0 10px 30px rgba(0,0,0,0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background-color: var(--dark-bg);
}

body.premium-dark-theme {
  background-color: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* Utilities */
.icon-xxs { width: 14px; height: 14px; }
.icon-xs { width: 16px; height: 16px; }
.icon-sm { width: 20px; height: 20px; }
.icon-md { width: 24px; height: 24px; }
.text-red { color: var(--primary-red); }
.text-green { color: #10b981; }
.text-blue { color: #3b82f6; }
.text-yellow { color: #f59e0b; }
.fill-yellow { fill: #f59e0b; }
.mt-20 { margin-top: 20px; }

/* Cinematic Background Background */
.cinematic-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: var(--dark-bg);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: floatOrb 15s ease-in-out infinite alternate;
}

.orb-1 {
  top: -10%; left: 50%;
  width: 600px; height: 500px;
  background: radial-gradient(circle, rgba(200,0,20,0.3) 0%, transparent 70%);
  transform: translateX(-50%);
}

.orb-2 {
  top: 40%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(150,0,20,0.2) 0%, transparent 70%);
  animation-delay: -5s;
}

.orb-3 {
  bottom: -10%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,0,30,0.15) 0%, transparent 70%);
  animation-delay: -10s;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: overlay;
}

@keyframes floatOrb {
  0% { transform: translate(-50%, 0) scale(1); }
  100% { transform: translate(-45%, 50px) scale(1.1); }
}

/* App Container (Mobile First but scales nicely) */
.app-container {
  max-width: 500px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  /* subtle side borders for desktop view */
  box-shadow: 0 0 100px rgba(0,0,0,0.8);
}
@media (min-width: 501px) {
  .app-container {
    background: rgba(10,10,12,0.4);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.03);
  }
}

/* Urgency Bar Premium */
.urgency-bar-premium {
  position: relative;
  z-index: 100;
  width: 100%;
  background: rgba(20,0,5,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244, 0, 30, 0.2);
  display: flex;
  flex-direction: column;
}
.urgency-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.urgency-icon { color: var(--primary-red); animation: pulse 2s infinite; }
.countdown-premium {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-weight: 800;
}
.urgency-progress {
  height: 2px;
  background: var(--gradient-red);
  width: 100%;
  animation: loadingBar 15s linear forwards;
}

@keyframes loadingBar { 0% { width: 100%; } 100% { width: 0%; } }

/* Shared Section Config */
.section { padding: 80px 24px; position: relative; }
.section-dark { border-bottom: 1px solid rgba(255,255,255,0.03); }
.section-deep { background: rgba(5,5,5,0.6); }

/* Typography */
.section-header { margin-bottom: 48px; text-align: center; }

.section-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
  border: 1px solid var(--card-border);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.02);
}
.badge-red { border-color: rgba(244,0,30,0.3); color: var(--primary-red); background: rgba(244,0,30,0.05); }

.title-cinematic {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
}

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

.subtitle-premium {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  padding: 60px 24px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.badge-premium-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e4e4e7;
  backdrop-filter: blur(12px);
  margin-bottom: 32px;
}
.badge-glow {
  position: absolute; inset: 0; border-radius: 100px;
  box-shadow: 0 0 15px rgba(255,255,255,0.05); z-index: -1;
}
.badge-icon { color: var(--primary-red); }

.headline-cinematic {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-mockup-wrapper {
  margin: 40px auto 60px;
  padding: 20px;
  perspective: 1000px;
  transform-style: preserve-3d;
  width: 100%;
  max-width: 320px;
}

.mockup-glow-back {
  position: absolute;
  top: 40%; left: 50%; transform: translate(-50%, -50%);
  width: 70%; height: 70%;
  background: var(--primary-red);
  filter: blur(70px);
  opacity: 0.35;
  border-radius: 50%;
  z-index: 0;
}

.mockup-3d {
  position: relative;
  z-index: 2;
  transform: rotateX(5deg) rotateY(-5deg) translateZ(20px);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-img-3d {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.8), inset 0 1px 1px rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  background: #111;
}

.floating-tag-premium {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 15, 18, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, inset 0 1px 1px rgba(255,255,255,0.05);
}

.tag-left { top: 20%; left: -15%; }
.tag-right { bottom: 15%; right: -10%; }

.float-anim-1 { animation: floatTag 6s ease-in-out infinite; }
.float-anim-2 { animation: floatTag 5s ease-in-out infinite 1s; }

@keyframes floatTag {
  0%, 100% { transform: translateY(0) translateZ(40px); }
  50% { transform: translateY(-15px) translateZ(40px); }
}

.tag-icon-wrap {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.green-wrap { background: rgba(16, 185, 129, 0.15); }
.red-wrap { background: rgba(244, 0, 30, 0.15); }

.tag-text-wrap { display: flex; flex-direction: column; text-align: left; }
.tag-val { font-size: 0.95rem; font-weight: 800; color: #fff; line-height: 1.1; }
.tag-lbl { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }

/* ---------------- VSL HERO CLASSES ---------------- */
.vsl-cinematic-wrapper {
    position: relative; max-width: 860px; width: 100%; margin: 64px auto 0; display: flex; flex-direction: column; align-items: center; z-index: 5;
}
@media (max-width: 500px) {
  .vsl-player-neo {
      width: calc(100% + 24px);
      margin-left: -12px;
      margin-right: -12px;
      border-radius: 16px;
  }
}
.vsl-header-text {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: rgba(0,0,0,0.6); padding: 8px 24px; border-radius: 100px; 
    border: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; color: #fff; font-weight: 600; text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.vsl-player-neo {
    position: relative; width: 100%; border-radius: 24px; background: #000;
    box-shadow: 0 40px 100px rgba(0,0,0,1), 0 0 0 1px rgba(255,255,255,0.08), inset 0 2px 2px rgba(255,255,255,0.15);
    transform: translateZ(0); /* force hw acceleration */
}
.vsl-glow-back {
    position: absolute; inset: -30px; background: var(--primary-red); opacity: 0.25; filter: blur(60px); z-index: -1; pointer-events: none;
}
.vimeo-container {
    padding: 56.25% 0 0 0; position: relative; width: 100%; border-radius: 23px; overflow: hidden;
}
.vimeo-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; /* Disable standard interaction until playing */
}

/* Glass Overlay & Play Button */
.vsl-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 10; cursor: pointer; transition: opacity 0.5s ease;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 80%);
}
.vsl-overlay:hover .custom-play-btn { transform: scale(1.08); box-shadow: 0 15px 40px rgba(244,0,30,0.6), inset 0 2px 5px rgba(255,255,255,0.4); }
.custom-play-btn {
    width: 86px; height: 86px; background: rgba(244,0,30,0.9); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; position: relative;
    box-shadow: 0 10px 30px rgba(244,0,30,0.5), inset 0 2px 5px rgba(255,255,255,0.3); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.play-icon-svg { width: 44px; height: 44px; fill: #fff; transform: translateX(3px); }
.play-pulse-ring {
    position: absolute; inset: 0; border-radius: 50%; animation: pingBtn 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    box-shadow: 0 0 0 0 rgba(244,0,30,0.6); pointer-events: none;
}
@keyframes pingBtn { 70%, 100% { box-shadow: 0 0 0 35px transparent; } }

.overlay-text {
    margin-top: 24px; font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; color: #fff;
    animation: pulseWarning 2s infinite; pointer-events: none; border-radius: 12px;
}

/* Trust Bar Neo */
.trust-row-vsl {
    display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; z-index: 5; position: relative;
}
.trust-card-neo {
    display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    padding: 10px 20px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.02);
}
@media (max-width: 600px) {
    .trust-row-vsl { gap: 8px; justify-content: center; width: 100%; }
    .trust-card-neo { padding: 8px 12px; font-size: 0.75rem; flex: 1 1 auto; justify-content: center; text-align: center; }
}

/* Buttons & CTAs */
.cta-wrapper { position: relative; width: 100%; max-width: 400px; margin: 0 auto; display: inline-block;}
.cta-wrapper.full-width { display: block; max-width: 100%; }

.cta-glow-effect {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary-red);
  filter: blur(25px); opacity: 0.4;
  border-radius: 100px; z-index: -1;
  transition: all 0.3s ease;
}
.cta-glow-effect.strong-glow { filter: blur(35px); opacity: 0.5;}
.cta-wrapper:hover .cta-glow-effect { opacity: 0.7; filter: blur(30px); }

.btn-cinematic-red {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%;
  padding: 22px 24px;
  border-radius: 100px;
  background: var(--gradient-red);
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem; font-weight: 800;
  border: 1px solid rgba(255,150,150,0.3);
  box-shadow: inset 0 2px 2px rgba(255,255,255,0.2), inset 0 -4px 8px rgba(0,0,0,0.3), 0 10px 20px rgba(0,0,0,0.5);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-large { padding: 24px 24px; font-size: 1.2rem; }
.btn-cinematic-red:hover { transform: scale(1.03) translateY(-2px); }
.btn-cinematic-red:active { transform: scale(0.98); }

.btn-shine {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite;
}
@keyframes shine { 0% { left: -100%; } 20%, 100% { left: 200%; } }

.btn-pulse-strong { animation: pulseHeart 2.5s infinite; }
@keyframes pulseHeart {
  0% { box-shadow: inset 0 2px 2px rgba(255,255,255,0.2), 0 0 0 0 rgba(244,0,30,0.6); }
  70% { box-shadow: inset 0 2px 2px rgba(255,255,255,0.2), 0 0 0 25px rgba(244,0,30,0); }
  100% { box-shadow: inset 0 2px 2px rgba(255,255,255,0.2), 0 0 0 0 rgba(244,0,30,0); }
}

.trust-row-premium {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  margin-top: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--text-muted); font-weight: 500;
}
.trust-item i { width: 14px; height: 14px; color: var(--primary-red); }
.trust-dot { color: rgba(255,255,255,0.1); font-size: 0.6rem; }

/* Proof Bar */
.proof-bar-cinematic {
  padding: 0 16px 40px; margin-top: -20px; position: relative; z-index: 10;
}
.proof-bar-inner {
  display: flex; justify-content: space-evenly; align-items: center;
  background: rgba(15,15,18,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  box-shadow: var(--shadow-card);
}
.proof-item-neo { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.proof-icon-container { position: relative; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;}
.icon-glow { position: absolute; width: 100%; height: 100%; background: var(--primary-red); filter: blur(15px); opacity: 0.4; }
.proof-val { font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1; }
.proof-lbl { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.proof-divider { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent); }

/* Persona Neo Section */
.persona-neo-section {
  position: relative;
  overflow: hidden;
}
.neon-dim { opacity: 0.1; }
.persona-card-glass {
  background: rgba(20,20,24,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.05);
  margin-bottom: 40px;
}
.persona-glow-bg {
  position: absolute; top: 0; right: 0; width: 300px; height: 300px;
  background: var(--primary-red); filter: blur(120px); opacity: 0.15; z-index: 0; pointer-events: none;
}
.persona-layout {
  display: flex; gap: 32px; align-items: stretch; position: relative; z-index: 1; flex-direction: column;
}
@media (min-width: 501px) {
  .persona-layout { flex-direction: row; }
}
.persona-profile {
  display: flex; gap: 16px; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 24px;
}
@media (min-width: 501px) {
  .persona-profile { flex-direction: column; text-align: center; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.05); padding-right: 32px; padding-bottom: 0; }
}
.persona-avatar-wrap { position: relative; width: 80px; height: 80px; }
.persona-avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-red); }
.persona-status-dot { position: absolute; bottom: 0; right: 4px; width: 14px; height: 14px; background: #10b981; border-radius: 50%; border: 2px solid #141418; }
.persona-info-text h3 { font-size: 1.25rem; font-weight: 800; color: #fff; line-height: 1.2; }
.persona-role { display: block; font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.persona-age { display: inline-block; font-size: 0.75rem; background: rgba(255,255,255,0.05); padding: 2px 8px; border-radius: 100px; margin-top: 8px; color: var(--text-muted); font-weight: 600; }

.persona-traits { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.traits-list-neo { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.traits-list-neo li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #d1d1d6; line-height: 1.4; }
.traits-list-neo i { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }

.persona-quote {
  margin-top: 32px; padding: 24px; background: rgba(0,0,0,0.3); border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary-red); position: relative; z-index: 1; display: flex; gap: 16px; align-items: center;
}
.quote-icon { color: var(--primary-red); width: 32px; height: 32px; flex-shrink: 0; opacity: 0.5; }
.persona-quote p { font-size: 1.05rem; font-style: italic; color: #fff; font-weight: 600; line-height: 1.5; }

.float-noti {
  position: absolute; background: rgba(15,15,18,0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 6px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5); z-index: 2; animation: floatCard 4s infinite ease-in-out;
}
.noti-1 { top: -15px; right: 20px; animation-delay: 0s; }
.noti-2 { bottom: -15px; left: 20px; animation-delay: -2s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Pain Points Grid */
.pain-points-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pain-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md);
  padding: 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  transition: all 0.3s ease; box-shadow: var(--shadow-sm);
}
.pain-card:hover { background: rgba(244,0,30,0.05); border-color: rgba(244,0,30,0.3); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.pain-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.03); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-red); }
.pain-card:hover .pain-icon { background: rgba(244,0,30,0.1); }
.pain-card h4 { font-size: 0.85rem; font-weight: 700; color: #fff; line-height: 1.3; }

/* New Reviews Sliding Area */
.new-reviews-section { position: relative; overflow: hidden; }
.dim-orb { opacity: 0.1; }
.reviews-slider-neo { display: flex; flex-direction: column; gap: 24px; }
.review-card-neo {
  background: linear-gradient(180deg, rgba(20,20,24,0.7) 0%, rgba(10,10,12,0.95) 100%);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  padding: 32px; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.08), inset 0 -30px 60px -30px rgba(244,0,30,0.15);
}
.review-card-neo:hover {
  background: linear-gradient(180deg, rgba(30,30,34,0.85) 0%, rgba(15,15,17,1) 100%);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(244,0,30,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7), inset 0 1px 1px rgba(255,255,255,0.1), inset 0 -40px 80px -40px rgba(244,0,30,0.3);
}
.rev-glow-top { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, rgba(244,0,30,0.8), transparent); opacity: 0.3; transition: 0.4s; }
.review-card-neo:hover .rev-glow-top { opacity: 1; box-shadow: 0 0 15px rgba(244,0,30,0.5); }
.rev-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.rev-stars i { width: 16px; height: 16px; color: #f59e0b; filter: drop-shadow(0 0 6px rgba(245,158,11,0.6)); }
.rev-text { font-size: 1.05rem; line-height: 1.6; color: #e4e4e7; margin-bottom: 24px; font-weight: 500; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: 16px; }
.rev-avatar { width: 48px; height: 48px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(244,0,30,0.3); box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.rev-name { font-size: 1rem; font-weight: 800; color: #fff; display: flex; flex-direction: column; }
.rev-role { font-size: 0.8rem; color: #a1a1aa; font-weight: 600; margin-top: 2px; }

/* Benefits */
.orb-bg-left {
  position: absolute; top: 20%; left: -20%; width: 300px; height: 300px;
  background: var(--primary-red); filter: blur(100px); opacity: 0.15; z-index: 0; border-radius: 50%; pointer-events: none;
}
.benefits-container-neo { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; margin-bottom: 40px; }
.b-card-neo {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(15,15,18,0.7);
  border: 1px solid var(--card-border);
  padding: 20px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.b-card-glow {
  position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--gradient-red); opacity: 0.5; transition: opacity 0.3s;
}
.b-card-neo:hover .b-card-glow { opacity: 1; box-shadow: 0 0 15px var(--primary-red); }
.b-icon-wrap {
  width: 40px; height: 40px; background: rgba(244,0,30,0.05); border-radius: 10px;
  display: flex; justify-content: center; align-items: center; color: var(--primary-red); flex-shrink: 0;
}
.b-content h4 { font-size: 1.1rem; color: #fff; margin-bottom: 6px; font-weight: 700; }
.b-content p { font-size: 0.9rem; color: var(--text-muted); }

.bonus-card-neo { background: rgba(245, 158, 11, 0.03); border-color: rgba(245, 158, 11, 0.2); }
.b-card-glow.gold-glow { background: #f59e0b; }
.gold-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.bonus-tag { display: inline-block; font-size: 0.65rem; color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); padding: 2px 8px; border-radius: 100px; margin-bottom: 8px; font-weight: 800; }
.gold-text { color: #f59e0b !important; }

/* Realistic Social Proof */
.iphone-pro-mockup {
  background: #000;
  border-radius: 40px;
  border: 4px solid #333;
  box-shadow: 0 0 0 8px #1a1a1a, 0 40px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  margin: 0 auto 32px; width: 100%; max-width: 360px;
  transform: rotateX(2deg); transition: transform 0.3s;
}
.iphone-frame {
  position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.1); border-radius: 36px; pointer-events: none; z-index: 10;
}
.iphone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 30px;
  background: #000; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; z-index: 20;
  display: flex; justify-content: center; align-items: center;
}
.notch-camera { width: 10px; height: 10px; border-radius: 50%; background: #111; box-shadow: inset 0 0 2px rgba(255,255,255,0.1); }

.iphone-header-neo { background: rgba(30,30,30,0.9); backdrop-filter: blur(10px); padding-bottom: 12px; }
.iphone-status-bar { display: flex; justify-content: space-between; padding: 12px 24px 6px; font-size: 0.75rem; font-weight: 600; color: #fff; }
.status-icons { display: flex; gap: 4px; }
.wa-header { display: flex; align-items: center; justify-content: space-between; padding: 0 16px; margin-top: 4px;}
.wa-user-info { display: flex; align-items: center; gap: 8px; flex: 1; margin-left: 8px;}
.wa-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.1); }
.wa-name { font-size: 0.95rem; font-weight: 600; color: #fff; }
.wa-actions { display: flex; gap: 16px; color: #3b82f6; }

.wa-chat-area-neo {
  background: #0d1117 url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 10h10v10H10V10zM0 10h10v10H0V10z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 20px 16px 24px; min-height: 380px; display: flex; flex-direction: column; gap: 16px;
}
.chat-date { text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.5); background: rgba(0,0,0,0.3); padding: 4px 12px; border-radius: 12px; align-self: center; margin-bottom: 8px;}
.wa-bubble {
  background: #1f2937; padding: 10px 14px; border-radius: 16px 16px 16px 4px;
  max-width: 85%; font-size: 0.95rem; color: #e5e7eb; box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  position: relative; line-height: 1.4;
}
.wa-message-row { display: flex; align-items: flex-start; gap: 8px; }
.wa-message-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; margin-top: 4px; border: 1px solid rgba(255,255,255,0.1); }
.shadow-bubble { border: 1px solid rgba(255,255,255,0.05); }
.sender-name { font-size: 0.8rem; font-weight: 700; margin-bottom: 4px; }
.wa-time { display: block; text-align: right; font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

.wa-input-neo {
  background: #1f2937; padding: 12px 16px; display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,0.05);
}
.wa-input-field { flex: 1; background: rgba(0,0,0,0.3); border-radius: 100px; padding: 8px 16px; font-size: 0.9rem; color: rgba(255,255,255,0.4); }
.wa-mic { width: 36px; height: 36px; background: #3b82f6; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }

.social-stars-neo { text-align: center; }
.stars-flex { display: flex; justify-content: center; gap: 4px; margin-bottom: 8px; }
.drop-glow-yellow { filter: drop-shadow(0 0 8px rgba(245,158,11,0.5)); }
.stars-text-neo { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* Scroll Arrow Divider */
.scroll-arrow-divider {
    display: flex; justify-content: center; width: 100%;
    margin-top: 40px; margin-bottom: 40px; position: relative; z-index: 50; pointer-events: none;
}
.scroll-arrow-divider i {
    color: #fff; width: 28px; height: 28px; opacity: 0.6; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    animation: gentleBounce 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Offer Section */
.orb-bg-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 400px; height: 400px; background: var(--primary-red); filter: blur(120px); opacity: 0.15; z-index: 0; pointer-events: none;}

/* Dynamic Social Proof Toasts */
.dynamic-toast-container {
    position: fixed; bottom: 20px; left: 20px; z-index: 1000;
    display: flex; flex-direction: column; gap: 12px; pointer-events: none;
}
@media (max-width: 600px) {
    .dynamic-toast-container { bottom: 20px; left: 10px; right: 10px; align-items: flex-start; }
}
.dynamic-toast {
    background: rgba(20,20,24,0.85); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 100px;
    padding: 10px 16px 10px 10px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.05);
    max-width: 320px;
}
.toast-icon-wrap {
    width: 32px; height: 32px; border-radius: 50%; display: flex; justify-content: center; align-items: center; flex-shrink: 0;
}
.toast-content-info {
    display: flex; flex-direction: column; justify-content: center;
}
.toast-title { font-size: 0.8rem; font-weight: 600; color: #fff; line-height: 1.2; }
.toast-time { font-size: 0.7rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 2px;}

.fade-out-down { opacity: 0; transform: translateY(20px); animation: fadeOutDown 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
@keyframes fadeOutDown {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}

/* Reels Premium Showcase */
.reels-premium-showcase {
    position: relative;
    padding-top: 40px;
    padding-bottom: 80px;
    margin-top: -20px;
    background: radial-gradient(circle at center, rgba(20,5,5,0.9) 0%, var(--dark-bg) 80%);
    overflow: hidden;
}
.showcase-bg {
    position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm20 20h20v20H20V20zM0 20h20v20H0V20z' fill='%23ffffff' fill-opacity='0.015' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6; z-index: 0;
}
.particles-neo {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: radial-gradient(rgba(244,0,30,0.15) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.4; z-index: 0;
}
.showcase-header {
    position: relative; z-index: 2; margin-bottom: 16px;
}
.showcase-header h2 {
    font-size: 2.2rem; line-height: 1.1; margin-top: 16px; font-weight: 900; letter-spacing: -0.5px;
}
.showcase-image-wrapper {
    position: relative; margin: 0 auto; width: 95%; max-width: 1100px; z-index: 2;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.showcase-image-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
}
.showcase-ultra-glow {
    position: absolute; top: 10%; left: 5%; right: 5%; bottom: 10%; background: var(--primary-red); filter: blur(100px); opacity: 0.35; z-index: -1;
}
.showcase-img {
    width: 100%; height: auto; display: block; border-radius: 24px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 40px 80px rgba(0,0,0,0.8), inset 0 1px 2px rgba(255,255,255,0.15);
}
.showcase-bottom-area {
    position: relative; z-index: 2; max-width: 700px; margin: 32px auto 0; padding: 0 20px;
}
.showcase-text-block {
    text-align: center;
}
.showcase-p {
    font-size: 1.15rem; font-weight: 500; color: #fff; line-height: 1.5; margin-bottom: 16px;
}
.showcase-p.text-muted {
    font-size: 0.95rem; font-weight: 400; color: rgba(255,255,255,0.5);
}
.showcase-benefits-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (min-width: 600px) {
    .showcase-benefits-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.showcase-b-card {
    background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px 12px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; font-size: 0.85rem; font-weight: 700; color: #fff; box-shadow: inset 0 1px 1px rgba(255,255,255,0.02); transition: all 0.3s ease;
}
.showcase-b-card i {
    width: 28px; height: 28px; filter: drop-shadow(0 0 8px rgba(244,0,30,0.5));
}
.showcase-b-card:hover {
    background: rgba(244,0,30,0.08); border-color: rgba(244,0,30,0.3); transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* ------------------- NEW OFFER PREMIUM V2 ------------------- */
.offer-premium-saas {
    position: relative; padding: 60px 20px;
    background: var(--dark-bg);
    text-align: center; overflow: hidden;
}

.checkout-panel-v2 {
    background: rgba(30, 30, 36, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1); border-bottom: 2px solid rgba(255,255,255,0.15); border-radius: 28px;
    max-width: 650px; width: 95%; margin: 0 auto; padding: 44px 32px;
    box-shadow: 0 50px 100px rgba(0,0,0,1), inset 0 2px 5px rgba(255,255,255,0.05);
    position: relative; z-index: 2; transform: translateZ(0);
}

/* Anchor Cards Compact */
.anchor-cards-v2 { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.anchor-card-neo.bad-choice {
    display: flex; align-items: center; justify-content: flex-start; gap: 12px;
    background: rgba(0,0,0,0.4); border: 1px solid transparent; border-radius: 14px;
    padding: 12px 16px; font-size: 0.9rem; color: #a1a1aa; font-weight: 500;
    transition: all 0.3s ease; position: relative; overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}
.anchor-card-neo.bad-choice:hover {
    background: rgba(244,0,30,0.08); border: 1px solid rgba(244,0,30,0.3);
    transform: scale(1.02);
}
.bad-icon-wrap {
    width: 24px; height: 24px; border-radius: 50%; background: rgba(244,0,30,0.1); display: flex; align-items: center; justify-content: center;
    color: #f87171; transition: all 0.3s ease;
}
.anchor-card-neo.bad-choice:hover .bad-icon-wrap {
    background: #f87171; color: #fff; box-shadow: 0 0 15px rgba(244,0,30,0.6);
}
.anchor-card-neo.bad-choice:hover .bad-text {
    text-decoration: line-through; color: #71717a;
}
.bad-text { color: rgba(255,255,255,0.9); margin-right: auto; transition: all 0.3s ease;}
.anchor-card-neo.bad-choice em { font-style: normal; text-decoration: line-through; color: #71717a; }

.offer-divider {
    font-size: 0.95rem; color: rgba(255,255,255,0.8); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
    margin: 24px 0 16px; position: relative;
}

/* Massive Price */
.price-massive-v2 { position: relative; margin-bottom: 32px; }
.price-display-v2 {
    display: flex; justify-content: center; align-items: flex-start; text-shadow: 0 10px 30px rgba(0,0,0,0.6);
    line-height: 0.8;
}
.currency-v2 { font-size: 1.8rem; font-weight: 700; color: #fff; transform: translateY(6px); margin-right: 4px; }
.value-v2 { font-size: 5.5rem; font-weight: 900; color: #fff; letter-spacing: -3px; }
.cents-v2 { font-size: 1.8rem; font-weight: 800; color: #fff; transform: translateY(6px); }
.price-terms-v2 {
    font-size: 0.8rem; color: #10b981; margin-top: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
}
.pix-discount-tag {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #10b981;
    font-size: 0.85rem; font-weight: 600; padding: 10px 16px; border-radius: 8px; margin-top: 16px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
}
.pix-discount-tag strong { font-weight: 900; color: #34d399; }

/* Benefits Grid (Compact) */
.benefits-grid-v2 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 8px; margin-bottom: 32px; }
@media (max-width: 480px) {
    .benefits-grid-v2 { grid-template-columns: 1fr 1fr; gap: 10px; }
}
.b-card-v2 {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px;
    padding: 12px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.b-card-v2 i { width: 22px; height: 22px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.b-card-v2 span { font-size: 0.7rem; font-weight: 600; color: #e4e4e7; text-align: center; line-height: 1.2; text-transform: uppercase;}

/* Massive CTA */
.cta-wrapper { position: relative; }
.btn-massive-v2 {
    width: 100%; height: 70px; border-radius: 100px; font-size: 1.1rem; font-weight: 800; display: inline-flex; justify-content: center; align-items: center;
    background: linear-gradient(135deg, #ff0f39 0%, #d4001a 100%); color: #fff; text-decoration: none;
    box-shadow: 0 15px 30px rgba(244,0,30,0.4), inset 0 2px 2px rgba(255,255,255,0.2); transition: transform 0.3s ease;
}
.btn-massive-v2:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(244,0,30,0.5), inset 0 2px 2px rgba(255,255,255,0.3); }
.cta-subtext-v2 { font-size: 0.8rem; color: #a1a1aa; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; margin-bottom: 24px;}

.divider-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); margin-bottom: 24px; }

/* Social Urgency */
.social-urgency-v2 {
    display: flex; flex-direction: column; gap: 12px; text-align: left; background: rgba(0,0,0,0.2); border-radius: 16px; padding: 16px 20px; margin-bottom: 24px;
}
.urgency-item-v2 {
    display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: #a1a1aa; font-weight: 500; margin: 0; padding: 0;
}
.urgency-item-v2 p { margin: 0; flex-grow: 1;}
.urgency-item-v2 strong { color: #fff; }
.urgency-icon-v2 { width: 22px; display: flex; justify-content: center; font-size: 1.05rem; }

/* Premium Countdown */
.countdown-v2 {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(244,0,30,0.06); border: 1px solid rgba(244,0,30,0.15); border-radius: 16px; padding: 14px 24px;
    flex-wrap: wrap; gap: 12px;
}
.countdown-left-flex {
    display: flex; align-items: center; gap: 10px;
}
.pulse-warning { animation: pulseWarning 2s infinite; }
@keyframes pulseWarning { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.countdown-warning-txt { font-size: 0.85rem; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.countdown-timer-v2 { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;}
.time-box-v2 { display: flex; align-items: baseline; gap: 2px;}
.time-box-v2 span { font-size: 1.2rem; font-weight: 800; color: #fff; }
.time-box-v2 small { font-size: 0.7rem; color: #f87171; font-weight: 700; text-transform: lowercase;}
.colon-v2 { font-size: 1rem; font-weight: 800; color: #f87171; animation: blink 1s infinite; transform: translateY(-1px);}

/* Visual Warranty (Outside) */
.warranty-v2 {
    max-width: 500px; margin: 32px auto 0;
    background: rgba(16,185,129,0.05); border: 1px solid rgba(16,185,129,0.2); border-radius: 20px;
    padding: 24px; display: flex; align-items: flex-start; gap: 16px; text-align: left; position: relative; overflow: hidden;
}
.warranty-icon-v2 {
    background: rgba(16,185,129,0.1); padding: 10px; border-radius: 12px; border: 1px solid rgba(16,185,129,0.2); flex-shrink: 0;
}
.warranty-icon-v2 i { width: 28px; height: 28px; color: #10b981; }
.warranty-content-v2 h3 { font-size: 1.05rem; color: #10b981; font-weight: 700; margin-bottom: 6px; }
.warranty-content-v2 p { font-size: 0.85rem; color: #a1a1aa; line-height: 1.4; font-weight: 500; }

/* FAQ Premium SaaS */
.faq-accordion-neo { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; max-width: 800px; margin-left: auto; margin-right: auto;}
.faq-item-neo { 
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px;
    overflow: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.03);
}
.faq-item-neo:hover {
    background: rgba(255,255,255,0.04); border-color: rgba(244,0,30,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 1px rgba(244,0,30,0.1);
}
.faq-question-neo { 
    width: 100%; text-align: left; background: none; border: none; padding: 24px; 
    font-size: 1.05rem; font-weight: 700; color: #fff; display: flex; justify-content: space-between; align-items: center; 
    cursor: pointer; position: relative; z-index: 2;
}
.faq-question-neo i { 
    color: #a1a1aa; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease; 
}
.faq-question-neo.active i { 
    transform: rotate(45deg); color: var(--primary-red); filter: drop-shadow(0 0 8px rgba(244,0,30,0.8));
}
.faq-answer-neo { 
    max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative; z-index: 1;
}
.faq-answer-neo p { 
    padding: 0 24px 24px 24px; color: #a1a1aa; font-size: 0.95rem; line-height: 1.6; font-weight: 500;
}

/* Footer */
.footer-neo { text-align: center; padding: 40px 24px; background: #000; position: relative; border-top: 1px solid rgba(255,255,255,0.03); }
.footer-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 1px; box-shadow: 0 0 20px 2px var(--primary-red); }
.footer-neo p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-disclaimer { font-size: 0.7rem !important; color: rgba(255,255,255,0.2) !important; max-width: 400px; margin: 0 auto; line-height: 1.5;}

/* High-Ticket Bonus Section */
.bonus-section-bg {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.badge-green {
  border-color: rgba(16,185,129,0.3);
  color: #10b981;
  background: rgba(16,185,129,0.05);
}

.bonus-grid-neo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.bonus-card-high-ticket {
  background: rgba(15,15,18,0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.02), 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}

.bonus-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gradient-red);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bonus-card-high-ticket:hover {
  transform: translateY(-4px);
  border-color: rgba(244,0,30,0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4), inset 0 1px 1px rgba(244,0,30,0.1);
}

.bonus-card-high-ticket:hover .bonus-glow {
  opacity: 1;
}

.bonus-content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.bonus-icon {
  width: 44px; height: 44px;
  background: rgba(244,0,30,0.05);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-red);
  border: 1px solid rgba(244,0,30,0.1);
}

.bonus-tag-free {
  font-size: 0.75rem;
  font-weight: 800;
  color: #10b981;
  background: rgba(16,185,129,0.1);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(16,185,129,0.2);
  letter-spacing: 0.5px;
}

.bonus-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bonus-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.price-strikethrough {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.orb-bg-right {
  position: absolute; top: 10%; right: -20%; width: 300px; height: 300px;
  background: var(--primary-red); filter: blur(100px); opacity: 0.15; z-index: 0; pointer-events: none; border-radius: 50%;
}

.bonus-banner-container {
  width: 100%;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.bonus-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Animations */
.fade-in { opacity: 0; animation: fadeIn 0.8s forwards; }
.fade-in-up { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px); /* Hidden state */
    background: var(--gradient-red);
    color: #fff;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(244, 0, 30, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    border: 1px solid rgba(255,150,150,0.3);
}

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

@media (max-width: 600px) {
    .floating-cta {
        width: 90%;
        justify-content: center;
        bottom: 24px;
        padding: 16px 20px;
        font-size: 1rem;
    }
}

/* ---------------- PREVIEW & LIGHTBOX NEO ---------------- */
.preview-section-neo {
    background: linear-gradient(180deg, rgba(15,15,18,0.4) 0%, rgba(5,5,8,0.9) 100%);
    border-top: 1px solid rgba(255,255,255,0.03);
}

.preview-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px auto;
    max-width: 900px;
    padding: 0 16px;
}

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

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

.preview-card-neo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    aspect-ratio: 9/16;
    background: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.preview-card-neo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.preview-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-red);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    mix-blend-mode: overlay;
}

.preview-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 2;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.preview-card-neo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244,0,30,0.3);
    border-color: rgba(244,0,30,0.5);
}

.preview-card-neo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.preview-card-neo:hover .preview-glow {
    opacity: 0.4;
}

.preview-card-neo:hover .preview-hover-overlay {
    opacity: 1;
}

/* Delivery Summary Highlights */
.delivery-summary-neo {
    background: rgba(20,20,24,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.05), 0 20px 40px rgba(0,0,0,0.4);
}

.delivery-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: var(--primary-red);
    opacity: 0.2;
    filter: blur(50px);
    border-radius: 50%;
}

.delivery-title {
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.delivery-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.delivery-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #d1d1d6;
    background: rgba(255,255,255,0.02);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
}

.delivery-list li strong {
    color: #fff;
}

/* Lightbox Modal */
.lightbox-neo {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    padding-bottom: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5,5,8,0.95);
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-neo.show {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lightbox-neo.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-red);
    background: rgba(244,0,30,0.15);
    text-decoration: none;
    transform: scale(1.1);
}

/* ---------------- PRICING NEO ---------------- */
.pricing-anchor-neo {
    margin: 40px auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cost-comparison {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: var(--radius-lg);
}

.cost-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #999;
}

.cost-item.bad i {
    opacity: 0.6;
}

.offer-divider-neo {
    text-align: center;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    padding: 10px 0;
}

.massive-price-box-neo {
    background: linear-gradient(145deg, #111 0%, #1a0505 100%);
    border: 2px solid var(--primary-red);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(244,0,30,0.15), inset 0 0 20px rgba(244,0,30,0.1);
    isolation: isolate;
    overflow: hidden;
}

.massive-price-box-neo .glow-box {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(244,0,30,0.2) 0%, transparent 70%);
    z-index: -1;
}

.price-header-neo {
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #ff9696;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 16px;
}

.price-value-neo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(244,0,30,0.5);
}

.currency-neo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 10px;
    margin-right: 4px;
}

.value-huge {
    font-size: 7rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.cents-neo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 10px;
}

.pix-discount-neo {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 1.05rem;
    color: #eee;
    border: 1px solid rgba(255,255,255,0.1);
}

.pix-discount-neo strong {
    color: #4ade80; /* Light green */
}

@media (max-width: 600px) {
    .currency-neo { font-size: 1.8rem; margin-top: 8px; }
    .value-huge { font-size: 5rem; }
    .cents-neo { font-size: 1.8rem; margin-top: 8px; }
    .pix-discount-neo { font-size: 0.9rem; padding: 10px 16px; }
}

/* PREMIUM IMAGE CAROUSEL STYLES */
.premium-image-carousel {
    max-width: 1000px;
    margin: 40px auto;
    position: relative;
    padding: 0 16px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    /* Optional: hide scrollbar but keep swipeable */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 24px; /* Space for shadow/glow */
    padding-top: 10px;
}

.carousel-slide {
    flex: 0 0 60%; /* Show more of the next item on mobile */
    max-width: 260px; /* Constrain max width so the vertical images don't get huge */
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    position: relative;
}

@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 350px;
        scroll-snap-align: start;
    }
}

.img-proof-card {
    position: relative;
    border-radius: 20px;
    background: #0f0f11;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
    overflow: hidden;
}

.img-proof-card:hover, .img-proof-card:active {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 15, 57, 0.2);
    border-color: rgba(255, 15, 57, 0.3);
}

/* Red glow for images */
.img-proof-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 15, 57, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.img-proof-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain; 
    position: relative;
    z-index: 2;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 15, 57, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.img-proof-card:hover .card-glow, .img-proof-card:active .card-glow {
    opacity: 1;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.indicator.active {
    width: 24px;
    background: #ff0f39;
    box-shadow: 0 0 10px rgba(255, 15, 57, 0.5);
}

/* Trust Bar Below Carousel */
.image-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .image-trust-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .trust-pill {
        justify-content: center;
        padding: 10px 16px;
    }
}

/* Make Preview Gallery a Carousel on Mobile */
@media (max-width: 600px) {
    .preview-gallery {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 20px;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding-left: 8px; /* Extra padding for first item */
        padding-right: 8px; /* Extra padding for last item */
    }
    
    .preview-gallery::-webkit-scrollbar {
        display: none;
    }

    .preview-card-neo {
        flex: 0 0 60% !important;
        scroll-snap-align: center;
        max-width: 240px !important;
        margin-bottom: 0 !important; /* Remove any vertical margin in flex row */
    }
}

/* --- MOBILE PERFORMANCE OVERRIDES --- */
@media (max-width: 768px) {
    /* Hide heavy pseudo elements and backgrounds to reduce paint/composite times on slow mobile devices */
    .glow-orb, .orb-bg-left, .orb-bg-right, .orb-bg-center, .dim-orb, .particles-layer, .vsl-glow-back, .cta-glow-effect, .strong-glow, .noise-overlay, .showcase-ultra-glow {
        display: none !important;
    }
    .cinematic-bg {
        background: #0a0a0c !important; /* Solid background instead of composite layers */
    }
    .img-proof-card {
        box-shadow: none !important; /* Remove heavy shadow */
        border: 1px solid rgba(255,255,255,0.1) !important;
    }
}

/* MEGA VSL MOBILE */
.vsl-mobile-max {
    width: 100%;
    max-width: 480px;
    margin: 40px auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: linear-gradient(to bottom, #111, #000);
    border: 1px solid rgba(255, 15, 57, 0.3);
    box-shadow: 0 15px 40px rgba(255, 15, 57, 0.15);
}

@supports not (aspect-ratio: 9 / 16) {
    .vsl-mobile-max::before {
        content: "";
        display: block;
        padding-top: 177.77%;
    }
}

.vsl-playing {
    border-color: rgba(255,255,255,0.1) !important;
    box-shadow: none !important;
}

.vsl-thumb-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://media.discordapp.net/attachments/985266859064574032/1510492651256807605/content.png?ex=6a1d0367&is=6a1bb1e7&hm=3bb824e9de3a4c989a545a41d6ff2e396aede8d1e99fb3e24c7dd09d8f352266&=&format=webp&quality=lossless&width=743&height=1320') center/cover no-repeat;
}

.vsl-thumb-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* dark overlay */
}

.play-btn-huge {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ff0f39;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px; 
    box-shadow: 0 0 30px rgba(255, 15, 57, 0.6);
    animation: simplePulseVSL 2s infinite;
    cursor: pointer;
}

@keyframes simplePulseVSL {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 15, 57, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 40px rgba(255, 15, 57, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 15, 57, 0.4); }
}

#vsl-player-container, #vsl-player-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 600px) {
    .vsl-mobile-max {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
        margin-top: 32px;
        border-left: none;
        border-right: none;
        aspect-ratio: 9 / 16;
    }
}
