:root {
  --green-950: #071713;
  --green-900: #123c2f;
  --green-800: #185241;
  --leaf: #7daf7c;
  --gold: #c8a96a;
  --ivory: #f7f3ea;
  --white-lab: #fafaf7;
  --silver: #d6dad8;
  --charcoal: #111816;
  --muted: #66736c;
  --line: rgba(17, 24, 22, 0.12);
  --glass: rgba(255, 255, 255, 0.64);
  --shadow: 0 30px 90px rgba(7, 23, 19, 0.16);
  --radius: 18px;
  color-scheme: light;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white-lab);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 60px);
  color: var(--white-lab);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, backdrop-filter 220ms ease;
}

.navbar.is-scrolled,
.navbar.is-open,
.page-shell .navbar {
  color: var(--green-950);
  background: rgba(250, 250, 247, 0.88);
  border-bottom: 1px solid rgba(17, 24, 22, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 220ms ease;
}

.navbar.is-scrolled .brand img,
.navbar.is-open .brand img,
.page-shell .brand img {
  filter: none;
}

.brand span {
  max-width: 160px;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 760;
}

.desktop-nav a {
  opacity: 0.82;
  transition: opacity 160ms ease, color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 820;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.btn-primary {
  color: var(--green-950);
  background: linear-gradient(135deg, #f7e5b5, var(--gold));
  box-shadow: 0 18px 40px rgba(200, 169, 106, 0.28);
}

.btn-secondary {
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.58);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(7, 23, 19, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  top: 76px;
  right: 18px;
  left: 18px;
  display: none;
  padding: 18px;
  color: var(--green-950);
  background: rgba(250, 250, 247, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
  gap: 4px;
}

.mobile-menu a {
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
}

.mobile-menu a:hover {
  background: var(--ivory);
}

.hero-lab {
  position: relative;
  min-height: 100vh;
  padding: 112px clamp(18px, 5vw, 72px) 70px;
  color: var(--white-lab);
  background:
    radial-gradient(circle at 17% 22%, rgba(125, 175, 124, 0.34), transparent 30%),
    radial-gradient(circle at 75% 15%, rgba(200, 169, 106, 0.24), transparent 26%),
    linear-gradient(135deg, var(--green-950), var(--green-900) 54%, #24362f);
  overflow: hidden;
}

.hero-lab::before,
.hero-lab::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-lab::before {
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 72%);
}

.hero-lab::after {
  right: -22vw;
  bottom: -40vh;
  width: 72vw;
  height: 72vw;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 90px rgba(255, 255, 255, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 182px);
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(250, 250, 247, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.metric-row div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.metric-row strong {
  display: block;
  color: var(--white-lab);
  font-size: 30px;
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 8px;
  color: rgba(250, 250, 247, 0.68);
  font-size: 13px;
}

.product-universe {
  position: relative;
  min-height: 650px;
}

.image-universe {
  display: grid;
  place-items: center;
}

.hero-product-image {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  border-radius: 34px;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.28);
  transform-origin: center;
}

.lab-orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit-one {
  width: min(560px, 86vw);
  height: min(560px, 86vw);
}

.orbit-two {
  width: min(390px, 68vw);
  height: min(390px, 68vw);
  transform: translate(-50%, -50%) rotate(22deg);
}

.floating-product,
.floating-label,
.hero-core {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.floating-product {
  display: grid;
  align-content: space-between;
  width: 250px;
  min-height: 310px;
  padding: 24px;
  border-radius: 28px;
  animation: floatY 7s ease-in-out infinite;
}

.floating-label {
  z-index: 4;
  width: min(255px, 42%);
  padding: 18px;
  border-radius: 20px;
}

.floating-product span,
.floating-label span,
.hero-core span {
  color: rgba(250, 250, 247, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-product strong,
.floating-label strong,
.hero-core strong {
  display: block;
  color: var(--white-lab);
  font-size: 24px;
  line-height: 1.06;
}

.label-gummies {
  left: -6px;
  bottom: 78px;
}

.label-lab {
  right: -8px;
  top: 78px;
}

.product-gummies {
  top: 32px;
  left: 3%;
}

.product-powder {
  right: 1%;
  bottom: 52px;
  animation-delay: -2s;
}

.product-capsules {
  top: 180px;
  right: 21%;
  min-height: 270px;
  animation-delay: -4s;
}

.hero-core {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  padding: 32px;
  text-align: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.mini-gummies,
.capsule-stack {
  position: relative;
  min-height: 120px;
}

.mini-gummies i,
.capsule-stack i {
  position: absolute;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.16));
}

.mini-gummies i {
  width: 74px;
  height: 62px;
  border-radius: 45% 55% 48% 52%;
  background: linear-gradient(145deg, #f2c76e, #d06d4a);
}

.mini-gummies i:nth-child(1) {
  left: 10px;
  top: 26px;
  transform: rotate(-20deg);
}

.mini-gummies i:nth-child(2) {
  left: 82px;
  top: 52px;
  background: linear-gradient(145deg, #9edb93, #388a58);
  transform: rotate(16deg);
}

.mini-gummies i:nth-child(3) {
  right: 12px;
  top: 10px;
  background: linear-gradient(145deg, #e7ad62, #b97c41);
}

.powder-wave {
  height: 118px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 34%, rgba(255, 255, 255, 0.8) 0 3px, transparent 4px),
    radial-gradient(circle at 64% 60%, rgba(255, 255, 255, 0.62) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(200, 169, 106, 0.9), rgba(255, 255, 255, 0.24));
}

.capsule-stack i {
  width: 118px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f8e4ac 0 50%, #7daf7c 50% 100%);
}

.capsule-stack i:nth-child(1) {
  left: 30px;
  top: 16px;
  transform: rotate(-18deg);
}

.capsule-stack i:nth-child(2) {
  left: 58px;
  top: 62px;
  transform: rotate(14deg);
}

.capsule-stack i:nth-child(3) {
  left: 10px;
  top: 94px;
  transform: rotate(2deg);
}

@keyframes floatY {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

.ticker {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.ticker span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 16px;
  color: var(--green-900);
  font-weight: 850;
  text-align: center;
  background: var(--ivory);
}

.section {
  padding: clamp(74px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.formula-copy > p,
.trust-copy > p,
.cta-copy > p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
}

.product-matrix {
  background:
    radial-gradient(circle at 85% 12%, rgba(125, 175, 124, 0.2), transparent 30%),
    var(--white-lab);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: space-between;
  padding: 26px;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(7, 23, 19, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 34px 84px rgba(7, 23, 19, 0.14);
}

.product-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 32%, transparent);
  transition: scale 240ms ease;
}

.product-card:hover::before {
  scale: 1.25;
}

.product-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 0.78;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent) 18%, white);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.26), 0 20px 38px rgba(7, 23, 19, 0.12);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.05);
}

.product-card h3,
.product-card p,
.product-tags,
.product-card .card-link {
  position: relative;
  z-index: 1;
}

.product-card p {
  color: var(--muted);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.product-tags span {
  padding: 7px 10px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 24, 22, 0.08);
  border-radius: 999px;
}

.card-link {
  color: var(--green-900);
  font-weight: 900;
}

.journey-section {
  color: var(--white-lab);
  background: var(--green-950);
}

.journey-section .section-heading p:not(.eyebrow) {
  color: rgba(250, 250, 247, 0.68);
}

.journey-shell {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: stretch;
}

.journey-track {
  position: relative;
  width: 6px;
  margin: 12px auto;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.journey-progress {
  width: 100%;
  height: 8%;
  background: linear-gradient(180deg, var(--gold), var(--leaf));
  border-radius: inherit;
  transition: height 180ms ease;
}

.journey-capsule {
  position: absolute;
  left: 50%;
  top: 0;
  width: 68px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0 50%, var(--leaf) 50%);
  box-shadow: 0 0 34px rgba(200, 169, 106, 0.42);
  transform: translate(-50%, -4px) rotate(90deg);
  transition: top 180ms ease;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-step {
  min-height: 280px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  opacity: 0.72;
  transition: opacity 220ms ease, background 220ms ease, transform 220ms ease;
}

.journey-step.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-6px);
}

.journey-step span {
  color: var(--gold);
  font-weight: 900;
}

.journey-step p {
  color: rgba(250, 250, 247, 0.65);
}

.formula-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(250, 250, 247, 0.94), rgba(247, 243, 234, 0.82)),
    url("./assets/formula-lab-bg.webp") center / cover no-repeat;
}

.lab-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 20px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.lab-note span {
  color: var(--muted);
}

.builder-card {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 22, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.builder-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.builder-tab {
  min-height: 44px;
  color: var(--green-900);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.builder-tab.is-active {
  color: var(--white-lab);
  background: var(--green-900);
}

.builder-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.builder-option {
  min-height: 72px;
  padding: 16px;
  text-align: left;
  color: var(--green-950);
  background: var(--white-lab);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 850;
}

.builder-option.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.18);
}

.concept-result {
  margin-top: 18px;
  padding: 22px;
  color: var(--white-lab);
  background:
    radial-gradient(circle at 78% 20%, rgba(125, 175, 124, 0.28), transparent 28%),
    var(--green-900);
  border-radius: 22px;
}

.concept-result h3 {
  margin-bottom: 8px;
}

.concept-result p {
  color: rgba(250, 250, 247, 0.7);
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.result-tags span {
  padding: 7px 10px;
  color: var(--green-950);
  font-size: 12px;
  font-weight: 900;
  background: var(--gold);
  border-radius: 999px;
}

.trust-system {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  background: var(--white-lab);
}

.trust-visual {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.trust-visual img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.trust-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 23, 19, 0.62));
}

.quality-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  padding: 22px;
  color: var(--white-lab);
  background: rgba(7, 23, 19, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(16px);
}

.quality-badge span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quality-badge strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.trust-card {
  padding: 22px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.trust-card .icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--green-950);
  background: var(--gold);
  border-radius: 14px;
  font-weight: 950;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

.concept-gallery-section {
  background: linear-gradient(180deg, var(--ivory), var(--white-lab));
}

.concept-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 390px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
}

.concept-card {
  min-height: 430px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  color: var(--white-lab);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.22), transparent 27%),
    linear-gradient(145deg, var(--green-900), var(--green-950));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  scroll-snap-align: start;
}

.concept-visual {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.concept-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.concept-card:hover .concept-visual img {
  transform: scale(1.05);
}

.concept-card p {
  color: rgba(250, 250, 247, 0.66);
}

.concept-meta {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.concept-meta span {
  padding: 9px 10px;
  color: var(--green-950);
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
}

.concept-card button {
  width: fit-content;
}

.global-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(74px, 9vw, 128px) clamp(18px, 5vw, 72px);
  color: var(--white-lab);
  background:
    linear-gradient(135deg, rgba(7, 23, 19, 0.94), rgba(18, 60, 47, 0.88)),
    url("./assets/Certification and logistics.webp") center / cover no-repeat;
}

.cta-copy > p {
  color: rgba(250, 250, 247, 0.7);
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cta-points span {
  padding: 10px 12px;
  color: var(--green-950);
  font-weight: 850;
  background: var(--gold);
  border-radius: 999px;
}

.inquiry-form {
  padding: clamp(22px, 4vw, 34px);
  color: var(--green-950);
  background: rgba(250, 250, 247, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.form-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 900;
}

.form-progress i {
  display: block;
  width: 33%;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), var(--leaf));
  border-radius: 999px;
  transition: width 180ms ease;
}

.form-panel {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-panel.is-active {
  display: grid;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--green-950);
  background: var(--white-lab);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.16);
}

.builder-summary {
  grid-column: 1 / -1;
  padding: 14px;
  color: var(--green-900);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.is-hidden {
  display: none !important;
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--green-900);
  font-weight: 850;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 19, 0.66);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 88vh;
  overflow: auto;
  padding: 30px;
  background: var(--white-lab);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  color: var(--green-950);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 26px;
}

.modal-image {
  width: 100%;
  max-height: 360px;
  margin: 16px 0 20px;
  object-fit: cover;
  border-radius: 20px;
}

.whatsapp-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  color: var(--green-950);
  background: linear-gradient(135deg, #f7e5b5, var(--gold));
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(7, 23, 19, 0.2);
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 28px;
  align-items: start;
  padding: 42px clamp(18px, 5vw, 72px);
  color: rgba(250, 250, 247, 0.72);
  background: #07110f;
}

.footer img {
  width: 160px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer p,
.footer address {
  margin: 0;
  font-style: normal;
}

.footer nav {
  display: grid;
  gap: 8px;
  color: var(--white-lab);
  font-weight: 850;
}

.page-shell .navbar {
  position: sticky;
}

.page-hero {
  padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 72px);
  background: var(--ivory);
}

.page-hero h1 {
  max-width: 900px;
  color: var(--green-950);
}

.page-hero p {
  max-width: 720px;
}

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

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid,
  .formula-lab,
  .trust-system,
  .global-cta {
    grid-template-columns: 1fr;
  }

  .product-universe {
    min-height: 560px;
  }

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

  .journey-shell {
    grid-template-columns: 72px 1fr;
  }

  .journey-list {
    grid-template-columns: 1fr;
  }

  .journey-step {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 68px;
    padding: 11px 16px;
  }

  .brand img {
    width: 126px;
  }

  .brand span,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    top: 68px;
  }

  .hero-lab {
    min-height: auto;
    padding: 98px 16px 56px;
  }

  h1 {
    font-size: clamp(44px, 15vw, 58px);
  }

  .hero-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .metric-row,
  .ticker,
  .product-grid,
  .builder-tabs,
  .builder-options,
  .trust-grid,
  .form-panel,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-lab .metric-row {
    display: none;
  }

  .product-universe {
    min-height: 360px;
    margin-top: 26px;
  }

  .hero-product-image {
    border-radius: 22px;
  }

  .floating-product {
    width: min(235px, 72vw);
    min-height: 230px;
  }

  .floating-label {
    display: none;
  }

  .hero-core {
    display: none;
  }

  .product-gummies {
    top: 14px;
    left: 0;
  }

  .product-capsules {
    top: 172px;
    right: 0;
  }

  .product-powder {
    bottom: 0;
    left: 8%;
    right: auto;
  }

  .hero-core {
    width: 190px;
    height: 190px;
  }

  .section,
  .global-cta {
    padding: 64px 16px;
  }

  .journey-shell {
    grid-template-columns: 1fr;
  }

  .journey-track {
    display: none;
  }

  .concept-gallery {
    grid-auto-columns: minmax(276px, 88vw);
  }

  .form-actions {
    flex-direction: column;
  }
}
