/* ============================================================
   VITALITÄT PUR — Funnel Stylesheet
   Shared across: index.html, upsell.html, thankyou.html
   ============================================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --navy: #0D1B2A;
  --navy-mid: #162336;
  --navy-light: #1E3048;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --text-light: #CBD5E0;
  --text-muted: #8A9BB0;
  --red-urgency: #E53E3E;
  --green-check: #48BB78;
  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-ui: 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--off-white);
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { margin-bottom: 1.2em; color: var(--off-white); }

strong { color: var(--white); }

em { color: var(--gold-light); font-style: normal; font-weight: 600; }

/* ---- LAYOUT ---- */
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--dark { background: var(--navy); }
.section--mid  { background: var(--navy-mid); }
.section--light { background: var(--navy-light); }

/* ---- HEADER / HERO ---- */
.hero {
  background: linear-gradient(180deg, #0A1520 0%, var(--navy-mid) 100%);
  padding: 50px 20px 60px;
  text-align: center;
  border-bottom: 2px solid var(--gold-dark);
}

.hero__eyebrow {
  display: inline-block;
  background: var(--gold-dark);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.hero__headline {
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__headline span { color: var(--gold); }

.hero__subheadline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 30px;
  font-family: var(--font-ui);
  font-weight: 400;
}

.hero__cover {
  width: 220px;
  max-width: 80%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 3px var(--gold-dark);
  margin: 30px auto;
  display: block;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy-light);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 16px 20px;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-item__icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ---- CTA BUTTON ---- */
.cta-btn {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  padding: 20px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  line-height: 1.3;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.55);
}

.cta-btn:active { transform: translateY(0); }

.cta-btn__sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(13,27,42,0.7);
  margin-top: 5px;
  letter-spacing: 0.03em;
}

.cta-wrapper {
  text-align: center;
  padding: 10px 0 20px;
}

/* ---- PRICE BOX ---- */
.price-box {
  background: var(--navy-light);
  border: 2px solid var(--gold-dark);
  border-radius: 10px;
  padding: 36px 30px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto 30px;
}

.price-box__original {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-box__current {
  font-family: var(--font-ui);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.price-box__note {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---- SECTION HEADINGS ---- */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading__label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-ui);
}

/* ---- PROBLEM / PAIN SECTION ---- */
.pain-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem;
  color: var(--off-white);
}

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

.pain-list__icon {
  color: var(--red-urgency);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---- BENEFIT LIST ---- */
.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem;
}

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

.benefit-list__icon {
  color: var(--green-check);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---- CHAPTER LIST ---- */
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.chapter-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.chapter-card__num {
  font-family: var(--font-ui);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-dark);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}

.chapter-card__title {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.chapter-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  font-family: var(--font-ui);
  line-height: 1.5;
}

/* ---- TESTIMONIALS ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--navy-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 24px 22px;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--off-white);
  margin-bottom: 14px;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-card__author {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.faq-item:first-child { padding-top: 0; }

.faq-item__q {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item__q::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
}

.faq-item__a {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-ui);
}

/* ---- GUARANTEE BOX ---- */
.guarantee-box {
  background: var(--navy-light);
  border: 2px solid var(--gold-dark);
  border-radius: 10px;
  padding: 36px 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 640px;
  margin: 0 auto;
}

.guarantee-box__icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
}

.guarantee-box__title {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.guarantee-box__text {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
  font-family: var(--font-ui);
  line-height: 1.65;
}

/* ---- URGENCY BAR ---- */
.urgency-bar {
  background: var(--red-urgency);
  text-align: center;
  padding: 12px 20px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ---- FOOTER ---- */
.footer {
  background: #080F18;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* ---- DIVIDER ---- */
.gold-divider {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.3);
  margin: 40px 0;
}

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 24px 26px;
  margin: 30px 0;
}

.highlight-box p { margin: 0; font-size: 1rem; }

/* ---- UPSELL SPECIFIC ---- */
.upsell-hero {
  background: linear-gradient(180deg, #0A1520 0%, var(--navy-mid) 100%);
  padding: 50px 20px;
  text-align: center;
  border-bottom: 2px solid var(--gold-dark);
}

.upsell-hero__wait {
  display: inline-block;
  background: var(--red-urgency);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 3px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.upsell-includes {
  list-style: none;
  padding: 0;
  max-width: 560px;
  margin: 0 auto;
}

.upsell-includes li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.upsell-includes li:last-child { border-bottom: none; }

.upsell-includes__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.upsell-includes__title {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.upsell-includes__desc {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.no-thanks {
  display: block;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 16px;
  background: none;
  border: none;
  padding: 0;
}

/* ---- THANK YOU SPECIFIC ---- */
.thankyou-hero {
  background: linear-gradient(180deg, #0A1520 0%, var(--navy-mid) 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid var(--gold-dark);
}

.thankyou-hero__check {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}

.download-box {
  background: var(--navy-light);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 36px 30px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 30px;
}

.download-box__title {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.download-box__desc {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
  transition: transform 0.15s ease;
}

.download-btn:hover { transform: translateY(-2px); }

.next-steps {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  max-width: 560px;
  margin: 0 auto;
}

.next-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.next-steps li::before {
  content: counter(steps);
  background: var(--gold-dark);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 800;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.next-steps__title {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.next-steps__desc {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .section { padding: 40px 0; }
  .guarantee-box { flex-direction: column; gap: 16px; }
  .chapter-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 14px; }
  .trust-item { font-size: 0.72rem; }
  .price-box { padding: 28px 20px; }
}

/* ============================================
   BONUS AUDIO BOX
   ============================================ */
.bonus-box {
  background: linear-gradient(135deg, rgba(200,170,80,0.08) 0%, rgba(200,170,80,0.03) 100%);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  padding: 32px;
  margin: 0 0 40px;
  text-align: center;
}
.bonus-box__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.bonus-box__title {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 12px;
}
.bonus-box__desc {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
  font-family: var(--font-ui);
}
.bonus-track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
  margin: 0 0 20px;
  text-align: left;
}
.bonus-track {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,170,80,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-family: var(--font-ui);
}
.bonus-track__num {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bonus-box__value {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}
.price-box__includes {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  text-align: left;
  display: inline-block;
}
.price-box__includes li {
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 4px 0;
  font-family: var(--font-ui);
}
