/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset & Base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', Arial, Helvetica, sans-serif; font-size: 22px; line-height: 1.75; color: #222; background: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout Containers ── */
.section { padding: 48px 20px; }
.inner { max-width: 720px; margin: 0 auto; }

/* ── Color Schemes (alternating dark / light) ── */
.dark { background: #1a1a1a; color: #e8e8e8; }
.dark h2, .dark h3 { color: #fff; }
.light { background: #ffffff; color: #222; }
.alt-light { background: #f5f5f0; color: #222; }

/* ── Hero Section ── */
.hero {
  background: #000 url('../assets/hero-background.jpg') center center / cover no-repeat;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 60px;
  line-height: 1.08;
  font-weight: 800;
  color: #f0f0f0;
  max-width: 860px;
  margin: 0 auto 36px;
  letter-spacing: -2px;
}
.hero h1 span.accent {
  color: #e8712a;
}
.hero .sub-headline {
  font-size: 26px;
  font-weight: 600;
  color: #d0d0d0;
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.45;
}
.hero .sub-headline span.highlight {
  color: #fff;
  background: rgba(232, 113, 42, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  border-bottom: 2px solid #e8712a;
}
.hero-image {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ── Hero Responsive ── */
@media (max-width: 600px) {
  .hero { padding: 64px 20px 48px; }
  .hero h1 {
    font-size: 36px;
    letter-spacing: -0.5px;
  }
  .hero .sub-headline { font-size: 20px; }
  .hero-image { max-width: 100%; }
}

/* ── Checkout Box ── */
.checkout-box {
  background: #111;
  border: 3px solid #e8712a;
  border-radius: 14px;
  max-width: 580px;
  margin: 0 auto;
  overflow: hidden;
}
.checkout-header {
  background: #e8712a;
  padding: 16px 24px;
  text-align: center;
}
.checkout-header h3 {
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}
.checkout-body {
  padding: 32px 28px 28px;
  text-align: center;
}
.checkout-price-strike {
  font-size: 32px;
  font-weight: 600;
  color: #666;
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 2px;
}
.checkout-price {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.checkout-currency {
  font-size: 22px;
  font-weight: 600;
  color: #888;
  vertical-align: middle;
}
.checkout-price-note {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.checkout-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.checkout-features li {
  font-size: 18px;
  color: #ccc;
  line-height: 1.5;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.checkout-features li:last-child { border-bottom: none; }
.checkout-features li::before {
  content: "\2705";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 14px;
}
.btn-buy {
  display: block;
  width: 100%;
  background: #4caf50;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: 8px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.2s;
}
.btn-buy:hover { background: #3d9142; }
.checkout-footer-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-badge {
  width: 64px;
  height: 64px;
  background: #1a1a1a;
  border: 1px dashed #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 9px;
  text-align: center;
}
.payment-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.pay-icon {
  width: 48px; height: 28px;
  background: #1a1a1a;
  border: 1px dashed #333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 8px;
}

/* ── Testimonial Block (dark with photo) ── */
.testimonial-block {
  background: #111;
  padding: 44px 20px;
}
.testimonial-inner {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-photo-placeholder {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: #333;
  border: 2px dashed #555;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 11px;
  text-align: center;
}
.testimonial-photo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

/* ── Testimonial screenshot row (3 columns) ── */
.testimonial-row-block {
  padding: 48px 20px;
}
.testimonial-row {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}
.testimonial-card {
  flex: 1;
  max-width: 300px;
}
.testimonial-card-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  display: block;
}

.testimonial-text {
  color: #ddd;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
}
.testimonial-text .name {
  font-style: normal;
  font-weight: 700;
  color: #e8712a;
  margin-top: 10px;
  display: block;
}

/* ── Section Headlines ── */
h2.section-headline {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  text-align: center;
}
h3.sub-section-headline {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
  margin-top: 36px;
  padding-bottom: 10px;
  border-bottom: 3px solid #e8712a;
  display: inline-block;
}

/* ── Story Row (text + image side by side) ── */
.story-row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 900px;
}
.story-text {
  flex: 1;
}
.story-image {
  flex: 0 0 280px;
  max-width: 280px;
  position: sticky;
  top: 40px;
}
.story-portrait {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

/* ── Body Copy ── */
.body-copy p { margin-bottom: 16px; }
.body-copy strong { font-weight: 700; }

/* ── Fascination / Bullet Lists ── */
.fascinations {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}
.fascinations li {
  padding: 12px 0 12px 36px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.65;
  font-size: 21px;
}
.fascinations li:nth-child(odd) {
  font-weight: 700;
}
.fascinations li:nth-child(even) {
  font-weight: 400;
}
.fascinations li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: 700;
  font-size: 16px;
}

/* ── Session Breakdown — Alternating Rows ── */
.session-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
.session-row.reverse {
  flex-direction: row-reverse;
}
.session-image {
  flex: 0 0 45%;
  max-width: 45%;
}
.session-image-placeholder {
  background: #e9e4df;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  border: 2px dashed #ccc;
}
.session-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.session-content {
  flex: 1;
}
.session-content h4 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  color: #1a1a1a;
}
.session-meta {
  font-size: 13px;
  font-weight: 400;
  color: #e8712a;
  margin-left: 6px;
}
.session-content .fascinations li::before { color: #e8712a; }

/* Bonus block — full width */
.bonus-block {
  background: #eaf5ea;
  border: 2px solid #4caf50;
  border-radius: 12px;
  padding: 32px 36px;
  text-align: center;
}
.bonus-block h4 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #4caf50;
  margin-bottom: 12px;
}
.bonus-block p {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
}

/* ── Numbered "How To" Blocks ── */
.numbered-block {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.numbered-block .num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #e8712a;
  color: #111;
  font-weight: 800;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.numbered-block .num-content h4 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.numbered-block .num-content p {
  margin-bottom: 8px;
  font-size: 18px;
  color: #444;
}

/* ── Value Anchor / Strikethrough ── */
.value-anchor {
  text-align: center;
  padding: 40px 20px;
  background: #f8f4eb;
}
.value-anchor h2 { font-family: 'Inter', Arial, sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.value-anchor .big-strike {
  font-size: 26px;
  text-decoration: line-through;
  color: #999;
}
.value-anchor .big-price {
  font-size: 44px;
  font-weight: 800;
  color: #4caf50;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 2px solid #e0d8c8;
  max-width: 400px;
  margin: 0 auto;
}

/* ── FAQ ── */
.faq-item { margin-bottom: 28px; }
.faq-q {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 8px;
  font-size: 22px;
}

/* ── Final CTA ── */
.final-cta {
  background: linear-gradient(180deg, #1a1a1a, #111);
  text-align: center;
  padding: 48px 20px;
}
.final-cta h2 {
  font-family: 'Inter', Arial, sans-serif;
  color: #e03030;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* ── PS ── */
.ps-section { padding: 32px 20px; background: #f9f9f9; }
.ps-section p { max-width: 660px; margin: 0 auto 14px; font-size: 18px; color: #444; }

/* ── Testimonial Disclaimer (inline) ── */
.testimonial-disclaimer {
  text-align: center;
  font-size: 11px;
  color: #555;
  margin-top: 16px;
  padding: 0 20px;
}

/* ── Superscript dagger marks ── */
sup {
  font-size: 0.55em !important;
  color: #666 !important;
  vertical-align: top;
  position: relative;
  top: -0.3em;
}

/* ── Results Disclaimer (below footer) ── */
.results-disclaimer {
  background: #000 !important;
  padding: 16px 24px 20px;
}
.results-disclaimer p {
  max-width: 660px;
  margin: 0 auto;
  font-size: 13px !important;
  line-height: 1.55;
  color: #555 !important;
  text-align: left;
}
.results-disclaimer strong {
  color: #666;
  font-weight: 600;
}
.results-disclaimer sup {
  color: #666;
}

/* ── Footer ── */
.site-footer {
  background: #000;
  color: #888;
  text-align: center;
  padding: 40px 20px 32px;
  font-size: 14px;
  line-height: 1.7;
}
.site-footer strong { color: #ccc; }
.footer-contact {
  margin-top: 6px;
  font-size: 13px;
  color: #666;
}
.footer-links {
  margin-top: 12px;
}
.footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}

/* ── Sticky Countdown Header ── */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2d2d2d;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 16px 28px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.sticky-header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.sticky-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sticky-header-text {
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}
.sticky-header-text .affiliate-line {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin-top: 3px;
  white-space: normal;
}
/* Timer */
.sticky-header-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.sticky-header-timer .cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sticky-header-timer .cd-num-box {
  width: 56px;
  height: 58px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-header-timer .cd-num {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.sticky-header-timer .cd-label {
  font-size: 10px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sticky-header-timer .cd-sep {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #555;
  padding: 0 2px;
  margin-bottom: 20px;
}
/* CTA */
.sticky-header-cta {
  flex-shrink: 0;
}
.sticky-header-cta .btn-sticky {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.sticky-header-cta .btn-sticky:hover {
  background: #43a047;
  box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
  transform: translateY(-1px);
}
body.has-sticky-header {
  padding-top: 100px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .testimonial-inner { flex-direction: column; align-items: center; text-align: center; }
  .testimonial-row { flex-direction: column; align-items: center; }
  .testimonial-card { max-width: 340px; }
  .story-row { flex-direction: column; }
  .story-image { flex: none; max-width: 200px; margin: 0 auto 24px; position: static; }
  .session-row, .session-row.reverse { flex-direction: column; gap: 20px; }
  .session-image { flex: none; max-width: 100%; }
  .checkout-price { font-size: 42px; }
  .checkout-body { padding: 24px 20px 20px; }
  .btn-buy { font-size: 17px; padding: 16px 20px; }
  h2.section-headline { font-size: 24px; }
  .sticky-header { padding: 12px 16px; }
  .sticky-header-inner { flex-direction: column; gap: 10px; }
  .sticky-header-text { font-size: 16px; text-align: center; white-space: normal; }
  .sticky-header-timer .cd-num-box { width: 46px; height: 50px; }
  .sticky-header-timer .cd-num { font-size: 24px; }
  .sticky-header-timer .cd-sep { font-size: 20px; margin-bottom: 16px; }
  .sticky-header-timer .cd-label { font-size: 9px; }
  .sticky-header-cta .btn-sticky { font-size: 14px; padding: 12px 28px; }
  body.has-sticky-header { padding-top: 170px; }
}
