:root {
  --cream: #fbf7f1;
  --paper: #fffaf5;
  --soft: #f4e9e3;
  --ink: #2a1a18;
  --muted: #6f5a55;
  --wine: #5a1a1d;
  --wine-dark: #2a0e10;
  --rose: #f8e4e2;
  --rose-deep: #e8c8c6;
  --gold: #b88a44;
  --gold-bright: #c49a52;
  --sage: #8fb8ad;
  --sage-dark: #72998f;
  --green: #00a63e;
  --green-dark: #008f36;
  --shadow: 0 14px 34px rgba(75, 21, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(184, 138, 68, 0.12), transparent 30rem),
    linear-gradient(180deg, #fffaf5 0%, var(--cream) 100%);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.section {
  padding: 104px 22px;
}

.shell {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 100%);
}

.center {
  text-align: center;
}

.centered-copy {
  text-align: center;
}

.centered-copy .actions {
  justify-content: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.04;
  color: var(--wine-dark);
}

h1 {
  max-width: 680px;
  font-size: clamp(3.4rem, 6.2vw, 5.2rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.65rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 18px 0 0;
}

.lead,
.section-intro {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.center .lead,
.center .section-intro,
.center > p {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 166, 62, 0.22);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: rgba(255, 250, 245, 0.78);
  border-color: rgba(184, 138, 68, 0.36);
  color: var(--wine-dark);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.actions.center-actions {
  justify-content: center;
}

.hero {
  min-height: 760px;
  padding-top: 82px;
  padding-bottom: 88px;
  background:
    radial-gradient(circle at 82% 46%, rgba(196, 154, 82, 0.24), transparent 18rem),
    linear-gradient(105deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.92) 48%, rgba(75, 21, 24, 0.10) 100%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 64px;
  align-items: center;
}

.book-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.book-stage::before {
  position: absolute;
  width: min(520px, 90%);
  height: min(520px, 90%);
  content: "";
  background: radial-gradient(circle, rgba(196, 154, 82, 0.22), rgba(90, 26, 29, 0.08) 45%, transparent 70%);
  filter: blur(3px);
}

.book-cover {
  position: relative;
  width: min(410px, 74vw);
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 10px !important;
  box-shadow: 0 24px 60px rgba(42, 14, 16, 0.22) !important;
  transform: rotate(1.5deg);
}

.sage-panel {
  background: linear-gradient(135deg, #f7edea 0%, #f4e9e3 100%);
}

.psychology-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: center;
}

.psychology-grid h2,
.statistics h2 {
  color: var(--wine-dark);
}

.psychology-grid p,
.statistics p {
  color: var(--muted);
}

.rose-note {
  padding: 34px;
  background: linear-gradient(160deg, var(--rose), #fff8f5);
  border: 1px solid rgba(75, 21, 24, 0.10);
  border-left: 4px solid var(--gold);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.rose-note strong,
.rose-note span {
  display: block;
}

.rose-note span {
  margin-top: 12px;
  color: var(--muted);
}

.brain {
  width: 150px;
  margin: 30px auto 26px;
  opacity: 0.9;
}

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 38px 0;
}

.trio article,
.lesson-grid article,
.benefits article,
.bonus-grid article,
.trust-grid article {
  border: 1px solid rgba(75, 21, 24, 0.10);
  border-radius: 18px;
  background: #fff8f5;
  box-shadow: var(--shadow);
}

.trio article {
  padding: 30px 26px;
  background: linear-gradient(180deg, var(--rose), #fffaf5);
}

.trio p,
.lesson-grid p,
.benefits p,
.bonus-grid p,
.trust-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

.split-section {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 60px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
}

.reverse > div {
  order: 2;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 16px;
  align-items: start;
}

.feature-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 138, 68, 0.34);
  border-radius: 999px;
  color: var(--gold);
  font-size: 1.25rem;
}

.feature-list strong {
  color: var(--wine-dark);
}

.feature-list p {
  grid-column: 2;
  margin-top: 2px;
  color: var(--muted);
}

.portrait {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(75, 21, 24, 0.14);
}

.portrait.tall {
  max-height: 820px;
}

.learn {
  background:
    linear-gradient(180deg, rgba(248, 228, 226, 0.48), transparent),
    var(--cream);
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
  text-align: left;
}

.lesson-grid article {
  position: relative;
  padding: 42px 26px 28px;
  min-height: 230px;
  text-align: center;
}

.lesson-grid span {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-weight: 800;
}

.subhead {
  margin-top: 8px;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
}

.stats strong {
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 0.95;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.statistics {
  background:
    linear-gradient(135deg, rgba(143, 184, 173, 0.92), rgba(244, 233, 227, 0.86)),
    var(--sage);
}

.news-card {
  display: none;
}

.proof-carousel {
  width: min(760px, 100%);
  margin: 42px auto 0;
}

.proof-carousel h3 {
  margin-bottom: 22px;
  color: var(--wine-dark);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.carousel-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 28px 82px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.carousel-main {
  width: min(520px, 100%);
  max-height: 560px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 14px 28px rgba(42, 14, 16, 0.18);
}

.carousel-btn:hover {
  background: var(--wine-dark);
}

.carousel-btn.prev {
  left: 22px;
}

.carousel-btn.next {
  right: 22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid rgba(75, 21, 24, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--wine);
  border-color: var(--wine);
}

.testimonial-carousel {
  margin: 42px auto 34px;
}

.testimonial-carousel .carousel-frame {
  min-height: 560px;
}

.testimonial-carousel .carousel-main {
  width: min(430px, 100%);
  max-height: 620px;
  filter: drop-shadow(0 18px 26px rgba(70, 16, 19, 0.16));
}

.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.benefits article,
.bonus-grid article {
  padding: 28px 20px;
  background: linear-gradient(180deg, var(--rose), #fff8f5);
}

.manual-fit-separator {
  height: 86px;
}

.bonus-title {
  margin-top: 72px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 36px;
}

.offer {
  background:
    radial-gradient(circle at 50% 20%, rgba(196, 154, 82, 0.22), transparent 24rem),
    linear-gradient(180deg, var(--paper), #f4e9e3);
}

.offer .shell {
  padding: 56px 44px;
  border: 1px solid rgba(184, 138, 68, 0.34);
  border-radius: 28px;
  background: rgba(255, 250, 245, 0.76);
  box-shadow: 0 24px 70px rgba(75, 21, 24, 0.10);
}

.book-large {
  width: min(380px, 78vw);
  height: auto;
  max-height: 560px;
  object-fit: contain;
  margin: 30px auto 30px;
  border-radius: 10px !important;
  box-shadow: 0 24px 60px rgba(42, 14, 16, 0.22) !important;
}

.pdf {
  margin-top: 0;
  color: var(--wine);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.price {
  margin-top: 18px;
  color: var(--wine-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.4rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
}

.old-price {
  color: var(--muted);
}

.purchase {
  margin-top: 26px;
  min-width: 290px;
  min-height: 58px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
  text-align: center;
}

.trust-grid article {
  padding: 22px;
}

blockquote {
  margin: 48px auto 0;
  padding: 34px;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: rgba(255, 248, 245, 0.86);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.35;
  text-align: left;
}

.author {
  color: var(--wine-dark);
  font-weight: 800;
}

footer {
  margin-top: 38px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .section {
    padding: 72px 18px;
  }

  .hero-grid,
  .psychology-grid,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .reverse > div {
    order: 0;
  }

  .book-stage {
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

  .book-cover {
    width: min(330px, 86vw);
    max-height: 500px;
  }

  .lesson-grid,
  .trio,
  .bonus-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.7rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .actions,
  .stats {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    white-space: normal;
    text-align: center;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero-grid {
    gap: 34px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .carousel-frame {
    min-height: 360px;
    padding: 22px 58px;
  }

  .testimonial-carousel .carousel-frame {
    min-height: 520px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .feature-list div {
    grid-template-columns: 36px 1fr;
  }

  .feature-list span {
    width: 36px;
    height: 36px;
  }

  blockquote {
    padding: 24px;
    font-size: 1.2rem;
  }

  .offer .shell {
    padding: 42px 20px;
    border-radius: 22px;
  }

  .book-large {
    width: min(320px, 86vw);
    max-height: 500px;
  }

  .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: block;
    padding: 10px 14px 12px;
    background: rgba(255, 250, 245, 0.94);
    box-shadow: 0 -10px 30px rgba(42, 14, 16, 0.12);
  }

  .mobile-sticky-cta .btn {
    width: 100%;
    min-height: 50px;
  }

  .mobile-sticky-cta.is-hidden {
    display: none;
  }
}
