/* Just $33 to Start - Sales Funnel Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700;800;900&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dark: #A8893D;
  --cream: #FBF6EC;
  --cream-dark: #F5EDD9;
  --black: #1A1A2E;
  --dark: #2D2D3F;
  --gray: #555555;
  --gray-light: #999999;
  --gray-lighter: #E8E3D9;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Montserrat', 'Avenir Next', sans-serif;
  --font-body: 'Source Sans 3', 'Avenir Next', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-dark); }

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

.section {
  padding: 80px 0;
}

.section--cream { background: var(--cream); }
.section--dark { background: var(--black); color: var(--white); }

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

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--black);
  line-height: 1.2;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; }
h4 { font-size: 1.1rem; font-weight: 600; }

.display-font {
  font-family: var(--font-display);
  font-weight: 300;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 16px 40px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.btn--large {
  padding: 20px 50px;
  font-size: 1.1rem;
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ═══ STICKY HEADER ═══ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-lighter);
  padding: 12px 0;
  transition: all 0.3s;
}

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

.header__logo {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
}

.header__cta .btn {
  padding: 10px 28px;
  font-size: 0.85rem;
}

/* ═══ HERO ═══ */
.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.hero__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 8px;
}

.hero__title b {
  font-weight: 700;
}

.hero__subtitle {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 30px;
}

.hero__description {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 35px;
}

.hero__cta {
  margin-bottom: 40px;
}

.hero__cta .btn { margin: 0 8px 12px; }

.hero__image {
  max-width: 550px;
  margin: 0 auto;
}

.hero__trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__trust-item {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

.hero__trust-item strong {
  color: var(--black);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 2px;
}

/* ═══ PROBLEM SECTION ═══ */
.problem__list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.problem__list li {
  font-size: 1.1rem;
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid var(--gray-lighter);
}

.problem__list li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: #c0392b;
  font-size: 1.2rem;
  font-weight: 700;
}

.problem__cost {
  background: var(--cream);
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.problem__cost p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
}

/* ═══ SOLUTION SECTION ═══ */
.solution__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.solution__card {
  text-align: center;
  padding: 30px 20px;
}

.solution__card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.solution__card h3 {
  color: var(--black);
  margin-bottom: 10px;
}

.solution__card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ═══ CHAPTERS / WHAT'S INSIDE ═══ */
.chapters__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.chapter-card {
  padding: 24px;
  border: 1px solid var(--gray-lighter);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.chapter-card:hover {
  border-color: var(--gold);
}

.chapter-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.chapter-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.chapter-card__desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.5;
}

/* ═══ PROOF / TESTIMONIALS ═══ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--gray-lighter);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ═══ STATS BAR ═══ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  padding: 50px 0;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ═══ PRICING ═══ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}

.pricing-card {
  border: 1px solid var(--gray-lighter);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card--popular {
  border: 2px solid var(--gold);
  transform: scale(1.05);
}

.pricing-card--popular:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
}

.pricing-card__tier {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price-note {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-card__features li {
  font-size: 0.95rem;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card__features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
}

/* ═══ BONUSES ═══ */
.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.bonus-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--gray-lighter);
  border-radius: 8px;
}

.bonus-card__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.bonus-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.bonus-card__desc {
  font-size: 0.85rem;
  color: var(--gray-light);
}

.bonus-card__tier {
  font-size: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ═══ AUTHOR ═══ */
.author__content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.author__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
}

.author__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.author__bio {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══ FAQ ═══ */
.faq__list {
  max-width: 750px;
  margin: 40px auto 0;
}

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

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  transition: color 0.3s;
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══ FINAL CTA ═══ */
.final-cta {
  text-align: center;
  padding: 80px 0;
}

.final-cta__guarantee {
  display: inline-block;
  background: var(--cream);
  padding: 16px 30px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  margin-top: 30px;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--black);
  color: var(--gray-light);
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer a { color: var(--gold); }

.footer__links {
  margin-bottom: 16px;
}

.footer__links a {
  margin: 0 16px;
  font-size: 0.85rem;
}

/* ═══ LEAD MAGNET PAGE ═══ */
.opt-in {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.opt-in__card {
  background: var(--white);
  max-width: 480px;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.opt-in__input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--gray-lighter);
  border-radius: 6px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.3s;
}

.opt-in__input:focus {
  border-color: var(--gold);
}

/* ═══ THANK YOU PAGE ═══ */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.thank-you__card {
  background: var(--white);
  max-width: 600px;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.download-list {
  list-style: none;
  text-align: left;
  margin: 30px 0;
}

.download-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-lighter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.download-list li span {
  font-weight: 500;
  color: var(--black);
}

.upsell-box {
  background: var(--cream);
  padding: 28px;
  border-radius: 8px;
  margin-top: 30px;
}

.upsell-box h3 {
  color: var(--gold);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero__title { font-size: 2.8rem; }
  .hero { padding: 120px 0 60px; }

  .solution__grid,
  .chapters__grid,
  .testimonials__grid,
  .pricing__grid,
  .bonuses__grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--popular {
    transform: none;
    order: -1;
  }

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

  .hero__trust {
    flex-direction: column;
    gap: 16px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
