/* ============================================
   DEAL SOLDIER - Premium Sales Page
   Design: Dark tactical + Gold accents
   ============================================ */

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

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --accent: #d4a843;
  --accent-light: #f0cc6b;
  --accent-dark: #b08a2e;
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --text-muted: #777777;
  --border: #222222;
  --border-light: #333333;
  --success: #34d399;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 40px rgba(212, 168, 67, 0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* --- Lucide Icons --- */
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  height: 48px;
}

.lucide-problem {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.btn i[data-lucide],
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.feature-icon-wrap i[data-lucide],
.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.retention-icon i[data-lucide],
.retention-icon svg {
  width: 24px;
  height: 24px;
}

.comparison-header i[data-lucide],
.comparison-header svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}


.star-filled {
  width: 18px;
  height: 18px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--bg-primary);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  color: var(--bg-primary);
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.35), 0 0 0 1px rgba(212, 168, 67, 0.1);
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-light) 50%, var(--accent) 100%);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.45), 0 0 0 1px rgba(212, 168, 67, 0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212, 168, 67, 0.06);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 8px;
  gap: 6px;
}

.btn-sm svg {
  width: 14px;
  height: 14px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(212, 168, 67, 0.07) 0%, transparent 70%),
              var(--bg-primary);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 50px;
  color: var(--accent);
  margin-bottom: 32px;
  background: rgba(212, 168, 67, 0.08);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.1);
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.br-mobile {
  display: none;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.3));
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 28px;
  border-radius: 2px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  letter-spacing: 1px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 1px;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(212, 168, 67, 0.08);
  border-radius: 6px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 1px;
  line-height: 1.1;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Problem Section --- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

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

.problem-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* --- Steps --- */
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}

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

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card:hover .step-number {
  opacity: 0.6;
}

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

.step-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-connector::before {
  content: '';
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--border-light), var(--accent), var(--border-light));
  border-radius: 1px;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.feature-highlight {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 168, 67, 0.05) 100%);
}

.feature-highlight:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-glow);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 6px;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.08);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

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

.testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--bg-primary);
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Video Showcase --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.video-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(212, 168, 67, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  pointer-events: none;
}

.video-play-btn svg {
  width: 22px;
  height: 22px;
  color: var(--bg-primary);
  fill: var(--bg-primary);
}

.video-card.playing .video-play-btn {
  opacity: 0;
}

.video-thumb:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
}

.video-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-info h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.video-info p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex-grow: 1;
}

.video-info .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* --- Last Row: Side Cards + Center Video --- */
.video-last-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.side-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
}

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

.side-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.08);
  border-radius: 14px;
  color: var(--accent);
  margin-bottom: 20px;
}

.side-card-icon svg {
  width: 24px;
  height: 24px;
}

.side-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent);
}

.side-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.side-card ul li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.side-card .btn {
  margin-top: 24px;
  align-self: flex-start;
}

/* --- Comparison / See the Difference --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.comparison-header h3 {
  font-size: 20px;
  font-weight: 700;
}

.comparison-without {
  border-color: #3a2020;
}

.comparison-without .comparison-header svg {
  color: #ef4444;
}

.comparison-without .comparison-header h3 {
  color: #fca5a5;
}

.comparison-with {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 168, 67, 0.04) 100%);
}

.comparison-with .comparison-header svg {
  color: var(--success);
}

.comparison-with .comparison-header h3 {
  color: var(--accent);
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-without .comparison-list li::before {
  content: '✕';
  color: #ef4444;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-with .comparison-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

/* --- Retention / Why Members Stay --- */
.retention-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.retention-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

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

.retention-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.08);
  border-radius: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.retention-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.retention-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.section-cta-inline {
  text-align: center;
  margin-top: 48px;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.faq-item.active {
  border-color: var(--accent);
}

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

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

.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

/* --- CTA Section --- */
.section-cta {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-disclaimer {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* --- Hero Disclaimer --- */
.hero-disclaimer {
  margin-top: 12px;
  margin-bottom: 40px;
  font-size: 13px;
  color: var(--accent);
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* --- Legal Pages --- */
.legal-page {
  padding-top: 120px;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--accent);
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--text-primary);
}

/* --- Footer --- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .logo-text {
  font-size: 20px;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
}

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

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

.footer-links a:hover {
  color: var(--accent);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .problem-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-last-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .video-info h3 {
    font-size: 14px;
  }

  .video-info p {
    font-size: 12px;
  }

  .side-card h3 {
    font-size: 18px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .step-connector {
    width: auto;
    height: 40px;
  }

  .step-connector::before {
    width: 2px;
    height: 30px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-vs {
    padding: 8px 0;
    font-size: 22px;
  }

  .retention-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: row;
    gap: 0;
    padding: 24px 16px;
    justify-content: space-around;
  }

  .stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 11px;
  }

  .br-mobile {
    display: inline;
  }

  .hero-title {
    line-height: 1.25;
  }

  .hero-line1 {
    font-size: 1.2em;
  }

  .logo-img {
    height: 56px;
  }

  .logo-text {
    font-size: 20px;
    letter-spacing: 2px;
  }

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

  .hero-actions .btn {
    width: 100%;
    max-width: 340px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container, .container-sm {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
    letter-spacing: 2px;
  }

  .hero-stats {
    padding: 20px 12px;
    gap: 0;
    border-radius: var(--radius);
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 10px;
  }

  .comparison-card {
    padding: 28px 20px;
  }

  .retention-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-play-btn {
    width: 40px;
    height: 40px;
  }

  .video-play-btn svg {
    width: 16px;
    height: 16px;
  }

  .video-info {
    padding: 14px;
  }

  .video-info .btn {
    font-size: 11px;
    padding: 8px 14px;
  }

  .side-card {
    padding: 24px 20px;
  }

  .side-card h3 {
    font-size: 16px;
  }

  .side-card ul li {
    font-size: 13px;
  }
}
