@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;650;750;850;900&family=Lora:wght@500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --soft: #edf5ef;
  --soft2: #f7fbf8;
  --text: #201f1d;
  --muted: #5d6d62;
  --line: #d9e6dc;
  --sage: #88a28b;
  --sage-dark: #56715a;
  --clay: #6f8f75;
  --mustard: #7b9d80;
}

* { box-sizing: border-box; }

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

main { overflow: hidden; }

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

.narrow { max-width: 780px; }
.center { text-align: center; }

h1, h2, h3 {
  margin: 0;
  color: var(--text);
}

h1, h2 {
  font-family: Lora, Georgia, serif;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(39px, 6vw, 72px);
  max-width: 780px;
}

h2 { font-size: clamp(32px, 4.8vw, 56px); }

h3 {
  font-size: 22px;
  line-height: 1.2;
}

p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.eyebrow {
  color: var(--sage-dark);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.hero {
  padding: 58px 0 50px;
  background:
    radial-gradient(circle at 12% 15%, rgba(111,143,117,.10), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(136,162,139,.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5fbf7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 40px;
  align-items: center;
}

.subhead {
  font-size: 20px;
  max-width: 680px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 800;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(35,30,25,.10);
}

.price-box {
  margin-top: 26px;
  display: grid;
  gap: 10px;
  max-width: 470px;
}

.rating {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 850;
  color: var(--text);
  font-size: 15px;
}

.rating span {
  color: #E0B23F;
  letter-spacing: 1px;
}

.price {
  font-size: clamp(30px, 4.8vw, 44px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.05;
}

.price strong {
  font-size: clamp(48px, 8vw, 78px);
  letter-spacing: -0.06em;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 17px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  transition: transform .15s ease, background .15s ease;
}

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

.primary {
  background: var(--clay);
  color: #fff;
}

.primary:hover { background: #5e7f65; }

.secondary {
  background: var(--sage-dark);
  color: #fff;
}

.microcopy {
  text-align: center;
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.microcopy.top { text-align: left; }

.section { padding: 74px 0; }

.pain, .roadmap, .receive, .guarantee { background: var(--soft2); }
.problem, .how, .transformation, .difference { background: var(--paper); }

.checklist {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.check {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 18px 18px 42px;
  position: relative;
  color: var(--text);
  font-weight: 750;
  box-shadow: 0 14px 36px rgba(35,30,25,.045);
}

.check:before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--sage-dark);
  font-weight: 900;
}

.cards-four {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card, .feature, .product-card, .compare-card, .step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(35,30,25,.045);
}

.card span {
  display: inline-flex;
  color: var(--sage-dark);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 18px;
}

.card p, .feature p, .product-card p { font-size: 15px; }

.section-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.step b {
  font-size: 20px;
  color: var(--text);
}

.step p { font-size: 15px; }

.cta-block {
  margin-top: 32px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.cta-block span {
  color: var(--muted);
  font-size: 14px;
}

.feature-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature { padding: 18px; }

.feature img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  margin-bottom: 18px;
}

.product-cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 18px;
}

.product-card.main { border-color: rgba(93,111,79,.38); }

.badge {
  display: inline-flex;
  border: 1px solid var(--line);
  color: var(--sage-dark);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.product-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 15px;
}

.compare {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.compare-card ul {
  padding-left: 20px;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.strong-card {
  background: linear-gradient(180deg, #ffffff 0%, #eff7f1 100%);
  border-color: rgba(93,111,79,.35);
}

.final-card {
  background: var(--paper);
  border: 1px solid rgba(93,111,79,.28);
  border-radius: 32px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: center;
  box-shadow: 0 24px 70px rgba(35,30,25,.075);
}

.final-actions { display: grid; gap: 12px; }

.final-price {
  text-align: center;
  font-size: 28px;
  color: var(--text);
  font-weight: 900;
}

.final-price strong {
  font-size: 62px;
  letter-spacing: -0.06em;
}

.disclaimer {
  font-size: 13px;
  padding: 14px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  background: var(--paper);
}

@media (max-width: 920px) {
  .hero-grid, .section-grid, .final-card, .compare {
    grid-template-columns: 1fr;
  }

  .cards-four, .feature-grid, .product-cards, .checklist {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-card { padding: 28px; }
}

@media (max-width: 640px) {
  .hero { padding: 42px 0 34px; }
  .section { padding: 54px 0; }

  .cards-four, .feature-grid, .product-cards, .checklist {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 37px; }
  h2 { font-size: 31px; }

  .subhead, p { font-size: 16px; }

  .microcopy.top { text-align: center; }

  .btn { width: 100%; padding: 16px 20px; }

  .price { text-align: center; }
  .price strong { font-size: 56px; }

  .feature img { height: 220px; }

  .final-price strong { font-size: 54px; }

  .hero-media img { border-radius: 22px; }
}

.product-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  margin-bottom: 18px;
  box-shadow: 0 14px 32px rgba(35,30,25,.055);
}

.product-card.main .product-card-image {
  object-position: center;
}

@media (max-width: 760px) {
  .product-card-image { height: 220px; }
}


.testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbf7 100%);
}

.testimonial-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: var(--paper);
  border: 1px solid rgba(93,111,79,.26);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 16px 42px rgba(35,30,25,.05);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-head img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--soft);
  box-shadow: 0 10px 22px rgba(35,30,25,.08);
  flex: 0 0 auto;
}

.testimonial-head h3 {
  font-size: 18px;
  margin: 0;
}

.testimonial-head span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--sage-dark);
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-card p {
  margin-top: 0;
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 20px;
  }
}
