/* ============================================================
   Legacy Meds home — design system replicated from glp1.medvi.org
   Fonts: Red Hat Text / Red Hat Display
   ============================================================ */

:root {
  --ink: #242220;
  --ink-soft: #38312c;
  --ink-mute: #7a7672;
  --gray: #a39e99;
  --green: #2e936f;
  --gold: #b59562;
  --gold-a: #e8952e;
  --gold-b: #e8c82e;
  --sand: #f7f4f0;
  --card-sand: #faf9f7;
  --mint: #f1f5e9;
  --cream: #fff9f0;
  --track: #e5e5e5;
  --hairline: #eceae6;
  --font-text: "Red Hat Text", sans-serif;
  --font-display: "Red Hat Display", sans-serif;
  --container: 1120px;
  --pad: 30px;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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

.desktop-hidden {
  display: none;
}

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

button {
  font-family: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.container {
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.text-green {
  color: var(--green);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  padding: 0 30px;
  border-radius: 500px;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background-color 0.25s ease;
}

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

.btn--charcoal {
  background: var(--ink);
}

.btn--forest {
  background: var(--green);
  padding: 0 40px;
}

.btn--gold {
  background: linear-gradient(158deg, var(--gold-a) 0%, var(--gold-b) 100%);
  padding: 0 40px;
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(36, 34, 32, 0.25);
  color: var(--ink);
}

/* ---------- Check icons ---------- */

.check-ico {
  display: inline-flex;
  flex: none;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}

.check-ico::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5.5px;
  width: 7px;
  height: 4.5px;
  border-left: 1.8px solid #fff;
  border-bottom: 1.8px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Promo bar ---------- */

.promo-bar {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  z-index: 50;
}

.promo-bar p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  padding: 0 16px;
}

.promo-bar span {
  color: var(--green);
  font-weight: 700;
}

/* ---------- Nav ---------- */

.site-nav {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 40;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-nav.is-fixed {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--hairline);
}

.site-nav__content {
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__logo img {
  height: 40px;
  width: auto;
}

.site-nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px 0 12px 12px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

/* ---------- Drawer ---------- */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 90;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 2vh;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  max-height: 95vh;
  background: #fff;
  border-radius: 20px 0 0 20px;
  padding: 26px 34px 30px;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.drawer__logo {
  height: 35px;
  width: auto;
  margin-left: -8px;
}

.drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
}

.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f9f8f8;
}

.drawer__nav a:last-child {
  border-bottom: 0;
}

.drawer__nav svg {
  width: 7px;
  height: 13px;
  opacity: 0.85;
}

.drawer__products {
  display: flex;
  gap: 12px;
  padding: 18px 0 8px;
  border-top: 2px solid #e8e7e6;
  overflow-x: scroll;
  cursor: grab;
  min-height: 310px;
  margin-top: 10px;
}
.drawer__products::-webkit-scrollbar {
  display: none;
}

.drawer-card {
  position: relative;
  /* background: var(--sand); */
  border-radius: 16px;
  padding: 16px 14px 18px;
  text-align: center;
  min-width: 200px;
}
.drawer-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background: var(--sand);
  z-index: -1;
}
.drawer-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 11px;
  font-weight: 500;
}

.drawer-card__badge--green {
  background: #c8ecd2;
  color: #1f4633;
}

.drawer-card img {
  height: 190px;
  width: 100%;
  object-fit: contain;
  margin: 14px 0 4px;
  border-radius: 10px;
}

.drawer-card strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

.drawer-card em {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin-top: 3px;
}

.drawer__links {
  display: flex;
  flex-direction: column;
  padding: 10px 0 18px;
}

.drawer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
}

.drawer__cta {
  width: 100%;
  height: 48px;
  margin-top: auto;
  padding: 14px 20px;
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(#ecf1ed 0%, #ffffff 100%);
  padding-top: 90px;
  overflow: hidden;
}

.hero__content {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__join {
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 25px;
  text-align: center;
}

.hero__headline {
  margin-top: 18px;
  max-width: 690px;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -1px;
  font-weight: 600;
  text-align: center;
  opacity: 0.5;
}

.hero__headline span {
  color: var(--green);
}

.check-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.check-list p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.hero__content .btn--forest {
  margin-top: 36px;
}

.hero__grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 66px;
  padding: 0 var(--pad);
}

.hero__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 190px;
  flex: none;
}

.hero__col:first-child,
.hero__col:last-child {
  width: 220px;
}

.hero__col img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* ---------- Section intro (split) ---------- */

.intro-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 0 8px;
}

.intro-split h3,
.weight__intro h3,
.metabolism__copy h3,
.stats__head h3,
.journey__intro h3,
.support__copy h3,
.change__head h3,
.faq h3.reveal,
.guarantee__copy h3 {
  font-size: 33px;
  line-height: 36px;
  letter-spacing: -0.6px;
  font-weight: 600;
}

.intro-split > h3 {
  max-width: 520px;
}

.intro-split > p,
.intro-split > div {
  max-width: 400px;
}

.intro-split p {
  font-size: 14px;
  line-height: 22.4px;
}

.intro-split .btn {
  margin-top: 24px;
}

/* ---------- Products ---------- */

.products {
  padding: 160px 0 90px;
}
@media all and (min-width: 1900px) {
  #products {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.product-slider {
  display: flex;
  gap: 20px;
  margin-top: 46px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding: 0 max(var(--pad), calc((100vw - var(--container)) / 2));
  scrollbar-width: none;
  cursor: grab;
  padding-top: 70px;
  margin-left: 25px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.product-card {
  flex: none;
  width: 375px;
  min-height: 560px;
  border-radius: 20px;
  background: var(--card-sand);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.product-card__media {
  height: 315px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 34px 34px 0;
  position: relative;
  overflow: visible;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.product-card__media::after {
  content: "";
  position: absolute;
  top: -0;
  left: 0;
  width: 100%;
  height: 80%;
  background: #f1f5e9;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.product-card:nth-of-type(2) .product-card__media::after {
  background: #f1f5e9;
}
.product-card:nth-of-type(3) .product-card__media::after {
  background: #eeece7;
}
.product-card:nth-of-type(4) .product-card__media::after {
  background: #e9f5f5;
}
.product-card__media img {
  max-height: 360px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 28px rgba(36, 34, 32, 0.18));
}

.product-card__copy {
  padding: 46px 30px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.product-card__price {
  font-size: 15px;
  letter-spacing: -0.15px;
  line-height: 1.5;
}

.product-card__price--muted {
  color: var(--ink-mute);
}

.product-card__copy h3 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.44px;
  font-weight: 600;
}

.product-card__copy > p:not(.product-card__price) {
  font-size: 14px;
  line-height: 22.4px;
}

.product-card__copy .btn {
  margin-top: auto;
  width: 100%;
  max-width: 240px;
}

/* ---------- Bottle / quotes ---------- */

.bottle {
  padding: 40px 0 60px;
  overflow: hidden;
}

.bottle__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 var(--pad);
}

.bottle__kicker {
  font-size: 14px;
  font-weight: 700;
}

.stars {
  display: flex;
  gap: 7px;
  font-size: 30px;
  line-height: 1;
  margin: 15px;
  color: #ddb25e;
}
.stars img {
  max-width: 260px;
}
.bottle__head h2 {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -1px;
  font-weight: 600;
  max-width: 85%;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #242220;
}
@media all and (min-width: 1200px) {
  .verified-pill {
    position: relative;
    left: 370px;
    top: 20px;
  }
}
.verified-check {
  display: inline-flex;
  flex: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}

.verified-check::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 4px;
  width: 6px;
  height: 3.5px;
  border-left: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: rotate(-45deg);
}

.bottle__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 26px;
  padding: 0 var(--pad);
}

.bottle__quotes {
  display: flex;
  flex-direction: column;
  gap: 54px;
  max-width: 360px;
  opacity: 0.9;
  top: 35px;
}

.bottle__quotes--left {
  text-align: right;
  align-items: flex-end;
}
@media all and (min-width: 1200px) {
  .bottle__quotes--left {
    left: 90px;
    position: relative;
  }
  .bottle__quotes--right {
    left: -90px;
    position: relative;
  }
}
.scatter-quote.right-50 {
  position: relative;
  left: -20px;
}
.scatter-quote.left-50 {
  position: relative;
  right: -30px;
}
.scatter-quote p {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: rgba(36, 34, 32, 0.08);
  transition: color 0.6s ease;
}

.scatter-quote span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(36, 34, 32, 0.28);
}

.scatter-quote span .verified-check {
  opacity: 0.35;
  transition: opacity 0.6s ease;
}

.scatter-quote.is-lit p {
  color: rgba(36, 34, 32, 0.17);
}

.scatter-quote.is-lit .verified-check {
  opacity: 0.8;
}

.bottle__img {
  flex: none;
  width: 430px;
  scale: 1.3;
  margin-top: 50px;
}

.bottle__img img {
  width: 100%;
  border-radius: 24px;
  scale: 1.2;
}

.hsa-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 74px;
  font-size: 17px;
}

/* ---------- Weight slider ---------- */

.weight {
  padding: 80px 0;
}

.weight__grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 580px);
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.weight__intro p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 22.4px;
}

.weight__intro .btn {
  margin-top: 28px;
}

.weight-card {
  background: var(--card-sand);
  border-radius: 30px;
  padding: 46px 50px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.weight-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.weight-card__row p {
  font-size: 14px;
  font-weight: 600;
}

.weight-card__row h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.weight-card__row h2.weight-card__big {
  font-size: 54px;
  font-weight: 700;
}

.weight-card__row h2 small {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

#weight-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c9a876 28.5%, #e5ddd1 28.5%);
  outline: none;
}

#weight-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  border: 7px solid #c9a876;
  box-shadow: 0 3px 8px rgba(36, 34, 32, 0.2);
  cursor: pointer;
}

#weight-range::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 7px solid #c9a876;
  box-shadow: 0 3px 8px rgba(36, 34, 32, 0.2);
  cursor: pointer;
}

/* ---------- Change grid ---------- */

.change {
  padding: 60px 0 80px;
}

.change__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.change__head p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 22.4px;
}

.change__grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 54px;
  padding: 0 var(--pad);
}

.change__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 285px;
  flex: none;
  min-width: 0;
}

.change__col img {
  width: 100%;
  object-fit: cover;
  border-radius: 44px;
}

.change__checks {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin: 54px auto 0;
  max-width: 1160px;
  padding: 0 var(--pad);
}

.change__checks > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.change__checks p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  max-width: 310px;
  opacity: 0.92;
}

.change__note {
  margin: 28px auto 0;
  max-width: 1160px;
  padding: 0 var(--pad);
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}

/* ---------- Metabolism ---------- */

.metabolism {
  padding: 30px 0;
}

.metabolism__wrapper {
  margin: 0 var(--pad);
  background: var(--sand);
  border-radius: 50px;
  padding: 90px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}

.metabolism__photos {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.metabolism__photo {
  object-fit: cover;
  border-radius: 24px;
}

.metabolism__photo--low {
  width: 205px;
  height: 285px;
  margin-top: 75px;
}

.metabolism__photo--high {
  width: 215px;
  height: 300px;
}

.metabolism__copy {
  max-width: 420px;
}

.metabolism__copy p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 22.4px;
}

.metabolism__copy .btn {
  margin-top: 28px;
}

/* ---------- Stats ---------- */

.stats {
  padding: 80px 0;
}

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

.stats__head p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 22.4px;
}

.stats__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 56px;
}

.stat-card {
  background: var(--mint);
  border-radius: 50px;
  padding: 46px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-card__figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-card__figure h3 {
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.stat-card__figure p {
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
  color: var(--green);
}

.stat-card span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  max-width: 200px;
}

/* ---------- Journey ---------- */

.journey {
  padding: 60px 0 110px;
}

.journey__grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 560px);
  justify-content: space-between;
  gap: 40px;
}

.journey__intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.journey__intro p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 22.4px;
}

.journey__intro .btn {
  margin-top: 28px;
}

.journey__steps {
  position: relative;
  padding-left: 55px;
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.journey__rail {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 60px;
  width: 2px;
  background: var(--track);
}

.journey__rail-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--green);
  border-radius: 50px;
  transition: height 0.15s linear;
}

.journey-step {
  position: relative;
}

.journey-step__dot {
  position: absolute;
  left: -60px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d3d1cf;
  transition: background-color 0.4s ease;
}

.journey-step.is-active .journey-step__dot {
  background: var(--green);
}

.journey-step h4 {
  font-size: 22px;
  letter-spacing: -0.44px;
  font-weight: 600;
}

.journey-step p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 22.4px;
  max-width: 465px;
}

.journey-step img {
  margin-top: 30px;
  width: 100%;
  max-width: 465px;
  height: 260px;
  object-fit: cover;
  border-radius: 50px;
}

/* ---------- Support ---------- */

.support {
  padding: 30px 0;
}

.support__wrapper {
  margin: 0 var(--pad);
  background: var(--sand);
  border-radius: 50px;
  padding: 90px 60px 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
}

.support__copy {
  max-width: 435px;
}

.support__copy p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 22.4px;
}

.support__photos {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.support__photo {
  object-fit: cover;
  border-radius: 20px;
}

.support__photo--high {
  width: 195px;
  height: 270px;
}

.support__photo--low {
  width: 200px;
  height: 270px;
  margin-top: 55px;
}

/* ---------- Testimonials ---------- */

.testimonials {
  padding: 80px 0 90px;
  overflow: hidden;
}

.testimonials__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 var(--pad);
}

.testimonials__head h6 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.testimonials__head h2 {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -1px;
  font-weight: 600;
  max-width: 640px;
  margin: 0 auto;
}

.testimonials__head p {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 22.4px;
}

.testimonials__scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 40px;
  scrollbar-width: none;
  cursor: grab;
}

.testimonials__scroller::-webkit-scrollbar {
  display: none;
}

.testimonials__scroller.is-dragging {
  cursor: grabbing;
}

.testimonials__col {
  flex: none;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-card {
  background: var(--card-sand);
  border-radius: 20px;
  padding: 38px 40px;
}

.testi-card--mint {
  background: var(--mint);
}

.testi-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.testi-card__top img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-card__top strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-soft);
}

.testi-stars {
  margin-left: auto;
  color: var(--green);
  font-size: 13px;
  letter-spacing: 2.5px;
  white-space: nowrap;
}

.testi-card p {
  font-size: 14px;
  line-height: 22.4px;
  color: var(--ink-soft);
}

.testi-photo {
  border-radius: 20px;
  overflow: hidden;
}

.testi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- FAQ ---------- */

.faq {
  padding: 80px 0;
}
.faq__container {
  max-width: 800px;
}
.faq__container > h3 {
  text-align: center;
  margin-bottom: 66px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 25px 0;
}

.faq-item__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}

.faq-item__toggle h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}

.faq-item__icon {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}

.faq-item__icon::before {
  left: 0;
  top: 8px;
  width: 18px;
  height: 1.6px;
}

.faq-item__icon::after {
  left: 8.2px;
  top: 0;
  width: 1.6px;
  height: 18px;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer p {
  padding-top: 16px;
  font-size: 14px;
  line-height: 22.4px;
  color: var(--ink-soft);
  max-width: 900px;
}

/* ---------- Guarantee ---------- */

.guarantee {
  padding: 30px 0;
}

.guarantee__wrapper {
  max-width: 940px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 50px;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}

.guarantee__badge {
  flex: none;
  width: 150px;
}

.guarantee__badge svg {
  width: 100%;
  height: auto;
}

.guarantee__kicker {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.guarantee__copy h3 {
  max-width: 400px;
}

.guarantee__sub {
  margin-top: 14px;
  font-size: 14px;
  line-height: 22.4px;
  color: var(--ink-soft);
  max-width: 400px;
}

.guarantee__copy .btn {
  margin-top: 26px;
}

/* ---------- Goal form ---------- */

.goal-form {
  padding: 30px 0 60px;
}

.goal-form__wrapper {
  max-width: 880px;
  margin: 0 auto;
  background: var(--sand);
  border-radius: 50px;
  padding: 110px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.goal-form__wrapper h3 {
  font-size: 32px;
  letter-spacing: -0.5px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 38px;
}

.goal-form__options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 480px;
}

.goal-option {
  display: block;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid #cfcfcf;
  padding: 24px 30px;
  text-align: left;
  transition: border-color 0.2s ease;
}

.goal-option p {
  font-size: 16px;
  font-weight: 600;
  color: #242220;
}

.goal-option:hover {
  border-color: rgba(36, 34, 32, 0.2);
}

.goal-option.is-selected {
  border-color: var(--ink);
}

.goal-form__cta {
  width: 100%;
  max-width: 480px;
  height: 50px;
  margin-top: 30px;
}

.goal-form__note {
  margin: 48px auto 0;
  max-width: 640px;
  padding: 0 var(--pad);
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}

/* ---------- Trust bar ---------- */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 16px;
  border-left: 1px solid var(--hairline);
}

.trust-bar__item:first-child {
  border-left: 0;
}

.trust-bar__item p {
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Footer ---------- */

.footer__main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 70px var(--pad) 46px;
}

.footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.footer__logo {
  height: 26px;
  width: auto;
}

.footer__chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sand);
  border-radius: 999px;
  padding: 13px 22px;
}

.footer-chip p {
  font-size: 13px;
  font-weight: 600;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__legal p {
  font-size: 12px;
  line-height: 1.7;
  color: #6f6b66;
}

.footer__legal strong {
  color: #55524e;
}

.footer__line {
  border-top: 1px solid var(--hairline);
  margin-top: 44px;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__line > p {
  font-size: 12px;
  font-weight: 600;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 12px;
  font-weight: 500;
  padding: 0 12px;
  border-left: 1px solid #dcd8d3;
}

.footer__links a:first-child {
  border-left: 0;
}

.footer__links a:hover {
  color: var(--green);
}

/* ============================================================
   Responsive
   ============================================================ */

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

  .metabolism__wrapper,
  .support__wrapper {
    gap: 50px;
  }

  .bottle__quotes {
    max-width: 260px;
  }

  .scatter-quote p {
    font-size: 24px;
    line-height: 30px;
  }
}

@media (max-width: 960px) {
  #hero .hero__grid {
    margin-top: 40px !important;
    overflow: hidden;
    justify-content: center;
  }
  .products {
    padding: 100px 0 60px;
  }
  .mob-hidden {
    display: none;
  }

  .desktop-hidden {
    display: block;
  }

  .hero__grid-mobile {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .hero__grid-mobile-inner {
    display: grid;
    grid-template-columns: 140px 180px 140px;
    grid-template-rows: auto auto;
    gap: 16px;
    width: max-content;
  }

  .mob-img {
    border-radius: 16px;
    overflow: hidden;
  }

  .mob-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .mob-img-1 {
    grid-column: 1;
    grid-row: 1;
    height: 220px;
    align-self: end;
  }

  .mob-img-2 {
    grid-column: 2;
    grid-row: 1;
    height: 170px;
    align-self: end;
  }

  .mob-img-3 {
    grid-column: 3;
    grid-row: 1;
    height: 240px;
    align-self: end;
  }

  .mob-img-4 {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 260px;
    align-self: start;
  }

  .mob-img-5 {
    grid-column: 3;
    grid-row: 2;
    height: 220px;
    align-self: start;
  }

  .change__grid-mobile {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .change__grid-mobile-inner {
    display: grid;
    grid-template-columns: 140px 180px 140px;
    grid-template-rows: auto auto;
    gap: 16px;
    width: max-content;
  }
  .stars {
    margin: 10px 15px;
  }
  .stars img {
    max-width: 200px;
  }
  .promo-bar {
    height: 52px;
  }

  .promo-bar p {
    font-size: 14px;
  }

  .site-nav {
    top: 52px;
  }

  .site-nav__content {
    height: 68px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero__headline {
    font-size: 34px;
    line-height: 39px;
    letter-spacing: -0.7px;
  }

  .bottle__head h2 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.7px;
  }

  .testimonials__head h2 {
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -0.7px;
  }

  .intro-split {
    flex-direction: column;
    gap: 20px;
  }

  .weight__grid,
  .journey__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .journey__intro {
    position: static;
  }

  .metabolism__wrapper {
    flex-direction: column;
    padding: 60px 30px;
    gap: 44px;
  }

  .support__wrapper {
    flex-direction: column-reverse;
    padding: 60px 30px 70px;
    gap: 44px;
  }

  .bottle__stage {
    position: relative;
    padding: 0;
    margin-top: 40px;
    overflow: hidden;
    gap: 0;
    justify-content: space-between;
    min-height: 540px;
  }

  .bottle__img {
    position: absolute;
    width: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    z-index: 10;
  }

  .bottle__quotes {
    max-width: 50%;
    padding: 0 5px;
    gap: 40px;
  }

  .bottle__quotes--left {
    text-align: right;
    align-items: flex-end;
  }

  .scatter-quote p {
    font-size: 16px;
    line-height: 22px;
  }

  .guarantee__wrapper {
    flex-direction: column;
    text-align: center;
    gap: 36px;
    padding: 64px 30px;
  }

  .guarantee__badge {
    width: 110px;
  }

  .guarantee__copy h3,
  .guarantee__sub {
    max-width: none;
  }

  .change__grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .change__grid::-webkit-scrollbar {
    display: none;
  }

  .change__col {
    width: 220px;
    min-width: 220px;
  }

  .change__col[style] {
    padding-top: 0 !important;
  }

  .change__col img {
    height: auto !important;
    aspect-ratio: 3 / 4;
  }

  .change__checks {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

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

  .trust-bar__item:nth-child(3) {
    border-left: 0;
  }

  .trust-bar__item {
    border-top: 1px solid var(--hairline);
  }

  .trust-bar__item:nth-child(-n + 2) {
    border-top: 0;
  }

  .hero__grid {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .hero__col,
  .hero__col:first-child,
  .hero__col:last-child {
    width: 140px;
    min-width: 140px;
  }

  .hero__col[style] {
    padding-top: 100px !important;
  }

  .hero__col:first-child,
  .hero__col:last-child {
    padding-top: 0 !important;
  }

  .hero__col img {
    height: auto !important;
    aspect-ratio: 3 / 4;
  }

  .stats__cards {
    gap: 16px;
  }

  .testimonials__col {
    width: 320px;
  }
}

@media (max-width: 620px) {
  .product-slider {
    margin-left: 0;
    padding-top: 20px;
  }
  .product-card {
    width: 270px;
    min-height: 500px;
  }
  .product-card__media img {
    max-height: 310px;
    top: -33px;
  }
  .product-card__copy {
    padding: 26px 20px 20px;
  }
  .product-card__copy .btn {
    margin-top: 20px;
  }
  .hero__join {
    font-size: 14px;
  }
  .hero__headline {
    font-size: 28px;
    line-height: 34px;
    margin-top: 7px;
    margin-bottom: 0;
  }

  .hero__grid {
    gap: 12px;
    margin-top: 48px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .hero__col {
    gap: 12px;
    width: 120px;
    min-width: 120px;
  }
  .goal-form__wrapper h3 {
    font-size: 22px;
  }
  .drawer {
    width: 100vw;
    border-radius: 0;
  }
  .check-list p {
    font-size: 13px;
  }
  .change__grid {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    gap: 10px;
  }

  .change__col {
    width: 150px;
    min-width: 150px;
  }
  .stats {
    padding: 55px 0;
  }
  .stats__cards {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }
  .stats__head h3 {
    font-size: 20px !important;
  }
  .stat-card {
    padding: 26px 18px;
    border-radius: 20px;
    flex-direction: row;
    gap: 20px;
    text-align: left;
    align-items: center;
  }

  .stat-card__figure h3 {
    font-size: 36px;
  }
  .stat-card span {
    font-size: 14px;
  }
  .stat-card__figure p {
    font-size: 40px;
  }

  .bottle__img {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bottle__img::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 80%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 255, 255, 0) 80%
    );
    z-index: -1;
    border-radius: 50%;
    filter: blur(20px);
  }

  .bottle__img img {
    scale: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    position: relative;
    left: 10%;
  }

  .bottle__stage {
    position: relative;
    padding: 0;
    margin-top: 40px;
    overflow: hidden;
    gap: 0;
    justify-content: space-between;
    min-height: 520px;
    display: flex;
    flex-direction: row;
  }
  .hsa-mark {
    margin-top: 0px;
  }
  .bottle__quotes {
    width: 50%;
    max-width: 50%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 1;
  }

  .bottle__quotes--left {
    text-align: right;
    align-items: flex-end;
    padding-right: 15px;
  }

  .bottle__quotes--right {
    text-align: left;
    align-items: flex-start;
    padding-left: 15px;
  }

  .scatter-quote p {
    font-size: 18px;
    line-height: 22px;
    font-weight: 800;
    color: rgba(36, 34, 32, 0.1);
  }

  .scatter-quote span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(36, 34, 32, 0.18);
    margin-top: 6px;
    display: flex;
    align-items: center;
  }

  .bottle__quotes--left .scatter-quote span {
    justify-content: flex-end;
  }

  .scatter-quote span .verified-check {
    width: 14px;
    height: 14px;
    background: rgba(36, 34, 32, 0.15);
  }

  .scatter-quote span .verified-check::after {
    left: 4px;
    top: 3.5px;
    width: 5px;
    height: 3px;
    border-width: 1.5px;
  }

  .bottle__quotes--left .scatter-quote:nth-child(1) {
    transform: translateX(-15%);
  }
  .bottle__quotes--left .scatter-quote:nth-child(2) {
    transform: translateX(-35%);
  }
  .bottle__quotes--left .scatter-quote:nth-child(3) {
    transform: translateX(-5%);
  }

  .bottle__quotes--right .scatter-quote:nth-child(1) {
    transform: translateX(10%);
  }
  .bottle__quotes--right .scatter-quote:nth-child(2) {
    transform: translateX(25%);
  }
  .bottle__quotes--right .scatter-quote:nth-child(3) {
    transform: translateX(5%);
  }

  .scatter-quote.right-50 {
    left: 0;
  }

  .scatter-quote.left-50 {
    right: 0;
  }
  .weight-card {
    padding: 34px 26px;
  }

  .weight-card__row h2 {
    font-size: 32px;
  }

  .weight-card__row h2.weight-card__big {
    font-size: 42px;
  }

  .metabolism__photo--low {
    width: 120px;
    height: 120px;
    margin-top: 50px;
  }

  .metabolism__photo--high {
    width: 120px;
    height: 140px;
  }
  .support__photo--high {
    width: 125px;
    height: 170px;
  }

  .support__photo--low {
    width: 120px;
    height: 160px;
    margin-top: 25px;
  }
  .intro-split h3,
  .weight__intro h3,
  .metabolism__copy h3,
  .stats__head h3,
  .journey__intro h3,
  .support__copy h3,
  .change__head h3,
  .faq h3.reveal,
  .guarantee__copy h3 {
    font-size: 24px;
  }
  .journey__steps {
    padding-left: 34px;
    gap: 70px;
  }

  .journey-step__dot {
    left: -39px;
  }

  .journey-step img {
    height: 200px;
    border-radius: 30px;
  }

  .change__col {
    width: calc(40% - 6px);
  }

  .change__grid {
    gap: 12px;
    overflow: hidden;
  }

  .change__col img {
    border-radius: 26px;
    height: auto !important;
    aspect-ratio: 4 / 5;
  }

  .goal-form__wrapper {
    padding: 70px 22px;
    border-radius: 36px;
  }

  .guarantee__wrapper,
  .metabolism__wrapper,
  .support__wrapper {
    border-radius: 36px;
  }

  .footer__brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__line {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__links a {
    padding-left: 0;
    padding-right: 12px;
    border-left: 0;
  }

  .testimonials__scroller {
    padding: 0 20px;
  }

  .testimonials__col {
    width: 300px;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }
}
/*testimonials*/
.overflow {
  overflow: visible !important;
}

.tt-marquee-section {
  position: relative;
  overflow: visible;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  margin-left: -50vw;
  padding: 20px 0;
  font-family: var(--font-text);
}

.tt-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}

.tt-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.tt-card {
  flex: 0 0 auto;
  border-radius: 20px;
}

.tt-image-card {
  width: 300px;
  height: 200px;
}

.tt-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  object-position: 50% 0;
}

.tt-review-card {
  width: 320px;
  min-height: 240px;
  background: #f1f5e9;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.tt-row-bottom .tt-review-card {
  background: #fafafa;
}
.tt-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tt-avatar {
  width: 35px;
  height: 35px;
  background: #a9b88e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 35px;
}

.tt-name {
  font-weight: 700;
}

.tt-sub {
  font-size: 13px;
  color: #777;
}

.tt-stars {
  margin-left: auto;
  color: #48a07f;
  font-size: 20px;
}

.tt-content {
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.tt-footer {
  margin-top: auto;
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.tt-footer img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
}

/* animations */
.tt-row-top .tt-track {
  animation: scrollLeft 60s linear infinite;
}

.tt-row-bottom .tt-track {
  animation: scrollRight 35s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}

/* fade edges */
.tt-fade {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.tt-fade-left {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.tt-fade-right {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

@media all and (max-width: 640px) {
  .testimonials {
    padding: 50px 0 10px;
    overflow: hidden;
  }
  .faq {
    padding: 55px 0;
  }
  .tt-content {
    font-size: 14px;
  }
  .tt-fade {
    width: 30px;
  }
  .tt-sub {
    display: none;
  }
}
