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

:root {
  --bg-primary: #06060f;
  --bg-secondary: #0c0c1d;
  --bg-card: rgba(255,255,255,0.04);
  --bg-glass: rgba(255,255,255,0.06);
  --border-glass: rgba(255,255,255,0.08);
  --text-primary: #ffffff;
  --text-secondary: #a1a1b5;
  --text-muted: #6b6b80;
  --accent-blue: #00d4ff;
  --accent-purple: #7c3aed;
  --accent-pink: #f472b6;
  --accent-gold: #fbbf24;
  --accent-green: #34d399;
  --accent-red: #ef4444;
  --gradient-main: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #f472b6 100%);
  --gradient-warm: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #ef4444 100%);
  --gradient-cool: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 60px rgba(124,58,237,0.15);
  --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-secondary: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

.rv-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.rv-container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===================== URGENCY TOP BAR ===================== */
.rv-urgency-bar {
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 50%, #ef4444 100%);
  background-size: 200% 100%;
  animation: urgencyShift 3s ease-in-out infinite;
  padding: 12px 0;
  text-align: center;
  position: relative;
  z-index: 100;
}
@keyframes urgencyShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.rv-urgency-bar p {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.rv-urgency-bar .rv-countdown {
  display: inline-flex;
  gap: 4px;
  margin-left: 12px;
}
.rv-urgency-bar .rv-countdown span {
  background: rgba(0,0,0,0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
}

/* ===================== STICKY CTA BAR ===================== */
.rv-sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(6,6,15,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  padding: 12px 0;
  transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
}
.rv-sticky-cta.visible { bottom: 0; }
.rv-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rv-sticky-cta .rv-sticky-price {
  font-size: 14px;
  color: var(--text-secondary);
}
.rv-sticky-cta .rv-sticky-price s { color: var(--text-muted); margin-right: 8px; }
.rv-sticky-cta .rv-sticky-price strong { color: var(--accent-gold); font-size: 20px; }

/* ===================== HERO SECTION ===================== */
.rv-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--bg-primary);
  background-image: url('../images/hero-wave-bg.png');
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: 100% auto;
}
.rv-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(124,58,237,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 60%, rgba(0,212,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.rv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.rv-hero-badge .rv-pulse {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

.rv-hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.rv-gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rv-hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 400;
}
.rv-hero-video-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 80px rgba(124,58,237,0.2), 0 0 160px rgba(0,212,255,0.08);
}
.rv-hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: var(--gradient-main);
  z-index: -1;
  opacity: 0.5;
}
.rv-hero-video-inner {
  position: relative;
  padding-bottom: 56.25%;
  background: #111;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.rv-hero-video-inner iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.rv-hero-video-label {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===================== SOCIAL PROOF STRIP ===================== */
.rv-social-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.rv-social-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}
.rv-social-item strong { color: var(--text-primary); font-size: 16px; }
.rv-social-item .rv-stars { color: var(--accent-gold); font-size: 14px; letter-spacing: 2px; }

/* ===================== PRIMARY CTA BUTTON ===================== */
.rv-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 30px rgba(124,58,237,0.4);
}
.rv-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 50px rgba(124,58,237,0.6);
  color: #fff;
}
.rv-cta-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine { 0%{transform:translateX(-100%) rotate(25deg)} 100%{transform:translateX(100%) rotate(25deg)} }

.rv-cta-btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  box-shadow: 0 4px 30px rgba(251,191,36,0.4);
  color: #1a1a2e;
}
.rv-cta-btn-gold:hover {
  box-shadow: 0 8px 50px rgba(251,191,36,0.6);
  color: #1a1a2e;
}

.rv-cta-subtext {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.rv-payment-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  opacity: 0.6;
}
.rv-payment-badges img { height: 28px; }

/* ===================== FEATURE PILLS / HIGHLIGHTS ===================== */
.rv-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 60px auto 0;
}
.rv-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.rv-highlight-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-2px);
}
.rv-highlight-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.rv-highlight-item p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ===================== SECTION HEADINGS ===================== */
.rv-section { padding: 100px 0; position: relative; }
.rv-section-sm { padding: 60px 0; }

.rv-section-head {
  text-align: center;
  margin-bottom: 60px;
}
.rv-section-head .rv-overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-blue);
  margin-bottom: 16px;
}
.rv-section-head h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.rv-section-head p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================== PROBLEM SECTION ===================== */
.rv-problem {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0618 100%);
}
.rv-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.rv-problem-card {
  padding: 32px;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.rv-problem-card:hover { background: rgba(239,68,68,0.1); transform: translateY(-3px); }
.rv-problem-card .rv-problem-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.rv-problem-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.rv-problem-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ===================== SOLUTION SECTION ===================== */
.rv-solution {
  background: linear-gradient(180deg, #0d0618 0%, var(--bg-primary) 100%);
}
.rv-solution-banner {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(0,212,255,0.1) 100%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rv-solution-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
}
.rv-solution-banner h3 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.rv-solution-banner p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================== EMOTION SAMPLES ===================== */
.rv-emotions { background: var(--bg-secondary); }
.rv-emotion-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.rv-emotion-card {
  width: 140px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.rv-emotion-card:hover { transform: translateY(-5px) scale(1.05); }
.rv-emotion-card img {
  width: 100px; height: 100px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.rv-emotion-card.playing img { border-color: var(--accent-blue); box-shadow: 0 0 20px rgba(0,212,255,0.3); }
.rv-emotion-card .rv-play-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -18px auto 8px;
  position: relative;
  z-index: 2;
  font-size: 12px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(124,58,237,0.4);
}
.rv-emotion-card h4 { font-size: 14px; font-weight: 700; margin-top: 4px; }
.rv-emotion-card span { font-size: 12px; color: var(--text-muted); }

/* ===================== CHARACTER VOICES ===================== */
.rv-characters { background: var(--bg-primary); }
.rv-character-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

/* ===================== TESTIMONIALS ===================== */
.rv-testimonials { background: var(--bg-primary); overflow: hidden; }
.rv-testi-track {
  display: flex;
  gap: 24px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}
@keyframes scrollTestimonials { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.rv-testi-card {
  width: 360px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.rv-testi-card img { width: 100%; display: block; }
.rv-testi-track:hover { animation-play-state: paused; }

/* ===================== AVATAR BONUS ===================== */
.rv-avatar-bonus {
  background: linear-gradient(180deg, #0a0025 0%, #120035 50%, #0a0025 100%);
  position: relative;
  overflow: hidden;
}
.rv-avatar-bonus::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.rv-bonus-badge {
  display: inline-block;
  background: var(--gradient-warm);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rv-avatar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .rv-avatar-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
  .rv-avatar-grid { grid-template-columns: repeat(2, 1fr); }
}
.rv-avatar-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}
.rv-avatar-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.rv-avatar-card h4 { font-size: 18px; font-weight: 700; margin: 12px 0 4px; }
.rv-avatar-card p { font-size: 13px; color: var(--text-secondary); }

/* ===================== USE CASES ===================== */
.rv-usecases { background: var(--bg-secondary); }
.rv-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rv-usecase-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.rv-usecase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
}
.rv-usecase-card:hover::before { opacity: 1; }
.rv-usecase-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.rv-usecase-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.rv-usecase-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.rv-usecase-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===================== HOW IT WORKS ===================== */
.rv-howitworks { background: var(--bg-primary); }
.rv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.rv-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
  opacity: 0.3;
}
.rv-step {
  text-align: center;
  position: relative;
}
.rv-step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.rv-step:nth-child(1) .rv-step-num { background: linear-gradient(135deg, #06b6d4, #0891b2); color: #fff; }
.rv-step:nth-child(2) .rv-step-num { background: linear-gradient(135deg, #7c3aed, #6d28d9); color: #fff; }
.rv-step:nth-child(3) .rv-step-num { background: linear-gradient(135deg, #34d399, #059669); color: #fff; }
.rv-step h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.rv-step p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.rv-step img {
  margin-top: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ===================== COMPARISON TABLE ===================== */
.rv-comparison { background: var(--bg-secondary); }
.rv-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 950px;
  margin: 0 auto;
}
.rv-compare-col {
  padding: 40px 32px;
  border-radius: var(--radius-xl);
}
.rv-compare-col.rv-compare-bad {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
}
.rv-compare-col.rv-compare-good {
  background: rgba(52,211,153,0.06);
  border: 1px solid rgba(52,211,153,0.2);
  position: relative;
}
.rv-compare-col.rv-compare-good::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
}
.rv-compare-col h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rv-compare-col ul { list-style: none; padding: 0; }
.rv-compare-col ul li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rv-compare-col ul li:last-child { border: none; }
.rv-compare-bad ul li::before { content: '✗'; color: var(--accent-red); font-weight: 700; font-size: 16px; }
.rv-compare-good ul li::before { content: '✓'; color: var(--accent-green); font-weight: 700; font-size: 16px; }

/* ===================== FEATURES GRID ===================== */
.rv-features { background: var(--bg-primary); }
.rv-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.rv-feature-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.rv-feature-card:hover { transform: translateY(-3px); }
.rv-feature-img {
  width: 120px; height: 120px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  object-fit: cover;
}
.rv-feature-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.rv-feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.rv-feat-yellow { background: rgba(251,191,36,0.06); border: 1px solid rgba(251,191,36,0.15); }
.rv-feat-pink { background: rgba(244,114,182,0.06); border: 1px solid rgba(244,114,182,0.15); }
.rv-feat-green { background: rgba(52,211,153,0.06); border: 1px solid rgba(52,211,153,0.15); }
.rv-feat-cyan { background: rgba(0,212,255,0.06); border: 1px solid rgba(0,212,255,0.15); }
.rv-feat-purple { background: rgba(124,58,237,0.06); border: 1px solid rgba(124,58,237,0.15); }
.rv-feat-rose { background: rgba(251,113,133,0.06); border: 1px solid rgba(251,113,133,0.15); }

/* ===================== VOICE GALLERY ===================== */
.rv-voices { background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0025 100%); }
.rv-voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.rv-voice-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  transition: all 0.3s;
  cursor: pointer;
}
.rv-voice-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.rv-voice-card-img {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rv-voice-card-img img { width: 80px; height: 80px; border-radius: 50%; }
.rv-voice-play {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.rv-voice-play:hover { background: var(--accent-purple); }
.rv-voice-card-info { padding: 0 16px 16px; text-align: center; }
.rv-voice-card-info h4 { font-size: 15px; font-weight: 700; }
.rv-voice-card-info .rv-voice-tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 100px;
  background: rgba(124,58,237,0.15);
  color: var(--accent-purple);
  font-weight: 600;
  margin-top: 4px;
}
.rv-voice-card-info p { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* ===================== LANGUAGES ===================== */
.rv-languages { background: var(--bg-secondary); }
.rv-lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.rv-lang-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.rv-lang-card:hover { background: rgba(255,255,255,0.08); }
.rv-lang-card img { width: 36px; height: 36px; border-radius: 6px; }
.rv-lang-card .rv-lang-info { flex: 1; }
.rv-lang-card .rv-lang-info h4 { font-size: 15px; font-weight: 600; }
.rv-lang-card .rv-lang-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  color: var(--accent-blue);
  transition: all 0.2s;
}
.rv-lang-card .rv-lang-play:hover { background: var(--accent-blue); color: #fff; }

/* ===================== SAMPLE VIDEOS ===================== */
.rv-samples { background: var(--bg-primary); }
.rv-sample-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.rv-sample-row:nth-child(even) .rv-sample-video { order: 2; }
.rv-sample-row:nth-child(even) .rv-sample-text { order: 1; }
.rv-sample-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.rv-sample-video-inner {
  position: relative;
  padding-bottom: 56.25%;
}
.rv-sample-video-inner iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.rv-sample-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rv-sample-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }
.rv-sample-tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(124,58,237,0.15);
  color: var(--accent-purple);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===================== IDENTIFICATION CHECKLIST ===================== */
.rv-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.rv-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.rv-checklist-item:hover {
  background: rgba(52,211,153,0.06);
  border-color: rgba(52,211,153,0.2);
  transform: translateX(4px);
}
.rv-checklist-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(52,211,153,0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.rv-checklist-item p { font-size: 15px; color: var(--text-secondary); line-height: 1.5; }
.rv-checklist-item p strong { color: var(--text-primary); }
@media (max-width: 768px) {
  .rv-checklist-grid { grid-template-columns: 1fr; }
}

/* ===================== GUARANTEE ===================== */
.rv-guarantee {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0618 100%);
}
.rv-guarantee-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: linear-gradient(135deg, rgba(251,191,36,0.08) 0%, rgba(52,211,153,0.05) 100%);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
}
.rv-guarantee-badge {
  width: 120px;
  margin: 0 auto 24px;
}
.rv-guarantee-box h3 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.rv-guarantee-box p { font-size: 17px; color: var(--text-secondary); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ===================== PRICING ===================== */
.rv-pricing {
  background: linear-gradient(180deg, #0d0618 0%, var(--bg-primary) 100%);
  position: relative;
}
.rv-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.rv-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.rv-price-card {
  padding: 48px 36px;
  border-radius: var(--radius-xl);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}
.rv-price-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.rv-price-card.rv-price-popular {
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 0 80px rgba(124,58,237,0.15);
  position: relative;
  transform: scale(1.03);
}
.rv-price-card.rv-price-popular:hover {
  transform: scale(1.05);
  box-shadow: 0 0 100px rgba(124,58,237,0.25);
}
.rv-price-card.rv-price-popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 24px;
  border-radius: 100px;
  letter-spacing: 1.5px;
}
.rv-price-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.rv-price-old {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.rv-price-discount {
  display: inline-block;
  background: rgba(251,191,36,0.15);
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.rv-price-amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.rv-price-amount sup { font-size: 24px; vertical-align: super; }
.rv-price-period { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.rv-price-features { list-style: none; padding: 0; margin-bottom: 32px; }
.rv-price-features li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.rv-price-features li:last-child { border: none; }
.rv-price-features li .rv-check { color: var(--accent-green); font-weight: 700; }
.rv-price-features li .rv-star { color: var(--accent-gold); }

/* ===================== WHAT HAPPENS NEXT ===================== */
.rv-next-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.rv-next-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
  opacity: 0.3;
}
.rv-next-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.rv-next-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.rv-next-step h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.rv-next-step p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ===================== FAQ ===================== */
.rv-faq { background: var(--bg-secondary); }
.rv-faq-list { max-width: 800px; margin: 0 auto; }
.rv-faq-item {
  border-bottom: 1px solid var(--border-glass);
}
.rv-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
}
.rv-faq-q h3 { font-size: 18px; font-weight: 600; flex: 1; }
.rv-faq-q .rv-faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--accent-blue);
}
.rv-faq-item.active .rv-faq-icon { transform: rotate(45deg); }
.rv-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.rv-faq-item.active .rv-faq-a { max-height: 500px; }
.rv-faq-a p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================== FINAL CTA ===================== */
.rv-final-cta {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0025 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rv-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(124,58,237,0.2) 0%, transparent 50%),
              radial-gradient(circle at 30% 30%, rgba(0,212,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.rv-final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.rv-final-cta p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.rv-final-price {
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.rv-final-price s { color: var(--text-muted); font-size: 20px; margin-right: 12px; }
.rv-final-price strong { color: var(--accent-gold); font-size: 42px; font-weight: 800; }

/* ===================== FOOTER ===================== */
.rv-footer {
  background: #050510;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border-glass);
}
.rv-footer p { font-size: 13px; color: var(--text-muted); }
.rv-footer a { color: var(--text-secondary); transition: color 0.2s; }
.rv-footer a:hover { color: var(--accent-blue); }
.rv-footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; }

/* ===================== ANIMATIONS ===================== */
.rv-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}
.rv-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .rv-highlights { grid-template-columns: repeat(2, 1fr); }
  .rv-usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-steps { grid-template-columns: 1fr; gap: 32px; }
  .rv-steps::before { display: none; }
  .rv-features-grid { grid-template-columns: 1fr; }
  .rv-sample-row { grid-template-columns: 1fr; gap: 32px; }
  .rv-sample-row:nth-child(even) .rv-sample-video { order: 1; }
  .rv-sample-row:nth-child(even) .rv-sample-text { order: 2; }
  .rv-pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .rv-price-card.rv-price-popular { transform: scale(1); }
  .rv-compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .rv-highlights { grid-template-columns: 1fr; }
  .rv-usecase-grid { grid-template-columns: 1fr; }
  .rv-problem-grid { grid-template-columns: 1fr; }
  .rv-hero { padding: 40px 0; }
  .rv-section { padding: 60px 0; }
  .rv-cta-btn { padding: 16px 32px; font-size: 16px; }
  .rv-guarantee-box { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .rv-urgency-bar p { font-size: 12px; }
  .rv-hero h1 { letter-spacing: -1px; }
  .rv-section-head h2 { letter-spacing: -0.5px; }
}

/* ===================== SVG ICON HELPERS ===================== */
.rv-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.rv-icon svg { display: block; }
.rv-icon-inline { display: inline-flex; vertical-align: -0.15em; }

/* ===================== MISC UTILITIES ===================== */
.text-center { text-align: center; }
.rv-mt-2 { margin-top: 16px; }
.rv-mt-4 { margin-top: 32px; }
.rv-mt-6 { margin-top: 48px; }
.rv-mt-8 { margin-top: 64px; }
.rv-mb-4 { margin-bottom: 32px; }

/* Audio player small inline */
.rv-audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-primary);
}
.rv-audio-btn:hover { background: rgba(255,255,255,0.1); }
.rv-audio-btn.playing { border-color: var(--accent-blue); color: var(--accent-blue); }

/* Scarcity banner */
.rv-scarcity {
  background: linear-gradient(135deg, rgba(251,191,36,0.1) 0%, rgba(239,68,68,0.1) 100%);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-top: 24px;
  animation: scarcityPulse 2s ease-in-out infinite;
}
@keyframes scarcityPulse { 0%,100%{opacity:1} 50%{opacity:0.7} }

/* Gold CTA pulse attention grabber */
.rv-cta-btn-gold { animation: goldPulse 2s ease-in-out infinite; }
.rv-cta-btn-gold:hover { animation: none; }
@keyframes goldPulse {
  0%,100% { box-shadow: 0 4px 30px rgba(251,191,36,0.4); }
  50% { box-shadow: 0 4px 50px rgba(251,191,36,0.65), 0 0 20px rgba(251,191,36,0.2); }
}

/* Guarantee badge gentle float */
.rv-guarantee-badge {
  animation: badgeFloat 3s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Live counter */
.rv-live-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent-green);
  font-weight: 600;
}
.rv-live-dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
