.weight-loss-page {
  --wl-green: var(--green-200);
  --wl-deep-green: var(--green-600);
  --wl-ink: var(--ink-900);
  --wl-cream: var(--sand);
  color: var(--wl-ink);
  font-family: var(--font-body);
}

.weight-loss-page h1,
.weight-loss-page h2,
.weight-loss-page h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
}

.weight-loss-page h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
}

.weight-loss-page p {
  line-height: 1.35;
}

.wl-container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.wl-announcement {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 56px;
  place-items: center;
  background: var(--green-200);
  font-weight: var(--fw-bold);
}

.wl-announcement a,
.wl-sale-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wl-hero {
  height: 776px;
  color: var(--text-inverse);
  background: var(--green-700);
}

.wl-hero__inner {
  position: relative;
  display: grid;
  width: min(1060px, calc(100% - 48px));
  height: 100%;
  grid-template-columns: 535px 450px;
  align-items: start;
  justify-content: space-between;
}

.wl-hero__copy {
  padding-top: 230px;
}

.wl-logo {
  display: inline-block;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: var(--fw-extrabold);
  letter-spacing: -1.6px;
  line-height: 1;
}

.wl-hero h1 {
  width: 535px;
  margin: 0 0 34px;
  font-size: 36px;
  line-height: 1.1;
}

.wl-hero p {
  width: 505px;
  margin-bottom: 17px;
  font-size: 16px;
}

.wl-sale-link {
  display: block;
  width: max-content;
  margin: 0 0 17px 44px;
  font-size: 13px;
  font-weight: 700;
}

.wl-hero__image {
  width: 450px;
  height: 606px;
  margin-top: 100px;
  border-radius: 38px;
  object-fit: cover;
}

.wl-button {
  display: inline-flex;
  min-width: 250px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--cta-text);
  background: var(--cta-bg);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  transition: background var(--dur-fast) var(--ease-out);
}

.wl-button:hover {
  background: var(--cta-bg-hover);
}

.wl-button:active {
  background: var(--cta-bg-active);
  transform: translateY(1px);
}

.wl-button--light {
  color: var(--green-900);
  background: var(--white);
}

.wl-button--light:hover {
  color: var(--green-900);
  background: var(--green-50);
}

.wl-plans {
  height: 796px;
  padding-top: 60px;
  text-align: center;
}

.wl-plans h2 {
  margin-bottom: 36px;
}

.wl-plans em {
  font-weight: 400;
}

.wl-plan-grid {
  display: grid;
  width: 778px;
  margin: 0 auto 28px;
  grid-template-columns: repeat(2, 357px);
  gap: 64px;
  text-align: left;
}

.wl-plan-card {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.wl-plan-card > img,
.wl-product-wrap,
.wl-product-wrap > img {
  width: 100%;
  height: 219px;
  object-fit: cover;
}

.wl-product-wrap {
  position: relative;
}

.wl-product-label {
  position: absolute;
  top: 44px;
  left: 14px;
  display: grid;
  width: 108px;
  height: 48px;
  place-items: center;
  padding: 4px;
  color: var(--green-800);
  background: var(--green-50);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  text-align: center;
  transform: rotate(-8deg);
}

/* .wl-product-wrap::after {
  position: absolute;
  top: 44px;
  left: 181px;
  display: grid;
  width: 108px;
  height: 48px;
  place-items: center;
  padding: 4px;
  color: #101010;
  background: #eff8ef;
  content: "Legacy Meds";
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transform: rotate(8deg);
} */

.wl-plan-card__body {
  padding: 18px 24px 20px;
}

.wl-plan-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.wl-plan-card__meta b {
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--color-primary);
  background: var(--color-bg-mint);
  font-size: 12px;
}

.wl-plan-card h3 {
  margin: 12px 0 2px;
  font-size: 21px;
  line-height: 1.15;
}

.wl-plan-card strong {
  font-size: 17px;
}

.wl-plan-card ul {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.wl-plan-card li {
  position: relative;
  margin: 7px 0;
  padding-left: 28px;
  font-size: 14px;
}

.wl-plan-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  content: "✓";
  font-size: 11px;
  font-weight: 700;
}

.wl-plan-card small {
  display: block;
  margin-top: 10px;
  text-align: center;
}

.wl-plans > .wl-container > .wl-sale-link {
  margin: 10px auto 0;
}

.wl-sale-link--dark {
  color: var(--wl-ink);
}

.wl-benefits {
  height: 255px;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.wl-benefits__grid {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 50px;
}

.wl-benefits article {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
  gap: 22px;
}

.wl-benefits article > img {
  width: 60px;
  max-height: 68px;
  object-fit: contain;
}

.wl-benefits h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.wl-benefits p {
  margin: 0;
  font-size: 14px;
}

.wl-promise {
  height: 650px;
  margin-top: 1px;
  padding-top: 0;
}

.wl-promise .wl-container {
  width: min(1000px, calc(100% - 48px));
}

.wl-promise h2 {
  height: 71px;
}

.wl-promise__content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
}

.wl-promise__items article {
  display: grid;
  min-height: 250px;
  grid-template-columns: 154px 1fr;
  align-items: center;
  gap: 30px;
}

.wl-promise__items img {
  width: 154px;
  height: 154px;
  object-fit: contain;
}

.wl-promise__items h3,
.wl-calculator h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.wl-promise__items p {
  margin: 0;
  font-size: 16px;
}

.wl-calculator {
  display: flex;
  height: 500px;
  padding: 44px;
  flex-direction: column;
  align-items: center;
  border-radius: 26px;
  background: var(--color-bg-mint);
  text-align: center;
}

.wl-calculator label {
  margin: 22px 0 9px;
}

.wl-calculator__input {
  display: flex;
  width: 170px;
  height: 55px;
  align-items: center;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.wl-calculator input {
  width: 125px;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 24px;
  text-align: center;
}

.wl-calculator > strong {
  margin: 28px 0 0;
  color: var(--text-brand);
  font-family: var(--font-display);
  font-size: var(--fs-price-xl);
  font-variant-numeric: tabular-nums;
  font-weight: var(--fw-extrabold);
  line-height: 1;
}

.wl-calculator > span {
  margin-bottom: 30px;
}

.wl-calculator .wl-button {
  min-width: 220px;
}

.wl-steps {
  height: 1309px;
  padding-top: 80px;
}

.wl-steps header {
  margin-bottom: 67px;
  text-align: center;
}

.wl-steps header h2 {
  width: 740px;
  margin-inline: auto;
}

.wl-steps header p {
  margin-top: 14px;
}

.wl-step-list {
  width: 864px;
  margin: auto;
}

.wl-step {
  display: grid;
  min-height: 302px;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 70px;
}

.wl-step--reverse {
  grid-template-columns: 1fr 300px;
}

.wl-step--reverse .wl-step__photo {
  grid-column: 2;
}

.wl-step--reverse .wl-step__copy {
  grid-row: 1;
}

.wl-step__photo {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.wl-step__photo[data-wl-asset="app-steps"],
.wl-step__photo[data-wl-asset="package"] {
  border-radius: 50%;
  object-fit: cover;
}

.wl-step__copy {
  position: relative;
  padding-left: 50px;
}

.wl-step__copy > span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 40px;
  height: 41px;
  place-items: center;
  border-radius: var(--radius-pill);
  color: var(--text-brand);
  background: var(--surface-tint);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: var(--fw-extrabold);
}

.wl-step h3 {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.2;
}

.wl-step p {
  margin: 0;
  font-size: 16px;
}

.wl-program {
  height: 999px;
  padding-top: 64px;
  background: var(--wl-green);
}

.wl-program h2 {
  font-size: 48px;
  line-height: 1.1;
}

.wl-program__eyebrow {
  margin: 18px 0 55px;
  font-family: var(--font-body) !important;
  font-size: 18px;
  text-align: center;
}

.wl-program__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 72px;
}

.wl-program-card {
  min-height: 220px;
  text-align: center;
}

.wl-program-card img {
  width: 110px;
  height: 106px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.wl-program-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
}

.wl-program-card p {
  margin: 0;
  font-size: 15px;
}

.wl-inline-offer {
  display: flex;
  margin-top: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.wl-inline-offer > a:first-child {
  text-decoration: underline;
}

.wl-inline-offer .wl-button {
  min-width: 180px;
}

.wl-success {
  height: auto;
  padding: 96px 0 60px;
  background: var(--wl-cream);
  text-align: center;
}

.wl-success h2 {
  width: 338px;
  margin-bottom: 44px;
  margin-inline: auto;
}

.wl-video-grid {
  display: grid;
  width: min(1060px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wl-video-grid iframe {
  display: block;
  width: 100%;
  aspect-ratio: 171 / 289;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--ink-100);
}

.wl-success__visual {
  display: grid;
  width: 920px;
  margin: auto;
  grid-template-columns: 1fr 430px 1fr;
  align-items: center;
}

.wl-success__visual > div:not(.wl-success__person) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wl-success__visual strong {
  color: var(--text-brand);
  font-family: var(--font-display);
  font-size: 72px;
  font-variant-numeric: tabular-nums;
  font-weight: var(--fw-extrabold);
}

.wl-success__visual span {
  font-size: 16px;
}

.wl-success__person img {
  width: 430px;
  height: 500px;
  border-radius: 215px 215px 24px 24px;
  object-fit: cover;
  object-position: center top;
}

.wl-stars {
  margin-top: 22px;
  color: var(--color-primary);
  font-size: 25px;
  letter-spacing: 6px;
}

.wl-disclaimer {
  margin: 6px 0 0;
  font-size: 13px;
}

.wl-success .wl-inline-offer {
  margin-top: 28px;
}

.wl-reviews {
  height: auto;
  min-height: 760px;
  padding: 96px 0 80px;
  color: var(--text-inverse);
  background: var(--surface-inverse);
}

.wl-reviews h2 {
  margin-bottom: 45px;
}

.wl-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.wl-review {
  padding: 28px;
  border-radius: var(--radius-lg);
  color: var(--wl-ink);
  background: var(--surface-card);
  font-size: 14px;
}

.wl-review .wl-stars {
  margin: 0 0 18px;
  color: var(--color-primary);
  font-size: 18px;
}

.wl-review blockquote {
  min-height: 178px;
  margin: 0 0 16px;
  line-height: 1.45;
}

.wl-review cite {
  font-style: normal;
  font-weight: 700;
}

.wl-inline-offer--light {
  margin-top: 42px;
}

.weight-loss-page .footer {
  height: auto;
  min-height: 0;
}

@media (max-width: 900px) {
  .weight-loss-page h2 {
    font-size: 30px;
  }

  .wl-plan-grid {
    width: min(800px, 100%);
  }

  .wl-program__grid {
    gap-inline: 30px;
  }
}

@media (max-width: 600px) {
  .weight-loss-page h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .wl-container {
    width: calc(100% - 62px);
  }

  .wl-announcement {
    height: 56px;
    font-size: 12px;
  }

  .wl-hero {
    height: 1031px;
  }

  .wl-hero__inner {
    display: block;
  }

  .wl-hero__copy {
    padding-top: 100px;
  }

  .wl-logo {
    margin-bottom: 48px;
    font-size: 30px;
  }

  .wl-hero h1 {
    width: 100%;
    margin-bottom: 24px;
    font-size: 34px;
  }

  .wl-hero p {
    width: 100%;
    font-size: 14px;
  }

  .wl-sale-link {
    margin-left: 0;
  }

  .wl-hero__image {
    width: 100%;
    height: 442px;
    margin-top: 34px;
    border-radius: 24px;
  }

  .wl-plans {
    height: 1291px;
    padding-top: 54px;
  }

  .wl-plans h2 {
    margin-bottom: 34px;
  }

  .wl-plan-grid {
    display: block;
    width: 296px;
    margin-bottom: 20px;
  }

  .wl-plan-card {
    min-height: 0;
    margin-bottom: 26px;
  }

  .wl-plan-card > img,
  .wl-product-wrap,
  .wl-product-wrap > img {
    height: 182px;
  }

  .wl-plan-card__body {
    padding: 15px 18px;
  }

  .wl-plan-card h3 {
    font-size: 19px;
  }

  .wl-plan-card li {
    font-size: 13px;
  }

  .wl-product-label {
    top: 37px;
    left: 10px;
    width: 90px;
    height: 40px;
  }

  .wl-product-wrap::after {
    top: 37px;
    left: 151px;
    width: 90px;
    height: 40px;
  }

  .wl-plans > .wl-container > .wl-sale-link {
    display: none;
  }

  .wl-benefits {
    height: 531px;
  }

  .wl-benefits__grid {
    display: block;
    padding-top: 30px;
  }

  .wl-benefits article {
    min-height: 157px;
    grid-template-columns: 70px 1fr;
    gap: 18px;
  }

  .wl-benefits article > img {
    margin-inline: auto;
  }

  .wl-benefits h3 {
    font-size: 19px;
  }

  .wl-benefits p {
    font-size: 13px;
  }

  .wl-promise {
    height: 1097px;
    margin-top: 0;
  }

  .wl-promise h2 {
    height: 81px;
    padding-top: 28px;
  }

  .wl-promise__content {
    display: block;
  }

  .wl-promise__items article {
    min-height: 260px;
    grid-template-columns: 140px 1fr;
    gap: 16px;
  }

  .wl-promise__items img {
    width: 140px;
    height: 140px;
  }

  .wl-promise__items h3 {
    font-size: 19px;
  }

  .wl-promise__items p {
    font-size: 13px;
  }

  .wl-calculator {
    height: 460px;
    padding: 28px;
  }

  .wl-calculator > strong {
    font-size: 58px;
  }

  .wl-steps {
    height: 1968px;
    margin-top: 60px;
    padding-top: 70px;
  }

  .wl-steps header {
    margin-bottom: 54px;
  }

  .wl-steps header h2,
  .wl-success h2 {
    width: 100%;
  }

  .wl-step-list {
    width: 100%;
  }

  .wl-step,
  .wl-step--reverse {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .wl-step--reverse .wl-step__photo,
  .wl-step--reverse .wl-step__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .wl-step__photo {
    width: 300px;
    height: 304px;
    align-self: center;
  }

  .wl-step__copy {
    padding-left: 50px;
  }

  .wl-step h3 {
    font-size: 20px;
  }

  .wl-step p {
    font-size: 14px;
  }

  .wl-program {
    height: 1856px;
    padding-top: 64px;
  }

  .wl-program h2 {
    font-size: 42px;
  }

  .wl-program__eyebrow {
    margin-bottom: 40px;
  }

  .wl-program__grid {
    display: block;
  }

  .wl-program-card {
    min-height: 255px;
  }

  .wl-program-card img {
    margin-bottom: 10px;
  }

  .wl-program-card p {
    font-size: 13px;
  }

  .wl-program .wl-inline-offer {
    margin-top: 8px;
  }

  .wl-success {
    height: auto;
    padding: 76px 0 60px;
  }

  .wl-success .wl-container {
    width: calc(100% - 32px);
  }

  .wl-success h2 {
    width: 263px;
    margin-bottom: 88px;
  }

  .wl-video-grid {
    width: 358px;
    grid-template-columns: repeat(2, 171px);
    gap: 16px;
  }

  .wl-video-grid iframe {
    width: 171px;
    height: 289px;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .wl-success__visual {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .wl-success__person {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .wl-success__person img {
    width: 280px;
    height: 440px;
    margin: auto;
  }

  .wl-success__visual strong {
    font-size: 54px;
  }

  .wl-inline-offer {
    flex-direction: column;
    gap: 12px;
  }

  .wl-reviews {
    height: auto;
    min-height: 1266px;
    margin-top: 60px;
    padding: 96px 0 80px;
  }

  .wl-reviews__grid {
    display: block;
  }

  .wl-review {
    margin-bottom: 48px;
  }

  .wl-review blockquote {
    min-height: 0;
    margin-bottom: 14px;
  }

  .wl-inline-offer--light {
    margin-top: 15px;
  }

  .weight-loss-page .footer {
    height: auto;
    min-height: 0;
  }
}
