:root {
  --ink: #172a26;
  --ink-deep: #0f211f;
  --ink-soft: #29433e;
  --green: #1d403a;
  --green-light: #315e55;
  --cream: #f8f4ec;
  --sand: #eee5d6;
  --paper: #fffdf9;
  --gold: #c69958;
  --gold-soft: #e5c994;
  --rose: #a96152;
  --white: #fffefb;
  --border: rgba(23, 42, 38, 0.13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(17, 35, 32, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-deep);
  font-family: var(--serif);
  line-height: 1.12;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

em {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-style: italic;
}

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

.narrow {
  max-width: 850px;
}

.section {
  padding: 116px 0;
}

.section-dark {
  background: var(--ink-deep);
  color: rgba(255, 254, 251, 0.84);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-sand {
  background: var(--sand);
}

.centered {
  text-align: center;
}

.eyebrow {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.centered .eyebrow {
  justify-content: center;
}

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

.eyebrow-icon {
  font-size: 0.75rem;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-inline: auto;
}

.section-heading h2,
.intro-copy h2 {
  margin-bottom: 20px;
}

.section-heading p,
.intro-copy > p:last-child,
.section-lead {
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.75;
}

.section-dark .section-heading p {
  color: rgba(255, 254, 251, 0.72);
}

.header-inner,
.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  line-height: 1;
}

.brand-mark {
  align-items: center;
  background: rgba(229, 201, 148, 0.12);
  border: 1px solid rgba(229, 201, 148, 0.5);
  border-radius: 50%;
  color: var(--gold-soft);
  display: flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand-mark svg {
  fill: none;
  height: 25px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 25px;
}

.brand strong,
.brand b {
  display: block;
}

.brand strong {
  color: var(--gold-soft);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.27em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.brand b {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-small {
  padding: 11px 19px;
}

.button-large {
  font-size: 0.96rem;
  padding: 18px 25px;
}

.button-outline {
  border-color: rgba(229, 201, 148, 0.55);
  color: var(--gold-soft);
}

.button-outline:hover {
  background: rgba(229, 201, 148, 0.12);
}

.button-primary {
  background: var(--gold-soft);
  box-shadow: 0 10px 30px rgba(198, 153, 88, 0.2);
  color: #20332f;
}

.button-primary:hover {
  background: #f0d89f;
  box-shadow: 0 14px 36px rgba(198, 153, 88, 0.3);
}

.button-full {
  width: 100%;
}

.hero {
  min-height: 635px;
  overflow: hidden;
  padding: 100px 0 80px;
  position: relative;
}

.hero::before {
  background-image: linear-gradient(rgba(229, 201, 148, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 201, 148, 0.065) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 78%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.hero-glow {
  background: rgba(198, 153, 88, 0.16);
  border-radius: 50%;
  display: none;
  filter: blur(90px);
  height: 330px;
  position: absolute;
  right: -60px;
  top: 120px;
  width: 330px;
}

.hero-grid {
  display: block;
  max-width: 1040px;
  position: relative;
  text-align: center;
}

.hero-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.hero-copy h1 {
  margin-bottom: 25px;
  max-width: 990px;
}

.hero-lead {
  color: rgba(255, 254, 251, 0.79);
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 27px;
  max-width: 670px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 24px;
}

.hero-points span {
  align-items: center;
  color: rgba(255, 254, 251, 0.76);
  display: flex;
  font-size: 0.83rem;
  gap: 7px;
}

.hero-points svg,
.secure-line svg {
  display: none;
}

.hero-visual {
  display: none;
  position: relative;
}

.hero-card {
  background: var(--sand);
  border: 1px solid rgba(229, 201, 148, 0.5);
  border-radius: 190px 190px 18px 18px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  padding: 12px;
  transform: rotate(1.5deg);
}

.hero-card img {
  border-radius: 180px 180px 10px 10px;
  height: 620px;
  object-fit: cover;
  width: 100%;
}

.hero-badge {
  align-items: center;
  background: var(--white);
  border-radius: 13px;
  bottom: 42px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: flex;
  gap: 12px;
  left: -45px;
  max-width: 245px;
  padding: 15px 17px;
  position: absolute;
}

.hero-badge strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.hero-badge span {
  font-size: 0.72rem;
  line-height: 1.35;
}

.trust-strip {
  background: var(--green);
  color: rgba(255, 254, 251, 0.7);
}

.trust-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(2, minmax(0, auto));
  justify-content: center;
}

.trust-grid div {
  align-items: center;
  display: flex;
  gap: 17px;
  min-height: 112px;
  padding: 18px 0;
}

.trust-grid strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1;
  white-space: nowrap;
}

.trust-grid span {
  font-size: 0.8rem;
  line-height: 1.4;
}

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

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

.intro-copy .eyebrow {
  justify-content: center;
}

.pain-layout {
  display: grid;
  gap: 55px;
  grid-template-columns: 590px 490px;
  justify-content: center;
  margin-top: 38px;
}

.mini-title {
  display: none;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  padding: 8px 0 8px 31px;
  position: relative;
}

.check-list li::before {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-size: 0.7rem;
  height: 18px;
  justify-content: center;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 14px;
  width: 18px;
}

.check-list-pain li::before {
  border: 1px solid rgba(169, 97, 82, 0.45);
  color: var(--rose);
  content: "×";
}

.check-list-positive li::before {
  background: rgba(49, 94, 85, 0.12);
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.quote-card {
  background: var(--green);
  border-radius: 0;
  box-shadow: none;
  color: rgba(255, 254, 251, 0.86);
  padding: 43px;
}

.quote-mark {
  color: var(--gold-soft);
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  height: 60px;
  line-height: 1;
}

.quote-card p {
  font-family: var(--serif);
  font-size: 1.53rem;
  line-height: 1.27;
}

.quote-label {
  border-top: 0;
  color: var(--gold-soft);
  display: block;
  font-size: 0.83rem;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 12px;
  padding-top: 0;
  text-transform: none;
}

.mechanism-grid {
  align-items: center;
  display: grid;
  gap: 63px;
  grid-template-columns: 0.92fr 1.08fr;
}

.mechanism-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: 0 18px 45px rgba(23, 42, 38, 0.08);
  padding: 39px 42px;
}

.card-kicker {
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.mechanism-card h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.mechanism-emphasis {
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0;
}

.method-section {
  overflow: hidden;
  position: relative;
}

.method-section::after {
  border: 1px solid rgba(229, 201, 148, 0.12);
  border-radius: 50%;
  content: "";
  height: 680px;
  left: -300px;
  position: absolute;
  top: 130px;
  width: 680px;
}

.method-section .container {
  position: relative;
  z-index: 1;
}

.big-idea {
  background: rgba(255, 254, 251, 0.055);
  border: 1px solid rgba(229, 201, 148, 0.21);
  margin: 0 auto 57px;
  max-width: 760px;
  padding: 30px;
  text-align: center;
}

.big-idea p,
.big-idea strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.25;
  margin: 7px 0 0;
}

.big-idea strong {
  color: var(--gold-soft);
}

.steps-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
  margin-inline: auto;
  max-width: 1120px;
}

.step-card {
  border: 1px solid rgba(229, 201, 148, 0.48);
  min-height: 216px;
  padding: 20px 18px;
}

.step-card span {
  color: var(--gold-soft);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 17px;
}

.step-card h3 {
  color: var(--gold-soft);
  font-size: 1.48rem;
  margin-bottom: 12px;
}

.step-card p {
  color: rgba(255, 254, 251, 0.66);
  font-size: 0.87rem;
  line-height: 1.65;
}

.statement {
  background: var(--gold-soft);
  color: var(--ink);
  padding: 41px 0;
  text-align: center;
}

.statement p,
.statement strong {
  display: inline;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 3rem);
  letter-spacing: -0.045em;
}

.statement strong {
  color: var(--green);
}

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

.labs-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.labs-section .eyebrow {
  justify-content: center;
}

.labs-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
}

.lab-card {
  background: var(--cream);
  border: 1px solid var(--border);
  min-height: 175px;
  padding: 25px 23px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.lab-card:hover {
  border-color: rgba(198, 153, 88, 0.7);
  box-shadow: 0 16px 30px rgba(23, 42, 38, 0.08);
  transform: translateY(-5px);
}

.lab-number {
  color: rgba(29, 64, 58, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  position: absolute;
  right: 22px;
  top: 20px;
}

.lab-card h3 {
  font-size: 1.36rem;
  margin-bottom: 12px;
}

.lab-card p {
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.58;
  margin-bottom: 0;
}

.lab-card-final {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.lab-card-final p {
  color: rgba(255, 254, 251, 0.8);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.lab-card-final strong {
  color: var(--gold-soft);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transformation-grid {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 0.88fr;
}

.transformation-grid h2 {
  margin-bottom: 0;
}

.author-section {
  background: var(--paper);
  padding: 47px 0 0;
}

.author-grid {
  align-items: end;
  display: grid;
  gap: clamp(54px, 8vw, 112px);
  grid-template-columns: minmax(320px, 0.94fr) minmax(430px, 1.06fr);
}

.author-photo {
  background: transparent;
  box-shadow: none;
  padding: 0;
  position: relative;
}

.author-photo img {
  margin-inline: auto;
  max-height: 474px;
  object-fit: contain;
  object-position: bottom center;
  width: min(100%, 455px);
}

.author-photo-caption {
  display: none;
}

.author-photo-caption strong {
  font-family: var(--serif);
  font-size: 1.26rem;
}

.author-photo-caption span {
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.author-copy h2 {
  font-size: clamp(2.28rem, 4vw, 3.55rem);
  line-height: 0.98;
  margin-bottom: 17px;
  max-width: 610px;
}

.author-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.55;
  max-width: 604px;
}

.author-copy {
  padding: 0 0 91px;
}

.audience-grid {
  display: grid;
  gap: 19px;
  grid-template-columns: 1fr 1fr;
}

.audience-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.audience-section .eyebrow {
  justify-content: center;
}

.audience-card {
  border: 1px solid rgba(229, 201, 148, 0.17);
  padding: 34px 37px;
}

.audience-card-yes {
  background: rgba(255, 254, 251, 0.08);
}

.audience-card-no {
  background: rgba(0, 0, 0, 0.09);
}

.audience-card h3 {
  color: var(--gold-soft);
  margin-bottom: 20px;
}

.audience-card h3 span {
  font-family: var(--sans);
  margin-right: 6px;
}

.audience-card ul {
  color: rgba(255, 254, 251, 0.72);
  margin: 0;
  padding-left: 20px;
}

.audience-card li {
  padding: 4px 0;
}

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

.objection-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.objection-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 28px;
}

.objection-card h3 {
  color: var(--green);
  margin-bottom: 12px;
}

.objection-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.offer-section {
  background: var(--sand);
}

.offer-wrap {
  align-items: center;
  display: grid;
  gap: 78px;
  grid-template-columns: 1fr minmax(350px, 0.7fr);
}

.offer-intro h2 {
  margin-bottom: 18px;
}

.offer-intro > p {
  color: var(--ink-soft);
}

.price-card {
  background: var(--green);
  box-shadow: var(--shadow);
  color: rgba(255, 254, 251, 0.75);
  padding: 38px;
}

.price-label {
  border-bottom: 1px solid rgba(229, 201, 148, 0.24);
  color: var(--gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
  padding-bottom: 19px;
  text-transform: uppercase;
}

.price-from {
  color: rgba(255, 254, 251, 0.58);
  font-size: 0.82rem;
  text-decoration: line-through;
}

.price {
  margin: 5px 0 0;
}

.price span {
  display: block;
  font-size: 0.82rem;
}

.price strong {
  color: var(--white);
  display: block;
  font-family: var(--serif);
  font-size: 3.8rem;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.price-cash {
  color: var(--gold-soft);
  font-size: 0.88rem;
  margin-bottom: 23px;
}

.secure-line {
  align-items: center;
  display: flex;
  font-size: 0.68rem;
  gap: 7px;
  justify-content: center;
  margin: 16px 0 0;
}

.secure-line svg {
  height: 14px;
  width: 14px;
}

.guarantee-section {
  background: var(--paper);
  padding: 72px 0;
}

.guarantee-card {
  align-items: center;
  background: var(--green);
  color: rgba(255, 254, 251, 0.74);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1120px;
  overflow: hidden;
  padding: 30px;
  text-align: center;
}

.guarantee-card .eyebrow {
  color: var(--gold-soft);
  font-size: 11px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 0;
}

.guarantee-card h2 {
  color: var(--white);
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1.18;
  margin-bottom: 0;
}

.guarantee-card > p:last-child {
  color: var(--white);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 100%;
  text-align: center;
}

.guarantee-seal {
  display: none;
}

.guarantee-seal svg {
  fill: none;
  height: 95px;
  stroke: var(--gold-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 95px;
}

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.78fr 1.22fr;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-list summary {
  color: var(--green);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 700;
  list-style: none;
  padding-right: 29px;
  position: relative;
}

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

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 400;
  position: absolute;
  right: 2px;
  top: -3px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin: 13px 0 0;
  padding-right: 27px;
}

.faq-list details p + p {
  margin-top: 10px;
}

.final-cta {
  padding: 105px 0;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.3rem);
  margin-bottom: 19px;
}

.final-cta p {
  color: rgba(255, 254, 251, 0.7);
  margin-bottom: 30px;
}

.site-footer {
  background: #0a1917;
  color: rgba(255, 254, 251, 0.52);
  text-align: center;
}

.footer-inner {
  align-items: center;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-height: 108px;
}

.footer-inner strong {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-inner p {
  font-size: 0.74rem;
  margin: 0;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1020px) {
  h1 {
    font-size: clamp(3.15rem, 6vw, 4.8rem);
  }

  .hero-grid {
    gap: 43px;
    grid-template-columns: 1.08fr 0.8fr;
  }

  .hero-card img {
    height: 540px;
  }

  .trust-grid div {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 29px;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
    padding-bottom: 67px;
  }

  .container {
    padding-inline: 20px;
  }

  .section {
    padding: 80px 0;
  }

  h1 {
    font-size: clamp(3.05rem, 14vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-inner .button {
    display: none;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .brand-mark svg {
    height: 21px;
    width: 21px;
  }

  .brand b {
    font-size: 1.17rem;
  }

  .hero {
    min-height: 0;
    padding: 61px 0 65px;
  }

  .hero-grid,
  .pain-layout,
  .mechanism-grid,
  .transformation-grid,
  .author-grid,
  .audience-grid,
  .objection-grid,
  .offer-wrap,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .author-section {
    padding-top: 47px;
  }

  .author-grid {
    align-items: center;
  }

  .hero-grid {
    gap: 37px;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-copy .button {
    width: 100%;
  }

  .hero-points {
    gap: 9px 15px;
  }

  .hero-card {
    border-radius: 125px 125px 10px 10px;
    margin: 0 auto;
    max-width: 390px;
  }

  .hero-card img {
    border-radius: 118px 118px 5px 5px;
    height: auto;
  }

  .hero-badge {
    bottom: 24px;
    left: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .trust-grid div,
  .trust-grid div:first-child {
    align-items: center;
    border: 0;
    border-bottom: 1px solid rgba(229, 201, 148, 0.18);
    flex-direction: row;
    min-height: 72px;
    padding: 11px 0;
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .trust-grid strong {
    min-width: 92px;
  }

  .pain-layout {
    gap: 29px;
    margin-top: 41px;
  }

  .quote-card {
    padding: 31px;
  }

  .mechanism-grid,
  .author-grid,
  .offer-wrap,
  .faq-grid {
    gap: 37px;
  }

  .mechanism-card {
    padding: 30px 27px;
  }

  .mechanism-card h3 {
    font-size: 1.65rem;
  }

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

  .step-card {
    align-items: baseline;
    display: grid;
    gap: 11px;
    grid-template-columns: 35px 1fr;
    padding-top: 17px;
  }

  .step-card span,
  .step-card h3 {
    margin-bottom: 0;
  }

  .step-card p {
    grid-column: 2;
  }

  .statement p,
  .statement strong {
    display: block;
  }

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

  .lab-card {
    min-height: auto;
  }

  .lab-card-final {
    min-height: 210px;
  }

  .author-photo-caption {
    bottom: -18px;
    left: 18px;
    right: -8px;
  }

  .author-copy {
    margin-top: 16px;
    padding-bottom: 0;
  }

  .author-photo img {
    max-height: 430px;
  }

  .audience-card {
    padding: 27px;
  }

  .price-card {
    padding: 30px 24px;
  }

  .price strong {
    font-size: 3.25rem;
  }

  .guarantee-section {
    padding: 56px 0;
  }

  .guarantee-card {
    align-items: center;
    gap: 10px;
    padding: 30px 25px;
    text-align: center;
  }

  .guarantee-seal svg {
    height: 67px;
    width: 67px;
  }

  .guarantee-card h2 {
    font-size: 26px;
  }

  .footer-inner {
    align-items: start;
    flex-direction: column;
    gap: 17px;
    justify-content: center;
    padding-block: 26px;
  }

  .mobile-cta {
    align-items: center;
    background: var(--gold-soft);
    bottom: 0;
    box-shadow: 0 -7px 25px rgba(15, 33, 31, 0.2);
    color: var(--green);
    display: flex;
    font-size: 0.86rem;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    left: 0;
    min-height: 67px;
    padding: 12px 20px;
    position: fixed;
    right: 0;
    text-align: center;
    z-index: 30;
  }
}

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