:root {
  --ink: #17372a;
  --ink-soft: #4d6258;
  --green-950: #004c26;
  --green-900: #075f35;
  --green-800: #167241;
  --green-700: #258150;
  --sage: #a8cfad;
  --sage-soft: #cfe3d2;
  --mint: #eef7f0;
  --white: #ffffff;
  --red: #e3052f;
  --red-hover: #c90028;
  --accent: #bdd21a;
  --accent-hover: #a8bd08;
  --border: rgba(23, 55, 42, 0.15);
  --shadow-card: 0 20px 55px rgba(26, 57, 42, 0.18), 0 4px 14px rgba(26, 57, 42, 0.12);
  --shadow-soft: 0 16px 42px rgba(32, 72, 49, 0.10);
  --container: 1120px;
  --narrow: 730px;
  --reading: 820px;
  --radius: 14px;
  --radius-sm: 9px;
  --font: Avenir, "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font-family: var(--font);
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a,
summary,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(189, 210, 26, 0.72);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--green-800);
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 40px), var(--narrow));
}

.container--reading {
  width: min(calc(100% - 40px), var(--reading));
}

.section {
  padding-block: clamp(68px, 7vw, 112px);
}

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

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

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

.hero {
  position: relative;
  min-height: clamp(780px, 100svh, 930px);
  overflow: hidden;
  background: #d5d8d4;
  isolation: isolate;
}

.hero__ambient {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.85), transparent 35%),
    linear-gradient(180deg, #d9dbd8 0%, #cfceca 72%, #b59f8c 100%);
}

.hero__ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(220, 222, 219, 0.18) 0%, rgba(220, 222, 219, 0.06) 44%, rgba(255, 255, 255, 0) 64%);
}

.hero__media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 49%;
  height: 100%;
  overflow: hidden;
}

.hero__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #d8dbd8 0%, rgba(216, 219, 216, 0.18) 17%, transparent 34%);
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 48%;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 46px 20px;
}

.hero-card {
  width: min(470px, calc(100vw - 40px));
  padding: 23px 24px 18px;
  background: rgba(198, 224, 202, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  transform: translateX(-9vw);
}

.hero-card h1 {
  margin-bottom: 4px;
  color: #143b28;
  font-size: clamp(1.72rem, 2.05vw, 2.12rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.hero-card__subtitle {
  margin-bottom: 8px;
  color: #16803f;
  font-size: clamp(1.62rem, 1.9vw, 1.98rem);
  line-height: 1.13;
  letter-spacing: -0.02em;
}

.hero-card__product {
  width: min(300px, 78%);
  margin: 4px auto 6px;
  filter: drop-shadow(0 18px 14px rgba(37, 71, 47, 0.14));
}

.hero-card__copy {
  font-size: clamp(1.2rem, 1.35vw, 1.45rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.hero-card__copy p {
  margin-bottom: 2px;
}

.hero-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 0;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 8px 20px rgba(227, 5, 47, 0.18);
}

.button--primary:hover {
  background: var(--red-hover);
  box-shadow: 0 12px 24px rgba(227, 5, 47, 0.24);
}

.button--secondary-size {
  min-width: 281px;
}

.button--accent {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(143, 164, 4, 0.2);
}

.button--accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 13px 28px rgba(143, 164, 4, 0.26);
}

.button--full {
  width: 100%;
}

.information {
  padding-block: clamp(62px, 6vw, 92px);
}

.information__grid {
  width: min(calc(100% - 40px), 960px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}

.information__media {
  margin: 0;
  display: grid;
  place-items: center;
}

.information__media img {
  width: min(100%, 330px);
  filter: drop-shadow(0 18px 18px rgba(26, 54, 39, 0.09));
}

.information__content h2,
.section-heading h2,
.ingredients h2 {
  color: #315c46;
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.benefit-list,
.ingredient-list {
  margin: 24px 0 0;
  padding-left: 1.15rem;
}

.benefit-list li,
.ingredient-list li {
  margin-bottom: 12px;
  padding-left: 2px;
  color: #55675e;
  line-height: 1.4;
}

.forest-transition {
  --forest-product-width: clamp(290px, 25vw, 390px);
  position: relative;
  height: clamp(315px, 24vw, 390px);
  overflow: visible;
  background-color: #547b4d;
  background-image: image-set(
    url("../images/forest-1920.avif") type("image/avif") 1x,
    url("../images/forest-1920.webp") type("image/webp") 1x
  );
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  isolation: isolate;
}

.forest-transition__veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 44, 19, 0.02), transparent 60%),
    linear-gradient(180deg, transparent 72%, rgba(57, 103, 65, 0.12));
  pointer-events: none;
}

.forest-transition__product {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -170px;
  width: var(--forest-product-width);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 17px rgba(24, 58, 31, 0.2));
}

.benefits {
  padding-top: clamp(210px, 16vw, 255px);
  padding-bottom: clamp(72px, 7vw, 110px);
}

.section-heading--center {
  text-align: center;
}

.section-heading--center p {
  max-width: 650px;
  margin: 16px auto 0;
  color: #435f50;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.benefit-card {
  min-height: 230px;
  padding: 24px 22px 20px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.47);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(39, 79, 52, 0.04);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 32px rgba(39, 79, 52, 0.09);
}

.benefit-card img {
  width: 112px;
  border-radius: 50%;
}

.benefit-card h3 {
  max-width: 260px;
  margin: 14px 0 0;
  color: #3f5f4e;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.15;
}

.ingredients {
  padding-block: clamp(48px, 5vw, 72px);
}

.ingredients p,
.ingredients li {
  font-size: 0.98rem;
}

.ingredients strong {
  color: #8ba800;
}

.cta-band {
  padding-block: clamp(46px, 5vw, 68px);
  color: var(--white);
  background: linear-gradient(100deg, #004d29 0%, #08733c 100%);
}

.cta-band__content {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 400;
}

.faq {
  padding-bottom: clamp(46px, 4vw, 68px);
}

.section-heading > p {
  margin-top: 4px;
  color: #3da269;
  font-size: 1.22rem;
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f7f8f7;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item[open] {
  border-color: rgba(37, 129, 80, 0.24);
  box-shadow: 0 10px 26px rgba(35, 82, 53, 0.08);
}

.faq-item summary {
  min-height: 54px;
  padding: 16px 48px 16px 17px;
  display: flex;
  align-items: center;
  position: relative;
  color: #33473d;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--green-800);
  font-size: 1.35rem;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq-item__content {
  padding: 0 17px 18px;
  color: #5b6c63;
}

.faq-item__content p {
  margin-bottom: 0;
}

.faq__note {
  margin-top: 38px;
  color: #69766f;
  font-size: 0.92rem;
}

.order {
  padding-top: 28px;
  padding-bottom: clamp(86px, 9vw, 140px);
}

.order__shell {
  width: min(calc(100% - 40px), 940px);
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(34px, 5vw, 62px);
  align-items: center;
  border: 1px solid rgba(33, 79, 51, 0.10);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f7faf8 100%);
  box-shadow: var(--shadow-soft);
}

.offer {
  text-align: center;
}

.offer__product {
  width: min(100%, 330px);
  margin-inline: auto;
  filter: drop-shadow(0 22px 18px rgba(26, 58, 38, 0.13));
}

.offer__availability {
  margin: 5px 0 4px;
  color: #9bb100;
  font-size: 0.92rem;
  font-weight: 700;
}

.offer h2 {
  margin-bottom: 14px;
  color: #315c46;
  font-size: 1.45rem;
  font-weight: 450;
}

.price {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 14px 0 16px;
}

.price > div {
  display: grid;
  gap: 2px;
}

.price span {
  color: #6f7c75;
  font-size: 0.8rem;
}

.price del {
  color: #7b817e;
  font-size: 1.18rem;
}

.price strong {
  color: #9daf00;
  font-size: 1.55rem;
}

.offer__disclaimer {
  margin: 0 auto;
  max-width: 410px;
  color: #69766f;
  font-size: 0.78rem;
  line-height: 1.45;
}

.order-form {
  padding: clamp(22px, 3vw, 31px);
  background: var(--white);
  border: 1px solid rgba(32, 78, 50, 0.11);
  border-radius: 13px;
  box-shadow: 0 13px 38px rgba(36, 77, 51, 0.08);
}

.order-form__header {
  margin-bottom: 20px;
}

.eyebrow {
  margin-bottom: 3px;
  color: #94aa00;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.order-form h3 {
  margin-bottom: 0;
  color: #315c46;
  font-size: 1.42rem;
  font-weight: 500;
}

.form-field {
  margin-bottom: 15px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  color: #475b51;
  font-size: 0.9rem;
  font-weight: 650;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: #233f31;
  background: #fbfcfb;
  border: 1px solid #cdd8d1;
  border-radius: 7px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-field input:focus,
.form-field select:focus {
  background: var(--white);
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(37, 129, 80, 0.11);
}

.form-field input:user-invalid {
  border-color: #c83a4b;
}

.order-form__privacy {
  margin: 13px 0 0;
  color: #7a857f;
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

.site-footer {
  padding: 34px 0 calc(34px + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.72);
  background: #00572e;
}

.site-footer__content {
  text-align: center;
  font-size: 0.82rem;
}

.site-footer p {
  margin-bottom: 0;
}

.mobile-order-bar {
  position: fixed;
  z-index: 50;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  min-height: 58px;
  padding: 9px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--white);
  background: rgba(0, 87, 46, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(5, 43, 22, 0.32);
  text-decoration: none;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(calc(100% + 24px));
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-order-bar span {
  font-size: 0.76rem;
  opacity: 0.78;
}

.mobile-order-bar strong {
  font-size: 0.94rem;
  white-space: nowrap;
}

.mobile-order-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(0, 87, 46, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(4, 41, 22, 0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.back-to-top:hover {
  background: var(--green-800);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal-pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.2, .65, .25, 1);
}

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

/* Renderização diferida das seções inferiores, reduzindo trabalho inicial. */
@supports (content-visibility: auto) {
  .benefits,
  .ingredients,
  .faq,
  .order,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-bottom: 28px;
    background: #d8dcda;
  }

  .hero__ambient {
    background: linear-gradient(180deg, #dbe0dd 0%, #d1d5d1 70%, #c2b2a5 100%);
  }

  .hero__media {
    position: relative;
    z-index: 1;
    width: 100%;
    height: min(52svh, 500px);
  }

  .hero__media::before {
    background: linear-gradient(180deg, transparent 64%, #d3d7d3 100%);
  }

  .hero__media img {
    object-position: 52% 23%;
  }

  .hero__inner {
    min-height: 0;
    margin-top: -48px;
    padding: 0 16px;
  }

  .hero-card {
    width: min(100%, 520px);
    padding: 24px 22px 22px;
    transform: none;
    background: rgba(201, 226, 205, 0.97);
    backdrop-filter: none;
  }

  .hero-card h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
  }

  .hero-card__subtitle {
    font-size: clamp(1.45rem, 6.4vw, 1.92rem);
  }

  .hero-card__product {
    width: min(270px, 72%);
  }

  .hero-card__copy {
    font-size: clamp(1.08rem, 4.8vw, 1.28rem);
  }

  .hero-card__actions,
  .hero-card__actions .button {
    width: 100%;
  }

  .button--secondary-size {
    min-width: 0;
  }

  .information__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .information__media img {
    width: min(72vw, 320px);
  }

  .forest-transition {
    height: 285px;
    background-image: image-set(
      url("../images/forest-960.avif") type("image/avif") 1x,
      url("../images/forest-960.webp") type("image/webp") 1x
    );
    background-attachment: scroll;
    background-position: 48% center;
  }

  .forest-transition__product {
    bottom: -128px;
    width: min(260px, 66vw);
  }

  .benefits {
    padding-top: 172px;
  }

  .order__shell {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), 610px);
  }

  .order-form {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .container--narrow,
  .container--reading {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 66px;
  }

  .information {
    padding-block: 58px 70px;
  }

  .information__content h2,
  .section-heading h2,
  .ingredients h2 {
    font-size: 1.65rem;
  }

  .benefit-list li,
  .ingredient-list li {
    margin-bottom: 15px;
  }

  .benefit-grid {
    gap: 11px;
  }

  .benefit-card {
    min-height: 194px;
    padding: 18px 12px 16px;
  }

  .benefit-card img {
    width: 88px;
  }

  .benefit-card h3 {
    font-size: 1.02rem;
  }

  .ingredients {
    padding-block: 52px;
  }

  .faq {
    padding-bottom: 42px;
  }

  .order {
    padding-top: 18px;
    padding-bottom: 94px;
  }

  .order__shell {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .offer__product {
    width: min(78vw, 310px);
  }

  .mobile-order-bar {
    display: flex;
  }

  .back-to-top {
    display: none;
  }
}

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

  .benefit-card {
    min-height: 180px;
  }

  .mobile-order-bar {
    left: 8px;
    right: 8px;
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   V9 — refinements: four-nutrient section, mobile readability,
   forest/product layering and conversion-focused spacing.
   ========================================================= */

.nutrients-intro {
  padding-block: clamp(58px, 6.2vw, 92px);
  background: var(--sage);
}

.nutrients-intro__content {
  width: min(calc(100% - 40px), 920px);
  text-align: center;
}

.nutrients-intro h2 {
  max-width: 880px;
  margin: 0 auto 24px;
  color: #173f2c;
  font-size: clamp(1.82rem, 2.6vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.13;
}

.nutrients-intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #284c39;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
}

.nutrients-cta-strip {
  position: relative;
  z-index: 8;
  min-height: 58px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(23, 55, 42, 0.08);
  box-shadow: 0 9px 22px rgba(21, 62, 40, 0.07);
}

.nutrients-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.nutrients-cta-strip__inner > span {
  color: #53675c;
  font-size: 0.9rem;
}

.button--compact {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.88rem;
}

/* Keep the overlapping pack above the following sage section. */
.forest-transition {
  z-index: 3;
}

.forest-transition__product {
  z-index: 5;
}

.benefits {
  position: relative;
  z-index: 1;
}

/* Better contrast for the lime action without changing the brand palette. */
.button--accent {
  color: #17372a;
}

@supports (content-visibility: auto) {
  .benefits {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }
}

@media (max-width: 900px) {
  .nutrients-intro {
    padding-block: 56px;
  }

  .nutrients-intro__content {
    width: min(calc(100% - 34px), 760px);
  }

  .forest-transition {
    z-index: 3;
    overflow: visible;
  }

  .forest-transition__product {
    bottom: -142px;
    width: min(292px, 75vw);
  }

  .benefits {
    padding-top: 198px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 18px;
    line-height: 1.65;
  }

  .hero-card {
    padding: 25px 21px 24px;
  }

  .hero-card h1 {
    font-size: clamp(2rem, 8.4vw, 2.35rem);
    line-height: 1.12;
  }

  .hero-card__subtitle {
    font-size: clamp(1.64rem, 7vw, 2rem);
    line-height: 1.18;
  }

  .hero-card__copy {
    font-size: 1.18rem;
    line-height: 1.48;
  }

  .hero-card__copy p + p {
    margin-top: 7px;
  }

  .button {
    min-height: 54px;
    padding: 13px 17px;
    font-size: 1rem;
  }

  .nutrients-intro {
    padding-block: 52px 56px;
  }

  .nutrients-intro h2 {
    margin-bottom: 24px;
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .nutrients-intro p {
    font-size: 1.08rem;
    line-height: 1.67;
  }

  .nutrients-cta-strip {
    display: none;
  }

  .information {
    padding-block: 62px 76px;
  }

  .information__content h2,
  .section-heading h2,
  .ingredients h2 {
    font-size: 1.86rem;
    line-height: 1.2;
  }

  .benefit-list,
  .ingredient-list {
    padding-left: 1.25rem;
  }

  .benefit-list li,
  .ingredient-list li {
    margin-bottom: 18px;
    font-size: 1.06rem;
    line-height: 1.62;
  }

  .forest-transition {
    height: 300px;
    background-position: 43% center;
  }

  .forest-transition__product {
    bottom: -137px;
    width: min(300px, 78vw);
    filter: drop-shadow(0 20px 14px rgba(24, 58, 31, 0.2));
  }

  .benefits {
    padding-top: 205px;
    padding-bottom: 78px;
  }

  .section-heading--center p {
    margin-top: 20px;
    font-size: 1.12rem;
    line-height: 1.68;
  }

  .benefit-grid {
    margin-top: 38px;
  }

  .benefit-card {
    min-height: 210px;
    padding: 20px 14px 18px;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
    line-height: 1.28;
  }

  .ingredients p,
  .ingredients li {
    font-size: 1.06rem;
    line-height: 1.65;
  }

  .cta-band h2 {
    font-size: 1.9rem;
  }

  .section-heading > p {
    font-size: 1.2rem;
  }

  .faq-item summary {
    min-height: 62px;
    padding-block: 18px;
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .faq-item__content {
    padding-bottom: 20px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .faq__note {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .offer h2,
  .order-form h3 {
    font-size: 1.58rem;
  }

  .offer__availability,
  .form-field label {
    font-size: 1rem;
  }

  .offer__disclaimer,
  .order-form__privacy {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .form-field input,
  .form-field select {
    min-height: 54px;
    font-size: 16px;
  }

  .mobile-order-bar {
    min-height: 64px;
    padding: 10px 18px;
  }

  .mobile-order-bar span {
    font-size: 0.82rem;
  }

  .mobile-order-bar strong {
    font-size: 1rem;
  }
}

@media (max-width: 390px) {
  .forest-transition__product {
    width: min(286px, 79vw);
    bottom: -130px;
  }

  .benefits {
    padding-top: 190px;
  }
}

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

  .benefit-card {
    min-height: 142px;
    grid-template-columns: 92px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    align-content: center;
    column-gap: 18px;
    padding: 19px 20px;
    text-align: left;
  }

  .benefit-card img {
    width: 92px;
    grid-column: 1;
  }

  .benefit-card h3 {
    grid-column: 2;
    max-width: none;
    margin: 0;
    font-size: 1.16rem;
  }
}

@media (max-width: 370px) {
  .benefit-card {
    grid-template-columns: 78px minmax(0, 1fr);
    column-gap: 14px;
    padding-inline: 16px;
  }

  .benefit-card img {
    width: 78px;
  }
}
