/* ============================================
   LIVELOOP — Premium Sales Page CSS
   Design: Dark Mode, Gradient Accents,
   Glassmorphism, Micro-animations
   UI/UX Optimized & CRO Focused
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --bg: #07070a;
  --bg-2: #0d0d12;
  --bg-3: #111118;
  --panel: #13131a;
  --panel-2: #1a1a24;
  --panel-3: #22222e;
  --border: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --border-hover: rgba(255,255,255,0.15);
  --text: #f0f0f5;
  --text-secondary: #b8b8c8;
  --muted: #7a7a90;
  --pink: #fe2c55;
  --pink-glow: rgba(254,44,85,0.15);
  --cyan: #25f4ee;
  --cyan-glow: rgba(37,244,238,0.12);
  --purple: #b026ff;
  --purple-glow: rgba(176,38,255,0.12);
  --green: #00e676;
  --green-glow: rgba(0,230,118,0.1);
  --gold: #ffc107;
  --grad: linear-gradient(135deg, var(--pink), var(--purple) 50%, var(--cyan));
  --grad-soft: linear-gradient(135deg, rgba(254,44,85,0.08), rgba(176,38,255,0.08) 50%, rgba(37,244,238,0.08));
  --grad-border: linear-gradient(135deg, rgba(254,44,85,0.25), rgba(176,38,255,0.25) 50%, rgba(37,244,238,0.25));
  --glass: rgba(19,19,26,0.6);
  --glass-strong: rgba(19,19,26,0.85);
  --glass-border: rgba(255,255,255,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-glow-pink: 0 0 80px rgba(254,44,85,0.12);
  --shadow-glow-purple: 0 0 80px rgba(176,38,255,0.1);
  --shadow-glow-cyan: 0 0 80px rgba(37,244,238,0.1);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;
  --font: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease);
  --max-w: 1200px;
  --urgency-h: 44px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- DECORATIVE GLOWS ---------- */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.glow-1 {
  width: 600px; height: 600px;
  background: var(--pink);
  top: -200px; left: -200px;
  animation: glowFloat 12s ease-in-out infinite alternate;
}

.glow-2 {
  width: 700px; height: 700px;
  background: var(--purple);
  top: 35%; right: -250px;
  animation: glowFloat 14s ease-in-out infinite alternate-reverse;
}

.glow-3 {
  width: 500px; height: 500px;
  background: var(--cyan);
  bottom: -150px; left: 25%;
  animation: glowFloat 10s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  0% { opacity: 0.08; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.18; transform: translate(20px, -20px) scale(1.1); }
  100% { opacity: 0.1; transform: translate(-10px, 10px) scale(1.05); }
}

/* ---------- GRADIENT TEXT ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- SECTION STYLES ---------- */
.section-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--pink);
  opacity: 0.4;
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

/* ========================================
   TOP URGENCY COUNTDOWN BAR
   ======================================== */
.top-urgency-bar {
  background: linear-gradient(90deg, #fe2c55 0%, #b026ff 50%, #fe2c55 100%);
  background-size: 200% 100%;
  animation: urgencyShift 4s linear infinite;
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1001;
  min-height: var(--urgency-h);
  display: flex;
  align-items: center;
}

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

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  flex-wrap: wrap;
}

.urgency-fire {
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.urgency-fire-short { display: none; }

.countdown-timer {
  background: rgba(0,0,0,0.4);
  color: var(--green);
  font-family: 'Inter', monospace;
  font-size: 15px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,230,118,0.3);
  letter-spacing: 2px;
  min-width: 70px;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.urgency-btn {
  background: rgba(255,255,255,0.95);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 11px;
  padding: 5px 16px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s var(--ease-spring);
  white-space: nowrap;
  flex-shrink: 0;
}

.urgency-btn-short { display: none; }

.urgency-btn:hover {
  transform: scale(1.06);
}

/* ========================================
   HEADER
   ======================================== */
header {
  position: fixed;
  top: var(--urgency-h);
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,7,10,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(7,7,10,0.92);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover { opacity: 1; }

.logo-mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(254,44,85,0.3);
}

.logo-accent { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover { color: var(--text); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  border-radius: 2px;
  transform-origin: left;
}

.nav-links a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10002;
}

.mobile-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s var(--ease);
  border-radius: inherit;
}

.btn:hover::before {
  background: rgba(255,255,255,0.08);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

/* Sizes */
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-md { padding: 12px 26px; font-size: 14px; }
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-xl { padding: 20px 44px; font-size: 17px; }
.btn-full { width: 100%; }

/* Variants */
.btn-grad {
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(254,44,85,0.25), 0 0 40px rgba(176,38,255,0.1);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-grad:hover {
  box-shadow: 0 8px 36px rgba(254,44,85,0.35), 0 0 60px rgba(176,38,255,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.03);
}

.btn-glass {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--border-hover);
}

.btn-arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Pulse Animation for Primary CTA */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(254,44,85,0.25), 0 0 0 0 rgba(254,44,85,0.4); }
  50% { box-shadow: 0 4px 36px rgba(254,44,85,0.35), 0 0 0 12px rgba(254,44,85,0); }
}

.pulse-btn {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

.pulse-btn:hover {
  animation: none;
  box-shadow: 0 8px 36px rgba(254,44,85,0.35), 0 0 60px rgba(176,38,255,0.15);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--urgency-h) + 100px) 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(37,244,238,0.06);
  border: 1px solid rgba(37,244,238,0.18);
  padding: 10px 22px;
  border-radius: var(--r-full);
  margin-bottom: 36px;
}

.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,244,238,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(37,244,238,0); }
}

.hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 28px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 44px;
}

.hero-sub strong { color: var(--text); }

.hero-video-placeholder {
  max-width: 720px;
  margin: 0 auto 32px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-video-play {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--grad);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Trust Row */
.trust-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-icon { font-size: 16px; }

/* Hero Visual - Dashboard Preview */
.hero-visual {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.hero-screen {
  background: var(--panel);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow-pink);
  animation: heroFloat 8s ease-in-out infinite;
}

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

.screen-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.screen-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}

.screen-dot.red { background: #ff5f57; }
.screen-dot.yellow { background: #febc2e; }
.screen-dot.green { background: #28c840; }

.screen-title {
  margin-left: 14px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.screen-body { padding: 0; }

.dashboard-preview {
  display: flex;
  min-height: 320px;
}

.dash-sidebar {
  width: 200px;
  background: var(--bg-3);
  border-right: 1px solid var(--border);
  padding: 18px 0;
  flex-shrink: 0;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13px;
  color: var(--muted);
  cursor: default;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.dash-nav-item.active {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-left-color: var(--pink);
}

.dash-main {
  flex: 1;
  padding: 24px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-change {
  font-size: 11px;
  font-weight: 700;
}

.stat-change.positive { color: var(--green); }

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 16px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.chart-bar {
  flex: 1;
  height: var(--h);
  background: var(--panel-3);
  border-radius: 6px 6px 0 0;
  transition: height 0.8s var(--ease);
  min-height: 4px;
}

.chart-bar.active {
  background: var(--grad);
}

.chart-bar.highlight {
  background: var(--grad);
  opacity: 0.65;
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  animation: floatCard 5s ease-in-out infinite;
}

.float-left {
  top: 30%; left: -50px;
}

.float-right {
  top: 50%; right: -50px;
  animation-delay: 1.5s;
}

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

.float-icon { font-size: 28px; }

.float-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.float-text {
  font-size: 11px;
  color: var(--cyan);
  font-weight: 600;
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */
.social-proof {
  position: relative;
  z-index: 1;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.proof-label {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.logo-placeholder {
  font-size: 15px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.35;
  transition: var(--transition);
}

.logo-placeholder:hover { opacity: 0.7; }

/* ========================================
   REAL PROOF IMAGES SECTION
   ======================================== */
.real-proof-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--bg-2);
}

.proof-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.proof-img-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.proof-img-card:hover {
  border-color: rgba(37,244,238,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), var(--shadow-glow-cyan);
}

.proof-img-card.featured-img-card {
  border-color: rgba(254,44,85,0.25);
}

.proof-img-card.featured-img-card:hover {
  border-color: rgba(254,44,85,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), var(--shadow-glow-pink);
}

.img-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  background: var(--bg);
  overflow: hidden;
  cursor: pointer;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}

.img-wrapper:hover img {
  transform: scale(1.06);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,7,10,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.img-wrapper:hover .img-overlay {
  opacity: 1;
}

.img-overlay span {
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-md);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.img-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.img-badge-live {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan);
  background: var(--cyan-glow);
  padding: 5px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.3px;
}

.img-badge-live.highlight {
  color: var(--pink);
  background: var(--pink-glow);
}

.img-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  text-align: center;
}

.m-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.m-title {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.m-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.img-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  opacity: 0.85;
}

/* ========================================
   PAIN POINTS SECTION
   ======================================== */
.pain-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.pain-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), rgba(254,44,85,0.2));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.pain-card:hover {
  border-color: rgba(254,44,85,0.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(254,44,85,0.08);
}

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

.pain-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.pain-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--bg-2);
}

.scroll-table-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 12px;
  background: var(--cyan-glow);
  padding: 8px 16px;
  border-radius: var(--r-full);
}

.comparison-table-wrapper {
  margin-top: 56px;
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--panel);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table th {
  background: var(--panel-2);
  font-size: 15px;
  font-weight: 800;
}

.comparison-table th.col-bad {
  color: #ff5252;
  background: rgba(255,82,82,0.06);
}

.comparison-table th.col-good {
  color: var(--green);
  background: rgba(0,230,118,0.06);
}

.comparison-table td.col-bad {
  color: var(--muted);
  background: rgba(255,82,82,0.02);
}

.comparison-table td.col-good {
  color: var(--text);
  font-weight: 600;
  background: rgba(0,230,118,0.03);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(37,244,238,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

.feature-card.featured {
  grid-row: span 2;
  background: var(--grad-soft);
  border-color: rgba(254,44,85,0.2);
}

.feature-card.featured::after { display: none; }

.feature-icon-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.feature-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.feature-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--pink);
  background: var(--pink-glow);
  border: 1px solid rgba(254,44,85,0.2);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========================================
   ANTI-BLOCK SHIELD SECTION
   ======================================== */
.anti-block-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--bg-2);
}

.anti-block-card {
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(254,44,85,0.2);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  position: relative;
  box-shadow: var(--shadow-glow-pink);
  text-align: center;
  overflow: hidden;
}

.anti-block-card::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(254,44,85,0.08), transparent 70%);
  pointer-events: none;
}

.anti-block-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--pink);
  background: var(--pink-glow);
  border: 1px solid rgba(254,44,85,0.25);
  padding: 7px 18px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  letter-spacing: 1.5px;
}

.shield-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}

.shield-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.35s var(--ease);
}

.shield-item:hover {
  border-color: rgba(254,44,85,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(254,44,85,0.06);
}

.shield-icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.shield-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.shield-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--bg-3);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 48px 28px 40px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.35s var(--ease);
}

.step-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 56px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.step-connector {
  display: none;
}

/* ========================================
   BONUSES SECTION
   ======================================== */
.bonus-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.bonus-card-main {
  background: linear-gradient(135deg, rgba(176,38,255,0.06), rgba(37,244,238,0.04));
  border: 1px solid rgba(176,38,255,0.2);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  box-shadow: var(--shadow-glow-purple);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-card-main::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(176,38,255,0.06), transparent 60%);
  pointer-events: none;
}

.bonus-badge-top {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  color: var(--purple);
  background: var(--purple-glow);
  border: 1px solid rgba(176,38,255,0.25);
  padding: 7px 22px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
  letter-spacing: 1.5px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}

.bonus-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  position: relative;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.bonus-item:hover {
  border-color: rgba(176,38,255,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(176,38,255,0.08);
}

.bonus-tag-price {
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  background: var(--green-glow);
  padding: 5px 12px;
  border-radius: var(--r-full);
  align-self: flex-start;
  margin-bottom: 18px;
}

.bonus-icon {
  font-size: 38px;
  margin-bottom: 14px;
}

.bonus-item h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.35;
}

.bonus-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ========================================
   VALUE STACK SECTION
   ======================================== */
.value-stack-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.value-stack-card {
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(37,244,238,0.2);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  box-shadow: var(--shadow-glow-cyan);
  position: relative;
  overflow: hidden;
}

.value-stack-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,244,238,0.06), transparent 70%);
  pointer-events: none;
}

.stack-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  color: var(--cyan);
  background: var(--cyan-glow);
  border: 1px solid rgba(37,244,238,0.25);
  padding: 7px 20px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  letter-spacing: 1.5px;
}

.stack-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 44px 0;
}

.stack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 24px;
  gap: 16px;
  font-size: 15px;
  transition: var(--transition);
}

.stack-row:hover {
  border-color: var(--border-light);
}

.stack-row.bonus-row {
  background: rgba(0,230,118,0.04);
  border-color: rgba(0,230,118,0.15);
}

.s-check { font-size: 20px; flex-shrink: 0; }
.s-name { flex: 1; }

.s-price {
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
  flex-shrink: 0;
}

.s-price.free { color: var(--green); }

.stack-footer {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.stack-total {
  font-size: 16px;
  color: var(--muted);
}

.stack-total del {
  font-size: 18px;
}

.total-now {
  font-size: 24px;
  font-weight: 900;
  margin-top: 8px;
  color: var(--text);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  transition: all 0.35s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.pricing-card.popular {
  background: var(--grad-soft);
  border-color: rgba(254,44,85,0.3);
  box-shadow: var(--shadow-glow-pink);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 22px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(254,44,85,0.3);
  letter-spacing: 0.5px;
}

.plan-badge-top {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.pricing-card.ultimate {
  background: linear-gradient(135deg, rgba(37,244,238,0.04), rgba(176,38,255,0.06));
  border-color: rgba(37,244,238,0.25);
  box-shadow: var(--shadow-glow-cyan);
}

.ultimate-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 7px 22px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,244,238,0.3);
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.plan-price {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
}

.amount {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.cents {
  font-size: 24px;
  font-weight: 800;
}

.period {
  font-size: 14px;
  color: var(--muted);
  margin-left: 4px;
}

.plan-equiv {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-top: -18px;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.plan-features li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.plan-features li strong { color: var(--text); }

.bonus-highlight-item {
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.15);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--green) !important;
}

/* Guarantee */
.guarantee-section {
  margin-top: 72px;
}

.guarantee-card {
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px 40px;
  max-width: 620px;
  margin: 0 auto;
  transition: all 0.35s var(--ease);
}

.guarantee-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.guarantee-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.guarantee-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.guarantee-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--bg-2);
}

.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item.active {
  border-color: rgba(37,244,238,0.2);
  box-shadow: 0 4px 20px rgba(37,244,238,0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--cyan); }

.faq-toggle {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
  position: relative;
  z-index: 1;
  padding: 120px 0 140px;
}

.cta-card {
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(254,44,85,0.08), rgba(176,38,255,0.04), transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cta-actions {
  margin-bottom: 32px;
}

.cta-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========================================
   LIGHTBOX MODAL
   ======================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(24px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -52px; right: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-light);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
}

#lightboxImg {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 300px;
}

.footer-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  text-align: center;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s var(--ease-spring);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-4px);
}

.whatsapp-tooltip {
  background: var(--glass-strong);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(16px);
  animation: tooltipBounce 3s ease-in-out infinite alternate;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  position: relative;
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
}

.whatsapp-svg {
  width: 30px;
  height: 30px;
}

@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

@keyframes tooltipBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

/* ========================================
   SALES TOAST NOTIFICATION
   ======================================== */
.sales-toast {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9998;
  background: var(--glass-strong);
  border: 1px solid rgba(37,244,238,0.2);
  border-radius: var(--r-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.45s var(--ease-spring), opacity 0.4s var(--ease);
  max-width: 380px;
}

.sales-toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: #fff;
}

.toast-title {
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}

.toast-title strong { color: var(--cyan); }

.toast-time {
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  margin-top: 3px;
}

/* ========================================
   STICKY CTA MOBILE
   ======================================== */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  padding: 12px 16px;
  background: rgba(7,7,10,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border-light);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.sticky-cta-mobile.visible {
  transform: translateY(0);
}

/* ========================================
   ANIMATIONS (AOS-like)
   ======================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-aos="fade-down"] { transform: translateY(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="zoom-in"] { transform: scale(0.92); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet Landscape */
@media (max-width: 1080px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.featured {
    grid-row: auto;
    grid-column: span 2;
  }

  .hero-float-card {
    display: none;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .shield-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .anti-block-card,
  .bonus-card-main {
    padding: 40px 24px;
  }

  .value-stack-card {
    padding: 40px 20px;
  }

  .sales-toast {
    bottom: 140px;
    left: 16px; right: 16px;
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --urgency-h: 40px;
  }

  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* Glows animados + blur pesado custam muito no compositor mobile e travam o scroll */
  .glow {
    filter: blur(60px);
    animation: none !important;
  }
  .glow-1 { width: 280px; height: 280px; }
  .glow-2 { width: 320px; height: 320px; }
  .glow-3 { width: 280px; height: 280px; }

  /* backdrop-filter é caro em GPUs de celular fraco */
  * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Header & Nav */
  .nav-links, .header-actions { display: none; }
  .mobile-toggle { display: flex; }

  .nav-links.open {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh;
    height: 100dvh;
    background: rgba(7,7,10,0.98);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 10001;
    padding: 80px 24px 40px;
  }

  .nav-links.open a {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
  }

  .header-actions.open {
    display: flex;
    position: fixed;
    bottom: 40px;
    left: 24px; right: 24px;
    z-index: 10002;
    justify-content: center;
    gap: 12px;
  }

  .scroll-table-hint { display: inline-block; }

  /* Urgency bar */
  .top-urgency-bar {
    padding: 8px 10px;
    font-size: 11px;
    overflow: hidden;
  }
  .urgency-inner {
    gap: 6px;
    text-align: center;
    flex-wrap: nowrap;
  }
  .urgency-desc {
    display: none;
  }
  .urgency-fire-full { display: none; }
  .urgency-fire-short { display: inline; }
  .countdown-timer {
    font-size: 12px;
    padding: 3px 8px;
    min-width: 54px;
  }
  .urgency-btn {
    font-size: 10px;
    padding: 3px 10px;
  }
  .urgency-btn-full { display: none; }
  .urgency-btn-short { display: inline; }

  /* Hero */
  .hero {
    padding: calc(var(--urgency-h) + 80px) 0 40px;
  }
  .hero h1 {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.15;
    letter-spacing: -1px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .btn-lg {
    width: 100%;
    font-size: 14px;
    padding: 16px 20px;
    justify-content: center;
  }
  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 48px;
  }

  /* Dashboard */
  .dash-sidebar { display: none; }
  .dash-stats { grid-template-columns: 1fr; }
  .hero-screen { animation: none; }

  /* Proof Gallery */
  .proof-images-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .img-wrapper { height: 240px; }
  .img-metrics {
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 8px;
    gap: 4px;
  }
  .m-title { font-size: 9px; }
  .m-value { font-size: 13px; }

  /* Pain */
  .pain-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: auto; }

  /* Stack */
  .stack-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 16px;
  }
  .s-price {
    align-self: flex-end;
    font-size: 13px;
  }
  .total-now { font-size: 20px; }

  /* Pricing */
  .pricing-grid {
    max-width: 100%;
    gap: 24px;
  }
  .pricing-card { padding: 32px 24px; }
  .amount { font-size: 44px; }

  /* CTA */
  .cta-card { padding: 48px 24px; }
  .cta-trust { flex-direction: column; align-items: center; gap: 10px; }

  /* Footer */
  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }

  /* Bottom elements */
  .sticky-cta-mobile {
    display: block;
  }
  .final-cta { padding-bottom: 100px; }
  .whatsapp-float {
    bottom: 76px;
    right: 16px;
  }
  .whatsapp-tooltip { display: none; }
  .whatsapp-btn { width: 52px; height: 52px; }
  .whatsapp-svg { width: 28px; height: 28px; }
  .sales-toast {
    bottom: 136px !important;
    left: 12px !important;
    right: 12px !important;
    max-width: none !important;
    z-index: 9994 !important;
  }

  /* Lightbox */
  .lightbox-content { max-width: 95%; }
  .lightbox-close {
    top: 10px; right: 10px;
    background: rgba(0,0,0,0.7);
    z-index: 10002;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 24px; }
  .logos-row { gap: 20px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 22px; }
  .btn-lg { font-size: 13px; padding: 14px 14px; }
  .img-metrics { grid-template-columns: 1fr; text-align: left; }
  .m-box { flex-direction: row; justify-content: space-between; }
}
