:root {
  --bg: #fbf7f0;
  --paper: #fffdf8;
  --paper-2: #f3eadf;
  --green: #173716;
  --green-2: #285427;
  --green-3: #eaf2e7;
  --gold: #d2a41f;
  --gold-2: #f6e1a1;
  --ink: #241a12;
  --muted: #6f6257;
  --line: #e5d8c7;
  --danger: #a43c35;
  --shadow: 0 18px 48px rgba(36, 26, 18, 0.12);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: #fff;
  color: var(--green);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  padding: 9px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 14px;
  padding: 13px 18px;
  border: 0;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.15;
  box-shadow: 0 12px 28px rgba(23, 55, 22, 0.25);
}

.button:hover {
  background: var(--green-2);
}

.button-light {
  background: #fff;
  color: var(--green);
}

.button-light:hover {
  background: #fff8e4;
}

.button-full {
  width: 100%;
}

.hero {
  padding: 34px 0 44px;
  background:
    radial-gradient(circle at 90% 18%, rgba(210, 164, 31, 0.14), transparent 32%),
    linear-gradient(180deg, #fffdf8 0%, #f5ecdf 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--green);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  flex: 0 0 auto;
}

.hero h1,
.section-title,
.offer-title {
  margin: 0;
  color: var(--green);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  margin-top: 20px;
  max-width: 760px;
  font-size: clamp(2.05rem, 9.4vw, 4.8rem);
}

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

.hero-copy {
  margin: 18px 0 0;
  max-width: 650px;
  color: #493a2f;
  font-size: clamp(1rem, 3.9vw, 1.2rem);
}

.hero-actions {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.trust-strip {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.trust-strip span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: currentColor;
}

.book-wrap {
  justify-self: center;
  width: min(58vw, 260px);
  perspective: 1100px;
}

.book {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  transform: rotateY(-9deg) rotateX(4deg);
  box-shadow: -16px 18px 42px rgba(36, 26, 18, 0.2);
  background: #121212;
}

.book::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 14px;
  background: linear-gradient(90deg, #0b170b, #244823);
  z-index: 2;
}

.book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-left: 8px;
}

.section {
  padding: 56px 0;
}

.section-white {
  background: #fff;
}

.section-soft {
  background: #f7efe5;
}

.section-green {
  background: var(--green);
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.9rem, 7vw, 3rem);
}

.section-subtitle {
  margin: 14px auto 0;
  max-width: 650px;
  color: var(--muted);
}

.section-green .section-title,
.section-green .section-subtitle,
.section-green .section-kicker {
  color: #fff;
}

.comparison,
.cards,
.bonus-grid,
.fit-grid,
.author-grid,
.capture-grid {
  display: grid;
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 22px;
  box-shadow: 0 8px 26px rgba(36, 26, 18, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 1.22rem;
  line-height: 1.18;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-danger {
  background: #fff7f5;
  border-color: #f0c9c2;
}

.card-danger h3 {
  color: var(--danger);
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4b4038;
}

.check,
.xmark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 950;
  margin-top: 1px;
}

.check {
  background: var(--green-3);
  color: var(--green);
}

.xmark {
  background: #fee3dc;
  color: var(--danger);
}

.pillars {
  counter-reset: pillar;
}

.pillar {
  position: relative;
}

.pillar::before {
  counter-increment: pillar;
  content: "0" counter(pillar);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--green-3);
  color: var(--green);
  font-weight: 950;
}

.offer-box {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  padding: 22px;
}

.offer-title {
  color: #fff;
  text-align: center;
  font-size: clamp(2rem, 8vw, 3.5rem);
}

.price {
  margin: 18px 0;
  display: grid;
  gap: 4px;
  text-align: center;
}

.price small {
  color: var(--gold-2);
  font-weight: 950;
  text-transform: uppercase;
}

.price strong {
  color: var(--gold);
  font-size: clamp(3rem, 12vw, 4.8rem);
  line-height: 1;
}

.bonus-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.9rem;
}

.form-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
}

.form-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.form-field label {
  font-size: 0.86rem;
  font-weight: 800;
}

.form-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
}

.microcopy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof {
  border-left: 4px solid var(--gold);
}

.author-photo {
  width: 150px;
  height: 150px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 850px;
  margin: 0 auto;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 18px;
  color: var(--green);
  font-weight: 900;
}

.faq details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff7ec;
  color: var(--muted);
  text-align: center;
  font-size: 0.86rem;
}

.footer p {
  max-width: 760px;
  margin: 8px auto 0;
}

.legal {
  font-size: 0.76rem;
  color: #86786b;
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand-text {
    max-width: 168px;
    font-size: 0.96rem;
  }

  .nav .button {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.82rem;
    box-shadow: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-actions .button {
    min-height: 58px;
  }
}

@media (min-width: 640px) {
  .hero-actions {
    display: flex;
    align-items: center;
  }

  .button-full {
    width: auto;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards,
  .bonus-grid,
  .fit-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .hero {
    padding: 70px 0 76px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 48px;
  }

  .book-wrap {
    width: min(32vw, 330px);
  }

  .comparison,
  .capture-grid,
  .author-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .pillars,
  .bonus-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 78px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

.section-green .list li {
  color: rgba(255, 255, 255, 0.92);
}

.section-green .check {
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
}

/* TESTIMONIALS STYLES */
.testimonial-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 4px solid var(--gold);
}

.testimonial-text {
  font-style: italic;
  color: var(--ink);
  margin-bottom: 16px !important;
  font-size: 0.96rem;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.testimonial-author strong {
  display: block;
  font-size: 0.93rem;
  color: var(--green);
}

.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}
