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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0b;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ===== COLORS ===== */
:root {
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --accent-dim: rgba(139, 92, 246, 0.15);
  --accent-border: rgba(139, 92, 246, 0.3);
  --bg: #0a0a0b;
  --bg-section: #0f0f11;
  --text-muted: rgba(255, 255, 255, 0.5);
  --border-subtle: rgba(255, 255, 255, 0.08);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 8px;
}

.btn-buy {
  display: block;
  width: 100%;
  padding: 18px 40px;
  font-size: 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #fff;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, var(--bg) 92%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%),
    linear-gradient(to top, transparent 88%, var(--bg) 100%);
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--accent-border);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 28px;
  background: var(--accent-dim);
}

.hero-h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  max-width: 580px;
  margin: 0 auto 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

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

.hero-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-trust {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 14px;
}

/* Hero staggered fade-in */
.reveal-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

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

/* ===== SHARED ===== */
.overline {
  display: block;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 500px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  margin-bottom: 32px;
}

.check-list li {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.check {
  color: var(--accent-light);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* ===== WHY THIS WORKS ===== */
.why-section {
  background: var(--bg-section);
  padding: 100px 0;
}

.why-container {
  max-width: 640px;
}

.why-list {
  list-style: none;
  margin-bottom: 40px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  color: rgba(255, 255, 255, 0.8);
}

.why-check {
  color: var(--accent-light);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 50%;
}

.victor-quote {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
}

.victor-quote p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.victor-quote cite {
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
}

/* ===== INSIDE THE SYSTEM ===== */
.inside-section {
  background: var(--bg);
  padding: 100px 0;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.inside-item {
  position: relative;
  padding: 32px 32px 32px 40px;
  border-left: 2px solid var(--accent);
  overflow: hidden;
}

.inside-num {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 120px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.inside-text {
  position: relative;
  z-index: 1;
}

.inside-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.inside-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== WHAT'S INCLUDED ===== */
.included-section {
  background: var(--bg-section);
  padding: 100px 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.included-card {
  text-align: center;
  padding: 32px 20px;
}

.included-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 14px;
  color: var(--accent-light);
}

.included-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.included-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg);
  padding: 100px 0;
}

.body-content {
  max-width: 700px;
  margin: 0 auto 48px;
}

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

.testimonials-subheading {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

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

.quote {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
}

.stars {
  color: var(--accent-light);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ===== PURCHASE ===== */
.purchase-section {
  background: var(--bg-section);
  padding: 100px 0;
}

.purchase-container {
  max-width: 540px;
}

.price-card {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 16px;
  padding: 40px;
}

.price-product {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.price-old {
  font-size: 20px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 14px;
  color: var(--accent-light);
  font-weight: 500;
}

.price-format {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}

.price-card .check-list {
  margin-bottom: 0;
}

.price-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.price-badges span {
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 14px;
  border: 0.5px solid var(--border-subtle);
  border-radius: 50px;
}

/* ===== BEFORE/AFTER SLIDER ===== */
.transformations-section {
  background: var(--bg-section);
  padding: 100px 0;
  overflow: hidden;
}

.slider-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px 20px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.slider-track::-webkit-scrollbar { display: none; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: opacity 0.2s, transform 0.2s;
}

.slider-arrow:hover {
  transform: translateY(-70%) scale(1.08);
}

.slider-arrow-left { left: 4px; }
.slider-arrow-right { right: 4px; }

.ba-card {
  flex: 0 0 300px;
  scroll-snap-align: center;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.ba-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before-clip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.ba-before {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 2px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.6);
}

.ba-handle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 6px;
  padding-left: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  padding: 4px 10px;
  background: rgba(0,0,0,0.5);
  border-radius: 4px;
  z-index: 2;
}

.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

.ba-name {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ===== PROGRAM SELECTOR ===== */
.program-selector {
  margin-bottom: 24px;
}

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

.program-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.program-option:hover {
  border-color: var(--accent-border);
}

.program-option.active {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.program-option-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.program-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
}

.program-name {
  font-size: 15px;
  font-weight: 500;
}

.program-price {
  font-size: 15px;
  font-weight: 600;
}

.program-price .old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 13px;
  margin-right: 6px;
  font-weight: 400;
}

/* Pulse animation on buy button */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.pulse:hover {
  animation: none;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg);
  padding: 100px 0;
}

.faq-container {
  max-width: 680px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: #fff;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== ORIGIN / WHY I MADE THIS ===== */
.origin-section {
  background: var(--bg-section);
  padding: 100px 0;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.origin-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.origin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.origin-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.origin-cite {
  font-size: 14px;
  color: var(--accent-light);
  font-style: normal;
}

/* ===== FOOTER ===== */
.footer {
  background: #080809;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

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

.footer-links a:hover {
  color: #fff;
}

/* ===== HERO BADGE WITH PHOTO ===== */
.hero-badge-photo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-badge-photo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-border);
}

.hero-badge-photo span {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.5px;
}

/* ===== VICTOR QUOTE PHOTO ===== */
.victor-quote-wrap {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.victor-quote-img {
  width: 140px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.victor-quote-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.victor-quote-wrap .victor-quote {
  flex: 1;
}

/* ===== VICTOR PHOTO STRIP ===== */
.victor-strip {
  background: var(--bg);
  padding: 80px 0;
  overflow: hidden;
}

.victor-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.victor-strip h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.victor-strip-bio {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.victor-photos {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px 12px;
  scrollbar-width: none;
}

.victor-photos::-webkit-scrollbar { display: none; }

.victor-photo-card {
  flex: 0 0 200px;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.victor-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.victor-photo-card:hover img {
  transform: scale(1.05);
}

/* ===== SCROLL REVEAL ===== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-h1 {
    font-size: 32px;
  }

  .hero-badge {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

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

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

  .inside-num {
    font-size: 80px;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 28px;
  }

  .price-card {
    padding: 28px;
  }

  .price-current {
    font-size: 36px;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 15px;
  }

  .btn-buy {
    padding: 16px 32px;
    font-size: 16px;
  }

  .ba-card {
    flex: 0 0 85vw;
  }

  .victor-quote-wrap {
    flex-direction: column;
  }

  .victor-quote-img {
    width: 100%;
    height: 200px;
  }

  .victor-photo-card {
    flex: 0 0 160px;
  }

  .origin-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .origin-photo {
    max-height: 400px;
  }

  .why-section,
  .inside-section,
  .included-section,
  .testimonials-section,
  .purchase-section,
  .faq-section,
  .origin-section,
  .transformations-section,
  .victor-strip {
    padding: 72px 0;
  }

  .price-badges {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-h1 {
    font-size: 28px;
  }
}