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

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --black: #080808;
  --dark: #111111;
  --mid: #1a1a1a;
  --card: #1e1e1e;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --muted: #888;
  --white: #ffffff;
  --green: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }

.gold { color: var(--gold); }
.gold-text { color: var(--gold); }

.overline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.body-lg {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 1.2rem;
}

.body-lg strong { color: var(--white); }
.body-lg em { color: var(--gold-light); font-style: italic; }

/* ===========================
   LAYOUT
   =========================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 780px; }

.section-dark  { background: var(--dark);  padding: 90px 24px; }
.section-mid   { background: var(--mid);   padding: 90px 24px; }

/* ===========================
   STICKY NAV
   =========================== */
.sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-nav {
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.btn-nav:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(212,175,55,0.35); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #B8960C 100%);
  color: var(--black);
  padding: 18px 36px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 30px rgba(212,175,55,0.3);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); box-shadow: 0 10px 40px rgba(212,175,55,0.5); }

.btn-large  { padding: 20px 44px; font-size: 1.2rem; }
.btn-xl     { padding: 22px 52px; font-size: 1.25rem; width: 100%; max-width: 520px; }
.btn-checkout { display: block; margin: 0 auto; }

/* ===========================
   HERO
   =========================== */
.hero {
  background: radial-gradient(ellipse at 50% 0%, #1c1500 0%, var(--black) 65%);
  padding: 160px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.badge {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero h1 { margin-bottom: 24px; max-width: 860px; margin-left: auto; margin-right: auto; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #aaa;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.trust-row span::before { content: ''; }

/* ===========================
   VSL SECTION
   =========================== */
.vsl-section {
  background: var(--black);
  padding: 60px 24px;
  text-align: center;
}
.vsl-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
}
.vsl-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.vsl-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.vsl-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}
.vsl-placeholder p { font-size: 1rem; color: #aaa; }
.vsl-placeholder small { font-size: 0.8rem; }
.play-btn {
  width: 72px; height: 72px;
  background: rgba(212,175,55,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  padding-left: 5px;
}

/* ===========================
   PAIN LIST
   =========================== */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.pain-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pain-item p { color: #ccc; font-size: 1rem; line-height: 1.6; }

.callout {
  background: rgba(212,175,55,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 32px;
}
.callout p { color: var(--white); font-size: 1.05rem; }

/* ===========================
   3 RULES
   =========================== */
.rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.rule-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.rule-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rule-card h3 { margin-bottom: 14px; font-size: 1.25rem; }
.rule-card p { color: #bbb; font-size: 0.97rem; line-height: 1.75; }
.rule-card p strong { color: var(--white); }

/* ===========================
   PROOF STRIP
   =========================== */
.proof-strip {
  background: linear-gradient(135deg, #1a1200 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 50px 24px;
}
.proof-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
}
.proof-stat { text-align: center; }
.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
}
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* ===========================
   TESTIMONIALS
   =========================== */
.section-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 8px;
  margin-bottom: 48px;
  font-style: italic;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.quote {
  color: #ccc;
  font-size: 0.97rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; color: var(--white); font-size: 0.95rem; }
.reviewer span { font-size: 0.8rem; color: var(--muted); }

/* ===========================
   PRODUCT ITEMS
   =========================== */
.product-items { display: flex; flex-direction: column; gap: 20px; margin: 40px 0; }

.product-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.product-item-bonus {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.04);
}
.product-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.product-detail h3 { font-size: 1.1rem; margin-bottom: 8px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.product-detail p { color: #aaa; font-size: 0.93rem; line-height: 1.7; }

.value-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.bonus-tag { background: rgba(212,175,55,0.2); }

.total-value {
  text-align: center;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 12px;
}
.total-value p { font-size: 1.1rem; color: var(--muted); }
.strikethrough { text-decoration: line-through; color: #555; }
.today-price { font-size: 1.5rem !important; color: var(--white) !important; margin-top: 8px; }
.today-price .gold { font-size: 2.2rem; font-family: 'Playfair Display', serif; font-weight: 900; }

/* ===========================
   CHECKOUT BOX
   =========================== */
.section-checkout {
  background: radial-gradient(ellipse at 50% 0%, #1c1500 0%, var(--dark) 70%);
  padding: 90px 24px;
  text-align: center;
}
.section-checkout h2 { margin-bottom: 40px; }

.checkout-box {
  background: var(--card);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(212,175,55,0.08);
}
.checkout-header { margin-bottom: 28px; }
.checkout-title { font-size: 0.9rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
.old-price { font-size: 1.4rem; color: #444; text-decoration: line-through; }
.new-price { font-size: 3rem; font-weight: 900; color: var(--gold); font-family: 'Playfair Display', serif; }
.price-note { font-size: 0.82rem; color: var(--muted); }

.checkout-includes {
  list-style: none;
  text-align: left;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkout-includes li {
  font-size: 0.95rem;
  color: #ccc;
  padding-left: 4px;
}
.checkout-includes li::first-letter { color: var(--green); }

.secure-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===========================
   GUARANTEE
   =========================== */
.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: var(--card);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.guarantee-badge {
  flex-shrink: 0;
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--gold), #8B6914);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.guarantee-text h3 { margin-bottom: 12px; font-size: 1.3rem; }
.guarantee-text p { color: #aaa; font-size: 0.95rem; line-height: 1.75; margin-bottom: 10px; }

/* ===========================
   FAQ
   =========================== */
.faqs { margin-top: 48px; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%;
  background: var(--card);
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-q:hover { background: #252525; }
.faq-arrow { color: var(--gold); font-size: 0.75rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  background: #161616;
  padding: 0 24px;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; padding: 20px 24px; }
.faq-a p { color: #aaa; font-size: 0.95rem; line-height: 1.75; }

/* ===========================
   FINAL CTA
   =========================== */
.section-final-cta {
  background: var(--black);
  padding: 100px 24px;
  text-align: center;
}
.section-final-cta h2 { margin-bottom: 24px; }

.ps-box {
  max-width: 620px;
  margin: 40px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
}
.ps-box p { color: #aaa; font-size: 0.95rem; line-height: 1.8; }
.ps-box strong { color: var(--white); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.footer-logo { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 10px; }
.footer-legal { font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 0.82rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.disclaimer { max-width: 600px; margin: 0 auto; font-size: 0.75rem; color: #444; line-height: 1.6; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 80px; }
  .section-dark, .section-mid { padding: 70px 20px; }
  .checkout-box { padding: 32px 24px; }
  .guarantee-box { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; }
  .guarantee-badge { width: 80px; height: 80px; }
  .product-item { flex-direction: column; gap: 12px; }
  .product-icon { font-size: 1.6rem; }
  .btn-nav { display: none; }
  .proof-numbers { gap: 28px 40px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .btn-large, .btn-xl { padding: 18px 28px; font-size: 1rem; }
  .checkout-box { padding: 28px 18px; }
}
