:root {
  --green-950: #062f20;
  --green-900: #0a3d29;
  --green-800: #0f5735;
  --green-700: #147441;
  --green-600: #19934b;
  --green-500: #20ae58;
  --green-400: #45cf6d;
  --lime: #84e35a;
  --orange: #f38b24;
  --orange-light: #ffb657;
  --ink: #12211a;
  --muted: #607069;
  --line: #dce7df;
  --cream: #f6f8f1;
  --mint: #eaf8ed;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(9, 55, 35, 0.08);
  --shadow-md: 0 24px 65px rgba(9, 55, 35, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-950);
  transform: translateY(-150%);
}

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

.promo-strip {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 5px 20px;
  color: #eaffef;
  background: var(--green-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promo-strip strong {
  color: var(--lime);
  font-size: 14px;
}

.promo-old {
  opacity: 0.7;
  text-decoration: line-through;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(14, 83, 51, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 22px rgba(9, 55, 35, 0.04);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px 14px 14px 5px;
  background: linear-gradient(145deg, var(--green-700), var(--green-950));
  box-shadow: 0 8px 20px rgba(20, 116, 65, 0.22);
  transform: rotate(-5deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
}

.brand-mark::before {
  width: 21px;
  height: 25px;
  border-radius: 100% 4px 100% 4px;
  background: var(--lime);
  transform: translate(2px, -1px) rotate(12deg);
}

.brand-mark::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: white;
  transform: rotate(-43deg);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.045em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--green-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 10px;
  color: #34473e;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green-800);
  background: var(--mint);
}

.header-order {
  flex: 0 0 auto;
  padding: 11px 17px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 8px 20px rgba(20, 116, 65, 0.2);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-950);
}

.breadcrumb {
  padding-top: 20px;
  padding-bottom: 2px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: #9eada6;
  content: "/";
}

.breadcrumb a {
  color: var(--green-700);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(125, 225, 91, 0.28), transparent 23%),
    radial-gradient(circle at 68% 80%, rgba(243, 139, 36, 0.12), transparent 24%),
    linear-gradient(135deg, #f8fbf3 0%, #eff8ec 55%, #e0f3e4 100%);
}

.hero::before {
  position: absolute;
  top: -120px;
  left: -140px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(24, 142, 72, 0.13);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  top: 18%;
  right: 5%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 42px 50px 0 -3px var(--green-500), -54px 90px 0 -4px var(--orange-light);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  align-items: center;
  gap: 70px;
  padding-top: 58px;
  padding-bottom: 72px;
}

.hero-inner .hero-grid {
  min-height: 520px;
  padding-top: 40px;
  padding-bottom: 58px;
}

.eyebrow,
.section-kicker,
.form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(243, 139, 36, 0.14);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  color: var(--green-950);
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-inner h1 {
  font-size: clamp(36px, 4.2vw, 58px);
}

.hero-intro {
  max-width: 680px;
  color: #405248;
  font-size: 19px;
  line-height: 1.7;
}

.hero-intro p {
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 13px 28px rgba(20, 116, 65, 0.24);
}

.button-secondary {
  border-color: rgba(15, 87, 53, 0.18);
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.72);
}

.button-light {
  color: var(--green-950);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5, 39, 25, 0.18);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  margin: 27px 0 0;
  padding: 0;
  color: #4f6258;
  font-size: 12px;
  font-weight: 750;
  list-style: none;
}

.trust-row li::before {
  display: inline-grid;
  width: 19px;
  height: 19px;
  margin-right: 7px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-600);
  font-size: 11px;
  content: "✓";
}

.hero-visual {
  display: grid;
  min-width: 0;
  place-items: center;
}

.product-stage {
  position: relative;
  display: grid;
  width: min(100%, 470px);
  min-height: 540px;
  place-items: center;
}

.product-stage.compact {
  min-height: 420px;
  transform: scale(0.86);
}

.product-stage img {
  position: relative;
  z-index: 3;
  width: auto;
  height: min(525px, 69vh);
  filter: drop-shadow(0 30px 26px rgba(4, 38, 25, 0.24));
}

.stage-halo {
  position: absolute;
  z-index: 1;
  width: 420px;
  height: 420px;
  border: 52px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(94, 211, 102, 0.14);
  box-shadow: inset 0 0 0 1px rgba(26, 147, 75, 0.08);
}

.stage-badge {
  position: absolute;
  z-index: 5;
  right: -4px;
  bottom: 45px;
  display: grid;
  min-width: 164px;
  padding: 15px 19px;
  border: 5px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  color: var(--white);
  background: var(--green-950);
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}

.stage-badge span:first-child {
  color: #b8ddc5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-badge strong {
  margin: 4px 0;
  color: var(--lime);
  font-size: 25px;
}

.stage-badge .old-price {
  font-size: 12px;
  opacity: 0.68;
  text-decoration: line-through;
}

.stage-note {
  position: absolute;
  z-index: 4;
  padding: 8px 13px;
  border: 1px solid rgba(15, 87, 53, 0.13);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.note-one {
  top: 72px;
  left: 8px;
}

.note-two {
  top: 150px;
  right: 4px;
}

.hero-wave {
  position: absolute;
  z-index: 1;
  right: -4%;
  bottom: -70px;
  width: 52%;
  height: 145px;
  border-radius: 50% 0 0 0;
  background: var(--green-700);
  transform: rotate(-5deg);
  transform-origin: right bottom;
  opacity: 0.97;
}

.article-section {
  padding: 90px 0;
  background: var(--white);
}

.article-section.section-tint {
  background: var(--cream);
}

.section-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
}

.section-heading {
  position: relative;
  align-self: start;
}

.section-heading h2 {
  margin: 16px 0 0;
  color: var(--green-950);
  font-size: clamp(30px, 3.2vw, 47px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-body {
  min-width: 0;
  color: #34463c;
}

.section-body p {
  margin: 0;
}

.section-body p + p {
  margin-top: 16px;
}

.section-intro,
.plain-copy {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.8;
}

.subsection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.content-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.content-card.featured {
  color: #eaf6ee;
  border-color: var(--green-900);
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
}

.content-card.featured p,
.content-card.featured h3 {
  color: inherit;
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px 12px 12px 4px;
  background: linear-gradient(145deg, rgba(132, 227, 90, 0.34), rgba(32, 174, 88, 0.14));
}

.card-icon::before {
  display: block;
  width: 13px;
  height: 20px;
  margin: 7px auto 0;
  border: 3px solid var(--green-600);
  border-left: 0;
  border-bottom: 0;
  content: "";
  transform: rotate(45deg);
}

.content-card.featured .card-icon {
  background: rgba(255, 255, 255, 0.15);
}

.content-card.featured .card-icon::before {
  border-color: var(--lime);
}

.content-card h3,
.faq-card h3 {
  margin: 19px 0 12px;
  color: var(--green-900);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.018em;
}

.content-card p {
  color: #53645b;
  font-size: 14px;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-grid li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(20, 116, 65, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.benefit-grid li > span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: var(--green-600);
  font-size: 13px;
  font-weight: 900;
}

.benefit-grid p {
  color: #34463c;
  font-size: 14px;
  line-height: 1.6;
}

.study-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 22%, rgba(132, 227, 90, 0.17), transparent 24%),
    linear-gradient(135deg, var(--green-950), #0d5132);
}

.study-section .section-kicker,
.study-section .section-heading h2,
.study-section .section-intro {
  color: var(--white);
}

.study-section .section-intro {
  opacity: 0.82;
}

.study-section .section-kicker::before {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(132, 227, 90, 0.13);
}

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

.metric-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 41px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.metric-card p {
  color: #d6e9dc;
  font-size: 13px;
  line-height: 1.6;
}

.price-banner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  padding: 26px 30px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 0%, rgba(132, 227, 90, 0.24), transparent 34%),
    var(--green-900);
  box-shadow: var(--shadow-md);
}

.price-copy {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.price-copy span {
  display: none;
}

.price-copy strong {
  color: var(--lime);
  font-size: 36px;
  letter-spacing: -0.035em;
}

.price-copy s {
  color: #b7cec0;
  font-size: 15px;
}

.discount-bubble {
  display: grid;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  text-align: center;
}

.discount-bubble strong {
  color: var(--orange-light);
  font-size: 20px;
  line-height: 1.1;
}

.discount-bubble span {
  color: #c5daca;
  font-size: 9px;
  text-transform: uppercase;
}

.faq-section {
  background: #f5f8f3;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.faq-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(10, 61, 41, 0.045);
}

.faq-card h3 {
  position: relative;
  margin: 0 0 9px;
  padding-left: 29px;
}

.faq-card h3::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-700);
  background: var(--mint);
  font-size: 12px;
  content: "?";
}

.faq-answer {
  padding-left: 29px;
  color: #53645b;
  font-size: 15px;
}

.order-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 90%, rgba(243, 139, 36, 0.14), transparent 24%),
    radial-gradient(circle at 78% 10%, rgba(132, 227, 90, 0.13), transparent 25%),
    var(--green-950);
}

.order-section::before {
  position: absolute;
  right: -130px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.order-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 88px;
}

.eyebrow-light {
  color: var(--lime);
}

.order-title {
  max-width: 580px;
  margin: 16px 0 20px;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.order-copy > p {
  max-width: 590px;
  color: #bdd3c5;
}

.order-product-mini {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
  padding: 12px 20px 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.order-product-mini img {
  width: 48px;
  height: 78px;
  object-fit: contain;
}

.order-product-mini div {
  display: grid;
}

.order-product-mini strong {
  color: var(--white);
  font-size: 15px;
}

.order-product-mini span {
  color: #a9c3b3;
  font-size: 11px;
}

.order-card {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.form-kicker {
  color: var(--green-600);
  font-size: 10px;
}

.order-form-title {
  color: var(--green-950);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.form-price {
  display: grid;
  flex: 0 0 auto;
  justify-items: end;
  line-height: 1.2;
}

.form-price strong {
  color: var(--green-700);
  font-size: 21px;
}

.form-price span {
  color: #89958e;
  font-size: 12px;
  text-decoration: line-through;
}

.order-form {
  display: grid;
  gap: 15px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field {
  display: grid;
  gap: 7px;
}

.field > span {
  color: #33443b;
  font-size: 12px;
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 53px;
  padding: 12px 15px;
  border: 1px solid #cfddd4;
  border-radius: 13px;
  color: var(--ink);
  background: #fbfdfb;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.field input:focus {
  border-color: var(--green-500);
  outline: none;
  box-shadow: 0 0 0 4px rgba(32, 174, 88, 0.12);
}

.submit-button {
  min-height: 57px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #e96b17);
  box-shadow: 0 13px 28px rgba(237, 112, 23, 0.24);
  font-weight: 900;
  cursor: pointer;
}

.submit-button:hover {
  filter: saturate(1.08) brightness(1.03);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
  color: #68766f;
  font-size: 10px;
  line-height: 1.5;
}

.privacy-check input {
  margin-top: 3px;
  accent-color: var(--green-700);
}

.privacy-check a {
  color: var(--green-700);
}

.lead-status {
  min-height: 20px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.lead-status.ok {
  color: var(--green-700);
}

.lead-status.error {
  color: #b73d25;
}

.site-footer {
  padding: 72px 0 28px;
  color: #b9cec1;
  background: #052a1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, minmax(130px, 0.65fr));
  gap: 54px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: var(--lime);
}

.footer-brand > p {
  max-width: 360px;
  margin: 20px 0 0;
  font-size: 14px;
}

.footer-brand .medical-note {
  color: #8fad9a;
  font-size: 11px;
  line-height: 1.6;
}

.footer-title {
  display: block;
  margin-bottom: 17px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #a8c2b1;
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #789583;
  font-size: 11px;
}

.cookie-banner {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(calc(100% - 44px), 520px);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px;
  color: var(--white);
  background: rgba(6, 47, 32, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  font-size: 14px;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: #bed1c5;
  font-size: 10px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: var(--white);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions .cookie-accept {
  border-color: var(--green-500);
  background: var(--green-500);
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

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

@media (max-width: 1100px) {
  .main-nav a {
    padding-inline: 7px;
    font-size: 12px;
  }

  .hero-grid {
    gap: 35px;
  }

  .section-shell {
    gap: 50px;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, minmax(120px, 0.7fr));
    gap: 30px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 90px;
  }

  .topbar {
    min-height: 68px;
  }

  .header-order {
    margin-left: auto;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 120;
    top: 102px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 3px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    padding: 12px 14px;
    font-size: 14px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 0.72fr;
    gap: 14px;
    padding-top: 54px;
    padding-bottom: 70px;
  }

  .product-stage,
  .product-stage.compact {
    min-height: 430px;
    transform: none;
  }

  .product-stage img {
    height: 410px;
  }

  .stage-halo {
    width: 330px;
    height: 330px;
    border-width: 42px;
  }

  .stage-note {
    display: none;
  }

  .stage-badge {
    right: -8px;
    bottom: 35px;
  }

  .section-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading h2 {
    max-width: 720px;
  }

  .order-layout {
    gap: 45px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  body.page-home {
    padding-bottom: 69px;
  }

  .promo-strip {
    min-height: 30px;
    gap: 8px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .promo-strip strong {
    font-size: 12px;
  }

  .header-order {
    display: none;
  }

  .hero-grid,
  .hero-inner .hero-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1,
  .hero-inner h1,
  .hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 59px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .product-stage,
  .product-stage.compact {
    min-height: 420px;
  }

  .product-stage img {
    height: 410px;
  }

  .stage-badge {
    right: max(0px, calc(50% - 205px));
    bottom: 40px;
    min-width: 146px;
    padding: 13px 15px;
  }

  .stage-badge strong {
    font-size: 22px;
  }

  .article-section {
    padding: 66px 0;
  }

  .subsection-grid,
  .benefit-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 12px;
  }

  .metric-card strong {
    margin: 0;
    font-size: 35px;
  }

  .price-banner {
    grid-template-columns: 1fr auto;
  }

  .price-banner .button {
    grid-column: 1 / -1;
  }

  .order-section {
    padding: 72px 0;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 69px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px max(16px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    background: rgba(6, 47, 32, 0.96);
    box-shadow: 0 -14px 38px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-order-bar div {
    display: grid;
    line-height: 1.1;
  }

  .mobile-order-bar strong {
    color: var(--lime);
    font-size: 20px;
  }

  .mobile-order-bar s {
    color: #a8c1b1;
    font-size: 10px;
  }

  .mobile-order-bar a {
    padding: 11px 17px;
    border-radius: 11px;
    color: var(--white);
    background: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
  }

  .cookie-banner {
    right: 12px;
    bottom: 82px;
    width: calc(100% - 24px);
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: 96px;
    right: 14px;
    left: 14px;
  }

  .breadcrumb {
    padding-top: 14px;
  }

  .hero h1 {
    margin-top: 14px;
    margin-bottom: 18px;
    font-size: 39px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    gap: 9px 15px;
    font-size: 10px;
  }

  .product-stage,
  .product-stage.compact {
    min-height: 386px;
  }

  .product-stage img {
    height: 380px;
  }

  .stage-halo {
    width: 290px;
    height: 290px;
    border-width: 36px;
  }

  .stage-badge {
    right: 0;
    bottom: 28px;
  }

  .article-section {
    padding: 56px 0;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .section-intro,
  .plain-copy {
    font-size: 16px;
  }

  .content-card,
  .faq-card {
    padding: 20px;
  }

  .benefit-grid li {
    padding: 15px;
  }

  .metric-card {
    grid-template-columns: 76px 1fr;
    padding: 20px;
  }

  .price-banner {
    gap: 14px;
    padding: 22px;
  }

  .price-copy {
    display: grid;
    gap: 0;
  }

  .price-copy strong {
    font-size: 30px;
  }

  .order-title {
    font-size: 38px;
  }

  .order-card {
    padding: 21px;
    border-radius: 22px;
  }

  .order-card-head {
    gap: 10px;
  }

  .order-form-title {
    font-size: 20px;
  }

  .form-price strong {
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    margin-top: 38px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .cookie-actions button {
    flex: 1;
  }
}

@media (max-width: 380px) {
  .brand-copy small {
    display: none;
  }

  .promo-strip span:first-child {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .product-stage img {
    height: 350px;
  }

  .stage-badge {
    min-width: 134px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

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

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

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

@media print {
  .promo-strip,
  .site-header,
  .hero-actions,
  .mobile-order-bar,
  .cookie-banner,
  .order-section {
    display: none !important;
  }

  .hero,
  .article-section,
  .article-section.section-tint,
  .study-section {
    color: #000;
    background: #fff;
  }

  .study-section .section-kicker,
  .study-section .section-heading h2,
  .study-section .section-intro,
  .metric-card p {
    color: #000;
  }

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