/* ==========================================================================
   Behind My Smile — Sales Page Stylesheet
   Design system: behind-my-smile-sales-page-design-system.md
   ========================================================================== */

:root {
  --primary: #123B2A;
  --primary-dark: #0B2419;
  --secondary: #78927D;
  --secondary-light: #e8ede6;
  --background: #F7F2E8;
  --surface: #FFFFFF;
  --text: #242424;
  --gold: #C5A15A;
  --gold-dark: #aa8742;
  --white: #FFFFFF;
  --cream-soft: rgba(247, 242, 232, 0.08);

  --heading: 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --content-w: 720px;

  --pad-desktop: 96px;
  --pad-mobile: 64px;

  --radius-sm: 4px;
  --radius-md: 8px;

  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.22);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1.08;
  color: var(--primary);
}

p + p { margin-top: 1em; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--gold); color: var(--primary-dark); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); overflow: hidden;
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 30px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease,
              border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  text-align: center;
  line-height: 1.3;
}

.btn--primary {
  background: var(--gold);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(197, 161, 90, 0.28);
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(197, 161, 90, 0.34);
}

.btn--secondary {
  background: transparent;
  color: var(--background);
  border: 1px solid rgba(247, 242, 232, 0.55);
}

.btn--secondary:hover {
  border-color: var(--background);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(18, 59, 42, 0.35);
}

.btn--whatsapp:hover { border-color: var(--primary); transform: translateY(-2px); }

.btn--lg { min-height: 60px; padding: 18px 34px; font-size: 16px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-row--center { justify-content: center; }

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--primary);
}

.nav {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__brand {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--background);
  margin-right: auto;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(247, 242, 232, 0.88);
  transition: color 200ms ease;
}

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

.nav__cta { margin-left: 4px; min-height: 44px; padding: 12px 20px; font-size: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--background);
  transition: transform 250ms ease, opacity 200ms ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: var(--primary);
  color: var(--background);
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 161, 90, 0.14), transparent 65%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero__eyebrow {
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--background);
  text-transform: uppercase;
}

.hero__author {
  margin-top: 28px;
  font-family: var(--heading);
  font-size: 20px;
  font-style: italic;
  color: rgba(247, 242, 232, 0.85);
}

.hero__price {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--background);
}

.hero__price-note {
  font-weight: 400;
  opacity: 0.65;
  margin-left: 4px;
}

.hero .cta-row { margin-top: 36px; }

.hero__offer {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.hero__offer span { color: rgba(247, 242, 232, 0.75); font-weight: 400; }

.hero__media { display: flex; justify-content: center; }

.hero__media-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero__book {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero__portrait {
  position: absolute;
  right: -12px;
  bottom: -32px;
  width: 132px;
  height: 164px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  border: 4px solid var(--primary);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

/* ---------- Launch Offer Bar ---------- */
.offer-bar { background: var(--gold); }

.offer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}

.offer-bar__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(18, 59, 42, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

.offer-bar__text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-dark);
}

.offer-bar__text strong { font-weight: 700; }

/* ---------- Emotional Hook ---------- */
.hook { background: var(--background); padding: var(--pad-desktop) 0; }

.hook__inner { max-width: var(--content-w); margin-inline: auto; }

.hook__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  margin-bottom: 48px;
}

.hook__text { font-size: 18px; line-height: 1.85; color: var(--text); }

.hook__text p:first-child {
  text-align: center;
  font-family: var(--heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--primary);
  margin-bottom: 1.4em;
}

/* ---------- Featured Quote ---------- */
.quote-section {
  background: var(--background);
  padding: 0 0 var(--pad-desktop);
}

.quote {
  max-width: var(--content-w);
  margin-inline: auto;
  border-left: 2px solid var(--gold);
  padding-left: 32px;
}

.quote blockquote {
  font-family: var(--heading);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  color: var(--primary);
}

.quote__source {
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ---------- The Book ---------- */
.book { background: var(--background); padding: var(--pad-desktop) 0; }

.book__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.book__media { position: relative; }

.book__decoration {
  position: absolute;
  top: -48px;
  left: -48px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(120, 146, 125, 0.16);
  z-index: 0;
  pointer-events: none;
}

.book__mock {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.book__cover {
  position: relative;
  z-index: 2;
  width: 210px;
  margin: -64px auto 0 8px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.book__title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--primary);
}

.book__subtitle {
  font-family: var(--heading);
  font-size: 20px;
  font-style: italic;
  color: var(--secondary);
  border-bottom: 1px solid rgba(18, 59, 42, 0.15);
  padding-bottom: 24px;
  margin-bottom: 28px;
}

.book__desc { font-size: 17px; line-height: 1.85; margin-bottom: 36px; }

/* ---------- Chapter Journey ---------- */
.journey { background: var(--primary-dark); padding: var(--pad-desktop) 0; }

.journey__title {
  color: var(--background);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  max-width: 720px;
}

.journey__intro {
  color: rgba(247, 242, 232, 0.7);
  margin-top: 16px;
  margin-bottom: 72px;
  font-size: 16px;
}

.timeline {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 1px;
  background: rgba(197, 161, 90, 0.4);
}

.timeline__item {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 18px 0 18px 40px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.08);
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  border: 3px solid var(--primary-dark);
}

.timeline__num {
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--gold);
  min-width: 30px;
}

.timeline__name {
  font-size: 16.5px;
  color: var(--background);
  line-height: 1.5;
}

/* ---------- More Than Abuse ---------- */
.themes { background: var(--secondary); padding: var(--pad-desktop) 0; }

.themes__title {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 680px;
  margin-bottom: 64px;
}

.theme-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.theme-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 400ms ease, background-color 400ms ease;
}

.theme-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.2); }

.theme-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--gold);
  background: rgba(18, 59, 42, 0.28);
  border-radius: var(--radius-sm);
}

.theme-card__icon svg { width: 26px; height: 26px; }

.theme-card h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 10px;
}

.theme-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

/* ---------- What You'll Take Away ---------- */
.takeaway { background: var(--background); padding: var(--pad-desktop) 0; }

.takeaway__title { font-size: clamp(2.2rem, 5vw, 3.2rem); }

.takeaway__intro {
  max-width: 640px;
  margin-top: 16px;
  margin-bottom: 56px;
  font-size: 17px;
}

.takeaway__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 48px;
  max-width: 860px;
}

.takeaway__list li {
  position: relative;
  padding-left: 36px;
  font-size: 16.5px;
  line-height: 1.55;
}

.takeaway__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3"><path d="M5 13l4 4L19 7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3"><path d="M5 13l4 4L19 7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
}

/* ---------- Author ---------- */
.author { background: var(--background); padding: var(--pad-desktop) 0; }

.author__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.author__media img {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.author__title { font-size: clamp(2rem, 4.5vw, 3rem); }

.author__name {
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  border-bottom: 1px solid rgba(18, 59, 42, 0.15);
  padding-bottom: 20px;
  margin-bottom: 24px;
  margin-top: 12px;
}

.author__bio { font-size: 17px; line-height: 1.85; }

.author__bio em { color: var(--primary); font-weight: 600; }

.author__content .btn { margin-top: 36px; }

/* ---------- Video ---------- */
.video-section { background: var(--primary-dark); padding: var(--pad-desktop) 0; }

.video-section__inner { text-align: center; }

.video-section__title {
  color: var(--background);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 56px;
}

.video-frame {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold);
  background: var(--primary);
  box-shadow: var(--shadow-lg);
}

.video-frame__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.video-frame__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(11, 36, 25, 0.55);
}

.video-frame__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(197, 161, 90, 0.18);
  color: var(--gold);
  cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease;
}

.video-frame__play:hover { transform: scale(1.06); background: rgba(197, 161, 90, 0.32); }

.video-frame__play svg { width: 30px; height: 30px; }

.video-frame__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(247, 242, 232, 0.8);
  text-transform: uppercase;
}

/* ---------- Why This Story Matters ---------- */
.matters { background: var(--background); padding: var(--pad-desktop) 0; }

.matters__title { font-size: clamp(2rem, 4.5vw, 3rem); max-width: 680px; }

.matter-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.matter-card {
  background: var(--surface);
  border: 1px solid rgba(18, 59, 42, 0.08);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform 400ms ease;
}

.matter-card:hover { transform: translateY(-4px); }

.matter-card p {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--primary);
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--background); padding: var(--pad-desktop) 0; }

.testimonials__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 720px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(18, 59, 42, 0.08);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 34px 30px;
  transition: transform 400ms ease;
}

.testimonial:hover { transform: translateY(-4px); }

.testimonial__stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}

.testimonial__stars svg { width: 18px; height: 18px; }

.testimonial__quote {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  flex-grow: 1;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 59, 42, 0.1);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--secondary-light);
}

.testimonial__meta { min-width: 0; }

.testimonial__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.testimonial__role {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 2px;
}

.testimonial__badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: var(--secondary-light);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  white-space: nowrap;
}

/* ---------- Bonus ---------- */
.bonus { background: var(--secondary); padding: var(--pad-desktop) 0; }

.bonus__title {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 640px;
  margin-bottom: 56px;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
}

.bonus-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform 400ms ease;
}

.bonus-card:hover { transform: translateY(-4px); }

.bonus-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--primary);
  background: var(--secondary-light);
  border-radius: var(--radius-sm);
}

.bonus-card__icon svg { width: 24px; height: 24px; }

.bonus-card h3 { font-size: 24px; margin-bottom: 8px; }

.bonus-card p { font-size: 15px; line-height: 1.7; }

.bonus__price {
  font-family: var(--heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin: 56px 0 28px;
}

.bonus .btn { margin-inline: auto; }

/* ---------- Pricing ---------- */
.pricing { background: var(--background); padding: var(--pad-desktop) 0; }

.pricing-card {
  max-width: 620px;
  margin-inline: auto;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 59, 42, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 64px 56px;
}

.pricing-card__title {
  font-size: 36px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing-card__subtitle {
  font-family: var(--heading);
  font-style: italic;
  font-size: 18px;
  color: var(--secondary);
  margin-top: 8px;
}

.pricing-card__price {
  font-family: var(--heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 36px;
}

.pricing-card__kind {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  border-bottom: 1px solid rgba(18, 59, 42, 0.1);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.pricing-card__features { margin-bottom: 36px; }

.pricing-card__features li {
  position: relative;
  padding: 8px 0 8px 36px;
  text-align: left;
  margin-inline: auto;
  max-width: 300px;
  font-size: 16px;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3"><path d="M5 13l4 4L19 7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3"><path d="M5 13l4 4L19 7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
}

.pricing-card .cta-row { justify-content: center; margin-bottom: 20px; }

.pricing-card__note {
  font-size: 13px;
  color: var(--secondary);
}

/* ---------- How to Order ---------- */
.order-options { background: var(--background); padding: var(--pad-desktop) 0; }

.order-options__title { font-size: clamp(2rem, 4.5vw, 3rem); }

.order-options__intro {
  max-width: 620px;
  margin-top: 16px;
  margin-bottom: 56px;
  font-size: 16.5px;
}

.order-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.order-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid rgba(18, 59, 42, 0.08);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 32px 26px;
  transition: transform 400ms ease;
}

.order-card:hover { transform: translateY(-4px); }

.order-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--primary);
  background: var(--secondary-light);
  border-radius: var(--radius-sm);
}

.order-card__icon svg { width: 26px; height: 26px; }

.order-card h3 {
  font-size: 23px;
  color: var(--primary);
  margin-bottom: 10px;
}

.order-card__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
  flex-grow: 1;
}

.order-card__details {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid rgba(18, 59, 42, 0.1);
  padding-top: 16px;
}

.order-card__details div { padding: 4px 0; }

.order-card__details dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

.order-card__details dd {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 2px;
}

.order-card .btn { margin-top: 22px; width: 100%; }

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(18, 59, 42, 0.35);
}

.btn--ghost:hover { border-color: var(--primary); transform: translateY(-2px); }

.btn--copy.is-copied {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--background);
}

.order-card--soon { opacity: 0.8; }

.order-card--soon .btn--ghost { cursor: not-allowed; opacity: 0.55; }
.order-card--soon .btn--ghost:hover { transform: none; }

.order-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--gold);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

/* ---------- FAQ ---------- */
.faq { background: var(--background); padding: var(--pad-desktop) 0; }

.faq__inner { max-width: 760px; margin-inline: auto; }

.faq__title { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 48px; }

.faq__list { border-top: 1px solid rgba(18, 59, 42, 0.12); }

.faq__item {
  border-bottom: 1px solid rgba(18, 59, 42, 0.12);
  transition: background-color 200ms ease;
}

.faq__item[open] { background: rgba(120, 146, 125, 0.08); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--primary);
}

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

.faq__item summary::after {
  content: "+";
  font-family: var(--body);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__answer {
  padding: 0 4px 28px;
  font-size: 16px;
  line-height: 1.75;
  max-width: 640px;
}

.faq__answer em { font-style: italic; }

/* ---------- Final Emotional CTA ---------- */
.final-cta {
  background: var(--primary-dark);
  padding: var(--pad-desktop) 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 161, 90, 0.14), transparent 65%);
  pointer-events: none;
}

.final-cta__inner {
  text-align: center;
  max-width: var(--content-w);
  position: relative;
}

.final-cta__title {
  color: var(--background);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
}

.final-cta__copy {
  color: rgba(247, 242, 232, 0.78);
  font-size: 18px;
  max-width: 560px;
  margin: 24px auto 0;
}

.final-cta__book {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(247, 242, 232, 0.15);
}

.final-cta__title-lg {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

.final-cta__tagline {
  font-family: var(--heading);
  font-style: italic;
  font-size: 19px;
  color: rgba(247, 242, 232, 0.8);
  margin-top: 10px;
}

.final-cta__price {
  font-family: var(--heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--background);
  margin: 40px 0 28px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--primary); padding: 80px 0 40px; }

.site-footer .container { max-width: 760px; text-align: center; }

.site-footer__name {
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--background);
  text-transform: uppercase;
}

.site-footer__book {
  font-size: 14px;
  color: rgba(247, 242, 232, 0.7);
  margin-top: 12px;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 36px;
}

.site-footer__links a {
  font-size: 14px;
  color: rgba(247, 242, 232, 0.85);
  transition: color 200ms ease;
}

.site-footer__links a:hover { color: var(--gold); }

.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.site-footer__social a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid rgba(197, 161, 90, 0.35);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  transition: background-color 200ms ease, color 200ms ease;
}

.site-footer__social a:hover { background: var(--gold); color: var(--primary-dark); }

.site-footer__legal {
  margin-top: 40px;
  font-size: 13px;
  color: rgba(247, 242, 232, 0.55);
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 300ms ease, background-color 200ms ease;
}

.sticky-cta:hover { background: var(--gold-dark); }

.sticky-cta.is-hidden { transform: translateY(140%); }

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  body { font-size: 16.5px; }

  .hero { padding: 72px 0 96px; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero .cta-row { justify-content: center; }
  .hero__media-frame { margin-inline: auto; }

  .book__inner { grid-template-columns: 1fr; gap: 64px; }
  .book__content { text-align: center; }
  .book__subtitle { border-bottom: none; padding-bottom: 16px; }
  .book__decoration { left: -80px; }

  .theme-cards { grid-template-columns: repeat(2, 1fr); }
  .order-cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .author__inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .matter-cards { grid-template-columns: 1fr; }
  .takeaway__list { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav { height: 68px; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--primary);
    padding: 8px 24px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease, transform 250ms ease, visibility 250ms;
  }
  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(247, 242, 232, 0.1);
  }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hook, .book, .journey, .themes, .takeaway, .author,
  .video-section, .matters, .bonus, .pricing, .faq, .final-cta {
    padding: 64px 0;
  }

  .hero__title { font-size: clamp(2.3rem, 11vw, 3rem); }
  .hero__portrait { width: 108px; height: 140px; right: -6px; bottom: -20px; }
  .hero .cta-row { flex-direction: column; align-items: stretch; }

  .cta-row { gap: 12px; }
  .cta-row .btn { width: 100%; }

  .theme-cards { grid-template-columns: 1fr; }
  .bonus-cards { grid-template-columns: 1fr; }
  .order-cards { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 48px 24px; }
  .pricing-card__price { font-size: 46px; }
  .final-cta__price { font-size: 42px; }
  .timeline__item { gap: 18px; padding-left: 36px; }

  .sticky-cta { display: inline-flex; }
}