@font-face {
  font-family: "Herbalife Natural";
  src: url("./fonts/HerbalifeNatural-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Herbalife Walsheim";
  src: url("./fonts/Herbalife-Walsheim-GT-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Herbalife Walsheim";
  src: url("./fonts/Herbalife-Walsheim-GT-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #266431;
  --green-dark: #16302d;
  --green-mid: #2f7562;
  --green-soft: #edf4ee;
  --cream: #fbf8ef;
  --yellow: #fff5a5;
  --petrol: #2c6370;
  --ink: #183630;
  --copy: #5f706d;
  --muted: #eef3ef;
  --line: #dce7df;
  --card: #ffffff;
  --shadow: 0 20px 56px rgba(22, 48, 45, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 245, 165, 0.42), transparent 34rem),
    linear-gradient(180deg, #fbfbf7 0%, #f4f7f2 46%, #eef4f0 100%);
  color: var(--ink);
  font-family: "Herbalife Walsheim", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(38, 100, 49, 0.32);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(220, 231, 223, 0.88);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 158px;
  height: auto;
}

.nav {
  display: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 4px;
}

.language-switch a {
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 9px;
  text-decoration: none;
}

.language-switch a[aria-current="page"] {
  background: var(--green);
  color: #fff;
}

.hero {
  padding: 42px 0 22px;
}

.hero-grid {
  display: grid;
  gap: 18px;
}

.hero-copy-block {
  border-radius: 30px;
  padding: 28px 22px;
  background:
    linear-gradient(135deg, rgba(22, 48, 45, 0.92), rgba(38, 100, 49, 0.7)),
    url("https://ik.imagekit.io/b40kqkuhj/landing_page/wellness.jpg?tr=w-900,h-900,fo-auto,q-76") center/cover;
  box-shadow: var(--shadow);
  color: #fff;
}

.eyebrow,
.label {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--yellow);
  padding: 9px 12px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Herbalife Natural", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(38px, 13vw, 68px);
  line-height: 0.94;
}

.hero-copy {
  margin: 18px 0 0;
  max-width: 670px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.45;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 0 18px;
  font-weight: 700;
  text-decoration: none;
}

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

.button.secondary,
.button.light {
  background: #fff;
  color: var(--green-dark);
  border-color: rgba(255, 255, 255, 0.36);
}

.button.light {
  width: 100%;
}

.hero-proof {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(22, 48, 45, 0.08);
}

.proof-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.proof-head span {
  color: var(--copy);
  font-weight: 700;
}

.proof-head strong {
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-dark);
  padding: 8px 11px;
  font-size: 13px;
}

.hero-proof p {
  margin: 16px 0 0;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.52;
}

.proof-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.proof-grid div {
  border-radius: 18px;
  background: var(--green-soft);
  padding: 14px;
}

.proof-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 19px;
}

.proof-grid span {
  display: block;
  margin-top: 4px;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.35;
}

.trust-strip {
  padding: 16px 0 6px;
}

.strip-grid {
  display: grid;
  gap: 10px;
}

.strip-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 15px;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.strip-grid svg {
  color: var(--green);
  flex: 0 0 auto;
}

.section {
  padding: 36px 0;
}

.section.muted {
  background: rgba(237, 244, 238, 0.58);
}

.trust-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-image {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(22, 48, 45, 0.78), rgba(47, 117, 98, 0.25)),
    url("https://ik.imagekit.io/b40kqkuhj/landing_page/wellness.jpg?tr=w-1200,h-760,fo-auto,q-82") center/cover;
}

.trust-panel {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.trust-summary,
.trustpilot-box,
.card,
.ai-block {
  border-radius: 24px;
}

.trust-summary {
  border: 1px solid var(--line);
  background: var(--green-soft);
  padding: 22px;
}

.trust-summary h2,
.section-header h2,
.card h2 {
  margin-top: 8px;
  font-size: clamp(30px, 9vw, 50px);
  line-height: 1;
}

.trust-summary p,
.section-header p,
.card p,
.card li,
.faq p,
.ai-block p {
  color: var(--copy);
  font-size: 16px;
  line-height: 1.56;
}

.trust-summary p:last-child {
  margin-bottom: 0;
}

.trustpilot-box {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 245, 165, 0.18), transparent 16rem),
    var(--green-dark);
  color: #fff;
  padding: 22px;
}

.trustpilot-box .label,
.ai-block .label {
  color: var(--yellow);
}

.trustpilot-box h3,
.ai-block h2,
.ai-block h3 {
  color: #fff;
}

.trustpilot-box h3 {
  margin-top: 8px;
  font-size: 30px;
  line-height: 1;
}

.trustpilot-box p,
.ai-block p {
  color: rgba(255, 255, 255, 0.82);
}

.trustpilot-status {
  display: grid;
  gap: 9px;
}

.status-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  padding: 14px;
}

.status-item strong {
  display: block;
  color: var(--yellow);
  font-size: 23px;
}

.status-item span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.34;
}

.section-header {
  max-width: 720px;
  margin-bottom: 22px;
}

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

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

.grid > * {
  min-width: 0;
}

.card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(22, 48, 45, 0.06);
}

.card.soft {
  background:
    linear-gradient(135deg, #ffffff 0%, var(--green-soft) 100%);
}

.card.accent {
  border-color: rgba(255, 245, 165, 0.82);
  background:
    linear-gradient(135deg, #fffef0 0%, #ffffff 62%);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-top: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(38, 100, 49, 0.1);
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.steps div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--green-dark);
  color: var(--yellow);
  font-weight: 700;
}

.steps p {
  margin: 5px 0 0;
}

.ai-block {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 245, 165, 0.13), transparent 17rem),
    linear-gradient(135deg, var(--green-dark), #102623);
  color: #fff;
  padding: 24px;
}

.ai-block .grid {
  margin-top: 22px;
}

.ai-block article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.ai-block h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.ai-block code {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--yellow);
  padding: 3px 7px;
}

.ai-block a {
  color: var(--yellow);
  overflow-wrap: anywhere;
}

.source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.source-row a {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 13px;
  font-weight: 700;
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 17px 18px;
}

.faq summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 18px;
}

.faq p {
  margin: 12px 0 0;
}

.footer {
  margin-top: 32px;
  padding: 34px 0;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: grid;
  gap: 16px;
}

.footer strong {
  color: #fff;
}

.footer p {
  margin: 6px 0;
}

.footer a {
  color: var(--yellow);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer .language-switch {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer .language-switch a {
  color: #fff;
}

.footer .language-switch a[aria-current="page"] {
  background: var(--yellow);
  color: var(--green-dark);
}

.footer-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
}

.legal-dialog {
  width: min(980px, calc(100% - 18px));
  max-width: none;
  height: min(86dvh, 860px);
  max-height: none;
  border: 0;
  border-radius: 26px;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.legal-dialog::backdrop {
  background: rgba(10, 24, 22, 0.68);
  backdrop-filter: blur(10px);
}

.legal-dialog-panel {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(220, 231, 223, 0.92);
  border-radius: inherit;
  background: #fff;
  box-shadow: 0 28px 90px rgba(10, 24, 22, 0.32);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.legal-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255, 245, 165, 0.28), transparent 15rem),
    var(--green-soft);
  padding: 18px;
}

.legal-dialog-header h2 {
  margin-top: 4px;
  font-size: clamp(26px, 7vw, 42px);
  line-height: 1;
}

.dialog-close {
  appearance: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.legal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.legal-dialog-footer {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 14px;
}

@media (min-width: 720px) {
  .container,
  .header-inner {
    width: min(1120px, calc(100% - 48px));
  }

  .header-inner {
    justify-content: space-between;
    min-height: 72px;
  }

  .logo {
    width: 176px;
  }

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

  .nav a {
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .site-header .language-switch {
    margin-left: 8px;
  }

  .hero {
    padding: 70px 0 28px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) 360px;
    align-items: stretch;
  }

  .hero-copy-block {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
  }

  .hero-copy {
    font-size: 21px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-proof {
    padding: 28px;
  }

  .proof-grid {
    margin-top: 28px;
  }

  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 56px 0;
  }

  .trust-image {
    min-height: 330px;
  }

  .trust-panel {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 22px;
    padding: 24px;
  }

  .trust-summary,
  .trustpilot-box {
    padding: 30px;
  }

  .trustpilot-status {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card {
    padding: 28px;
  }

  .ai-block {
    padding: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .legal-dialog {
    width: min(1040px, calc(100% - 72px));
    height: min(84dvh, 860px);
  }

  .legal-dialog-header {
    padding: 22px 24px;
  }

  .legal-dialog-footer {
    grid-template-columns: 1fr auto;
    justify-content: end;
    padding: 16px 18px;
  }
}

@media (max-width: 420px) {
  .container,
  .header-inner {
    width: min(100% - 20px, 1120px);
  }

  .hero-copy-block {
    border-radius: 24px;
    padding: 24px 18px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .trust-card,
  .trust-summary,
  .trustpilot-box,
  .card,
  .ai-block {
    border-radius: 22px;
  }
}
