/* =========================================================
   SUSTAFLEX — canonical production stylesheet
   Build 007.3
   Primary typeface: Noto Sans with safe sans-serif fallback
   ========================================================= */

/* ---------- Foundation ---------- */
:root {
    --ink: #10261f;
    --text: #33483f;
    --muted: #66766f;
    --green: #0f5b46;
    --green-dark: #0b4938;
    --green-soft: #edf5f1;
    --surface: #ffffff;
    --surface-alt: #f8fbf9;
    --line: #dce7e1;
    --orange: #e34725;
    --warning-bg: #fffaf0;
    --warning-line: #e4d8bd;
    --shell: 1180px;
    --radius: 14px;
    --shadow: 0 12px 34px rgba(16, 38, 31, 0.08);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--surface);
    color: var(--ink);
    font-family: "Noto Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: "Noto Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

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

a {
    color: inherit;
}

button,
input {
    font-size: inherit;
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 10px;
    z-index: 100;
}

.skip-link:focus {
    left: 12px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.section {
    padding: 74px 0;
}

.section h2,
.facts h2 {
    margin: 0 0 26px;
    font-size: clamp(27px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.25;
}

.section h3 {
    font-weight: 700;
}

.section-kicker,
.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.section-intro {
    max-width: 900px;
    margin: -10px 0 30px;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.72;
}

.meta {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 12.5px;
}

.icon-circle {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
}

.icon-circle svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--green);
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.button:hover {
    border-color: var(--green-dark);
    background: var(--green-dark);
}

.button:active {
    transform: translateY(1px);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
}

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

.button-outline:hover {
    background: var(--green-soft);
    color: var(--green-dark);
}

.price {
    color: var(--orange);
    font-size: 29px;
    font-weight: 700;
    line-height: 1.15;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
}

.header-row {
    display: flex;
    height: 70px;
    align-items: center;
    gap: 28px;
}

.logo {
    flex: 0 0 auto;
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.logo span {
    color: #e4543b;
}

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

.main-nav a {
    color: #283d34;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.language {
    color: #728079;
    font-size: 12px;
    font-weight: 700;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 22px;
}

/* ---------- Hero ---------- */
.hero {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    min-height: 610px;
    grid-template-columns: 56% 44%;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 50px 54px 0;
}

.hero h1 {
    max-width: 730px;
    margin: 0 0 20px;
    font-size: clamp(40px, 4vw, 49px);
    font-weight: 700;
    line-height: 1.1;
}

.hero-lead {
    max-width: 700px;
    margin: 0 0 22px;
    color: #41554b;
    font-size: 16.5px;
    line-height: 1.7;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 4px 0 24px;
}

.hero-benefits > div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #405249;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.42;
}

.hero-benefits svg,
.benefits-row svg,
.buy-points svg,
.facts-row svg,
.about-facts svg,
.modal-trust svg {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--green);
    stroke-width: 1.65;
}

.hero-commerce {
    display: flex;
    gap: 54px;
    margin-bottom: 18px;
    padding-top: 17px;
    border-top: 1px solid var(--line);
}

.hero-commerce > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-commerce small,
.order-product small,
.mobile-order-bar small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.hero-commerce strong:not(.price) {
    font-size: 17px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.hero-visual {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    background: #fbfcfb;
}

.hero-disc {
    position: absolute;
    top: 84px;
    right: 6%;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: #0d503e;
}

.hero-pedestal {
    position: absolute;
    right: 3%;
    bottom: 96px;
    width: 420px;
    height: 82px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
}

.hero-visual img {
    position: relative;
    z-index: 2;
    width: min(430px, 88%);
    height: auto;
    transform: translateY(-8px);
    filter: drop-shadow(0 16px 14px rgba(0, 0, 0, 0.18));
}

.hero-mobile-product {
    display: none;
}

/* ---------- Advantages ---------- */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.advantage-card {
    min-height: 270px;
    padding: 23px 16px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    text-align: center;
    box-shadow: 0 6px 18px rgba(16, 38, 31, 0.035);
}

.advantage-card .icon-circle {
    margin: 0 auto 13px;
}

.advantage-card h3 {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.35;
}

.advantage-card p {
    margin: 0;
    color: #56675f;
    font-size: 12.5px;
    line-height: 1.58;
}

.advantages-extra {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.advantages-extra article {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--green-soft);
}

.check-badge {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.advantages-extra h3 {
    margin: 0 0 5px;
    font-size: 13.5px;
}

.advantages-extra p {
    margin: 0;
    color: #52635b;
    font-size: 12px;
    line-height: 1.55;
}

/* ---------- Benefits strip ---------- */
.benefits-strip {
    padding: 24px 0 30px;
    border-block: 1px solid var(--line);
    background: #fbfcfb;
}

.benefits-strip h2 {
    margin: 0 0 18px;
    color: var(--green);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.benefits-row > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #30473d;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.4;
}

.benefits-row svg {
    width: 28px;
    height: 28px;
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 50px;
    align-items: start;
}

.about-copy p:not(.section-kicker) {
    max-width: 790px;
    margin: 0 0 18px;
    color: #384d43;
    font-size: 16.5px;
    line-height: 1.75;
}

.about-facts {
    position: sticky;
    top: 100px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-alt);
}

.about-facts h3 {
    margin: 0 0 15px;
    font-size: 18px;
}

.about-facts > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.about-facts > div:first-of-type {
    border-top: 0;
}

.about-facts span {
    display: flex;
    flex-direction: column;
}

.about-facts strong {
    font-size: 13px;
    font-weight: 700;
}

.about-facts small {
    color: var(--muted);
    font-size: 12px;
}

/* ---------- Composition ---------- */
.composition {
    background: var(--surface-alt);
}

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

.ingredient-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.ingredient-heading {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
}

.ingredient-icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    overflow: hidden;
    border: 1px solid #e4ece8;
    border-radius: 12px;
    background: #fff;
}

.ingredient-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.ingredient-card h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
}

.ingredient-excerpt {
    margin: 14px 0 12px;
    color: #4d5f56;
    font-size: 13px;
    line-height: 1.62;
}

.ingredient-card details {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 10px;
}

.ingredient-card summary,
.expert-card summary,
.review-card summary {
    color: var(--green);
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 700;
}

.ingredient-card details p,
.expert-card details p,
.review-card details p {
    color: #40534a;
    font-size: 13.5px;
    line-height: 1.68;
}

/* ---------- Comparison ---------- */
.comparison {
    background: #fff;
}

.table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.table-wrap table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.table-wrap th {
    padding: 14px;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

.table-wrap td {
    padding: 14px;
    border-top: 1px solid var(--line);
    color: #3d5047;
    font-size: 13px;
    line-height: 1.58;
    vertical-align: top;
}

.table-wrap tbody tr:nth-child(even) {
    background: #f8faf9;
}

/* ---------- Usage ---------- */
.usage {
    background: var(--surface-alt);
}

.usage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0;
}

.steps > div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.steps span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.steps p {
    margin: 12px 0 0;
    color: #3f5249;
    font-size: 12.5px;
    line-height: 1.55;
}

.note {
    padding: 14px 16px;
    border-left: 4px solid var(--green);
    border-radius: 8px;
    background: #eaf4ee;
    color: #31473d;
    font-size: 13px;
}

.usage figure {
    margin: 0;
}

.usage figure img {
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* ---------- Safety ---------- */
.safety-box {
    padding: 30px;
    border: 1px solid #cfddd5;
    border-radius: 16px;
    background: #f7faf8;
}

.safety-heading {
    display: flex;
    gap: 18px;
}

.safety-heading h2 {
    margin-bottom: 8px;
}

.safety-heading p:not(.section-kicker) {
    margin: 0;
    color: #53665d;
}

.safety-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    margin-top: 24px;
}

.safety-grid ul {
    margin: 0;
    padding-left: 20px;
}

.safety-grid li {
    margin-bottom: 10px;
    color: #3d5147;
}

.safety-grid h3 {
    margin-top: 0;
}

.safety-grid p {
    color: #40534a;
}

.warning {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid var(--warning-line);
    border-radius: 10px;
    background: var(--warning-bg);
}

.warning p {
    margin: 6px 0 0;
}

/* ---------- Experts ---------- */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.expert-card {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.expert-card > img {
    width: 130px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
}

.expert-card--no-photo {
    grid-template-columns: minmax(0, 1fr);
}

.expert-card h3 {
    margin: 2px 0 3px;
    font-size: 17px;
}

.expert-card > div > p:not(.meta) {
    margin: 0 0 10px;
    color: #43564d;
    font-size: 13px;
    line-height: 1.63;
}

/* ---------- Reviews ---------- */
.reviews {
    background: var(--surface-alt);
}

.reviews-scroll {
    display: grid;
    grid-auto-columns: minmax(270px, 1fr);
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.review-card {
    min-height: 325px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    scroll-snap-align: start;
}

.review-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 14px;
}

.review-heading img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
}

.review-heading--no-photo {
    min-height: 54px;
    align-items: flex-start;
}

.review-card h3 {
    margin: 2px 0;
    font-size: 15px;
}

.review-card > p {
    color: #45584e;
    font-size: 13px;
    line-height: 1.65;
}

/* ---------- Order ---------- */
.buy {
    border-top: 1px solid var(--line);
}

.buy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: 34px;
    align-items: stretch;
}

.buy-copy p:not(.section-kicker) {
    color: #45594f;
    font-size: 15px;
    line-height: 1.7;
}

.buy-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.buy-points > div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-alt);
    color: #3d5248;
    font-size: 11.5px;
    font-weight: 600;
}

.order-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}

.order-product {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.order-product img {
    width: 108px;
    height: 96px;
    object-fit: contain;
}

.order-product > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 16px;
}

.form-heading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-heading strong {
    font-size: 16px;
    font-weight: 700;
}

.form-heading span {
    color: var(--muted);
    font-size: 12px;
}

.order-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #344a40;
    font-size: 13.5px;
    font-weight: 600;
}

.order-form input[type="text"],
.order-form input[type="tel"] {
    width: 100%;
    height: 52px;
    padding: 0 14px;
    border: 1px solid #cfdcd5;
    border-radius: 8px;
    outline: 0;
    background: #fff;
    color: var(--ink);
    font-size: 16px;
    font-weight: 400;
}

.order-form input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(15, 91, 70, 0.1);
}

.phone-field {
    display: grid;
    grid-template-columns: 56px 1fr;
    overflow: hidden;
    border: 1px solid #cfdcd5;
    border-radius: 8px;
    background: #fff;
}

.phone-field:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(15, 91, 70, 0.1);
}

.phone-field input[type="tel"] {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.phone-prefix {
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    color: #53665d;
    font-size: 14px;
    font-weight: 600;
}

.consent {
    grid-column: 1 / -1;
    display: grid !important;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 9px !important;
    color: #66766f !important;
    font-size: 11.75px !important;
    font-weight: 400 !important;
    line-height: 1.45;
}

.consent input {
    margin-top: 2px;
}

.order-submit,
.form-status {
    grid-column: 1 / -1;
}

.order-submit {
    min-height: 52px;
}

.form-status {
    min-height: 20px;
    margin: 0;
    color: #53655c;
    font-size: 12px;
    line-height: 1.45;
}

.form-status.is-error {
    color: #a23b2d;
}

.form-status.is-success {
    color: var(--green);
    font-weight: 600;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

/* ---------- FAQ ---------- */
.faq-grid {
    columns: 2;
    column-gap: 14px;
}

.faq details {
    break-inside: avoid;
    margin: 0 0 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.faq summary {
    position: relative;
    padding: 15px 44px 15px 16px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.45;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    position: absolute;
    top: 50%;
    right: 16px;
    content: "+";
    color: var(--green);
    font-size: 20px;
    transform: translateY(-50%);
}

.faq details[open] summary::after {
    content: "−";
}

.faq details p {
    margin: 0;
    padding: 0 16px 16px;
    color: #516159;
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- Facts ---------- */
.facts {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: #f7faf8;
}

.facts h2 {
    margin-bottom: 20px;
    font-size: 21px;
    text-align: center;
}

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

.facts-row > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.facts-row svg {
    width: 29px;
    height: 29px;
}

.facts-row span {
    display: flex;
    flex-direction: column;
}

.facts-row strong {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35;
}

.facts-row small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

/* ---------- Order modal ---------- */
.order-modal[hidden] {
    display: none;
}

.order-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 24px;
}

.order-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 24, 19, 0.58);
    backdrop-filter: blur(4px);
}

.order-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: min(var(--order-vh, 90vh), 760px);
    overflow-y: auto;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(8, 24, 19, 0.28);
}

.order-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f3;
    color: #33483f;
    cursor: pointer;
    font-size: 25px;
}

.order-modal-summary {
    display: grid;
    grid-template-columns: 118px 1fr;
    align-items: center;
    gap: 16px;
    padding-right: 34px;
}

.order-modal-summary img {
    width: 118px;
    height: 105px;
    object-fit: contain;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.12));
}

.order-modal-summary > div > span {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.order-modal-summary h2 {
    margin: 5px 0 8px;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
}

.modal-commerce {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.modal-commerce .price {
    font-size: 24px;
}

.modal-commerce small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.modal-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 15px 0;
}

.modal-trust span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #4e6258;
    font-size: 11.5px;
    font-weight: 600;
}

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

.order-form-modal > * {
    grid-column: 1;
}

.order-success {
    padding: 26px 6px 8px;
    text-align: center;
}

.success-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #eaf4ee;
    color: var(--green);
    font-size: 27px;
    font-weight: 700;
}

.order-success h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.order-success p {
    max-width: 360px;
    margin: 0 auto 20px;
    color: var(--muted);
    font-size: 14px;
}

.order-modal-open {
    overflow: hidden;
}

/* ---------- Mobile order bar ---------- */
.mobile-order-bar {
    display: none;
}

/* ---------- Footer ---------- */
.site-footer {
    padding: 38px 0 20px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
    gap: 38px;
}

.footer-grid p {
    max-width: 260px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.6;
}

.footer-grid h3 {
    margin: 0 0 10px;
    font-size: 13px;
}

.footer-grid a:not(.logo) {
    display: block;
    margin: 5px 0;
    color: #4c5e55;
    font-size: 12px;
    text-decoration: none;
}

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

.copyright {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #eef2f0;
    color: #7a8781;
    font-size: 11px;
    text-align: center;
}

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

@media (max-width: 1080px) {
    .main-nav {
        gap: 18px;
    }

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

    .advantage-card {
        min-height: 235px;
    }

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

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

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

    .site-header {
        background: #fff;
        backdrop-filter: none;
    }

    .header-row {
        height: 60px;
        gap: 12px;
    }

    .logo {
        font-size: 20px;
    }

    .main-nav {
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        border-bottom: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 14px 30px rgba(16, 38, 31, 0.08);
    }

    .main-nav.nav-open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 20px;
        border-top: 1px solid #eef2f0;
        font-size: 15px;
    }

    .header-actions .button,
    .language {
        display: none;
    }

    .menu-button {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .hero-grid {
        display: block;
        min-height: 0;
    }

    .hero-copy {
        padding: 34px 0 36px;
    }

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

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

    .hero-visual {
        display: none;
    }

    .hero-mobile-product {
        position: relative;
        display: flex;
        height: 225px;
        align-items: center;
        justify-content: center;
        margin: 2px 0 18px;
        overflow: hidden;
        border-radius: 18px;
        background: #fbfcfb;
    }

    .hero-mobile-product span {
        position: absolute;
        width: 210px;
        height: 210px;
        border-radius: 50%;
        background: #0d503e;
    }

    .hero-mobile-product img {
        position: relative;
        z-index: 1;
        width: 235px;
        height: 205px;
        object-fit: contain;
        filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.14));
    }

    .hero-benefits {
        grid-template-columns: 1fr 1fr;
        gap: 10px 14px;
    }

    .hero-benefits > div {
        font-size: 12px;
    }

    .hero-commerce {
        gap: 38px;
    }

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

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

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

    .benefits-row {
        display: flex;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .benefits-row > div {
        min-width: 215px;
        scroll-snap-align: start;
    }

    .about-grid,
    .usage-grid,
    .buy-grid {
        grid-template-columns: 1fr;
    }

    .about-facts {
        position: static;
    }

    .usage figure {
        order: -1;
        max-width: 640px;
    }

    .safety-grid,
    .experts-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: 0;
    }

    .buy-grid {
        gap: 22px;
    }

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

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

@media (max-width: 620px) {
    body {
        padding-bottom: 74px;
        font-size: 15.75px;
        line-height: 1.68;
    }

    .shell {
        width: calc(100% - 30px);
    }

    .section {
        padding: 48px 0;
    }

    .section h2,
    .facts h2 {
        margin-bottom: 21px;
        font-size: 25px;
    }

    .section-intro {
        margin-top: -7px;
        font-size: 15.5px;
        line-height: 1.72;
    }

    .section-kicker,
    .eyebrow {
        margin-bottom: 9px;
        font-size: 10.5px;
    }

    .hero-copy {
        padding: 28px 0 30px;
    }

    .hero-copy .eyebrow { order: 1; }
    .hero-copy h1 { order: 2; }
    .hero-mobile-product { order: 3; }
    .hero-commerce { order: 4; }
    .hero-actions { order: 5; }
    .hero-lead { order: 6; margin-top: 22px; }
    .hero-benefits { order: 7; }

    .hero h1 {
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.15;
    }

    .hero-lead {
        margin-bottom: 14px;
        font-size: 15.5px;
        line-height: 1.62;
    }

    .hero-mobile-product {
        height: 205px;
        margin-inline: -4px;
    }

    .hero-mobile-product span {
        width: 190px;
        height: 190px;
    }

    .hero-mobile-product img {
        width: 215px;
        height: 190px;
    }

    .hero-benefits {
        margin-bottom: 17px;
    }

    .hero-benefits > div {
        font-size: 11.5px;
        line-height: 1.42;
    }

    .hero-commerce {
        gap: 32px;
        margin-bottom: 15px;
        padding-top: 14px;
    }

    .hero-commerce .price {
        font-size: 24px;
    }

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

    .hero-actions .button {
        min-height: 52px;
    }

    .hero-actions .button-outline {
        min-height: 48px;
    }

    .advantages-grid {
        display: flex;
        margin-inline: 0;
        padding: 0 0 8px;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .advantage-card {
        min-width: 84%;
        min-height: 0;
        padding: 22px 20px;
        scroll-snap-align: start;
        text-align: left;
    }

    .advantage-card .icon-circle {
        margin: 0 0 12px;
    }

    .advantage-card h3 {
        font-size: 17px;
    }

    .advantage-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .advantages-extra {
        grid-template-columns: 1fr;
    }

    .advantages-extra h3 {
        font-size: 14px;
    }

    .advantages-extra p {
        font-size: 13px;
    }

    .benefits-strip {
        padding: 21px 0;
    }

    .benefits-strip h2 {
        font-size: 18px;
        text-align: left;
    }

    .about-copy p:not(.section-kicker) {
        font-size: 15.75px;
        line-height: 1.75;
    }

    .about-facts {
        padding: 17px;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ingredient-card {
        min-height: 0;
        padding: 14px;
    }

    .ingredient-heading {
        grid-template-columns: 64px 1fr;
    }

    .ingredient-icon {
        width: 64px;
        height: 64px;
    }

    .ingredient-icon img {
        width: 60px;
        height: 60px;
    }

    .ingredient-card h3 {
        font-size: 15px;
    }

    .ingredient-excerpt {
        margin: 11px 0 10px;
        font-size: 13.25px;
        line-height: 1.65;
    }

    .ingredient-card details p {
        font-size: 14px;
    }

    .table-wrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
    }

    .table-wrap table {
        display: block;
        min-width: 0;
    }

    .table-wrap thead {
        display: none;
    }

    .table-wrap tbody {
        display: grid;
        gap: 12px;
    }

    .table-wrap tr {
        display: block;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
    }

    .table-wrap td {
        display: grid;
        grid-template-columns: minmax(105px, 38%) 1fr;
        gap: 12px;
        padding: 11px 12px;
        border-top: 1px solid var(--line);
        font-size: 13px;
    }

    .table-wrap td:first-child {
        border-top: 0;
        background: #f5f9f7;
        color: var(--green);
        font-weight: 700;
    }

    .table-wrap td::before {
        content: attr(data-label);
        color: #718079;
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.035em;
        text-transform: uppercase;
    }

    .table-wrap td:first-child::before {
        display: none;
    }

    .usage-grid {
        gap: 22px;
    }

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

    .steps > div {
        padding: 13px;
    }

    .steps p {
        font-size: 12.5px;
    }

    .safety-box {
        padding: 20px 16px;
    }

    .safety-heading {
        gap: 10px;
    }

    .safety-grid {
        gap: 18px;
    }

    .safety-grid li,
    .safety-grid p {
        font-size: 13.75px;
    }

    .expert-card {
        grid-template-columns: 82px 1fr;
        gap: 13px;
        padding: 13px;
    }

    .expert-card > img {
        width: 82px;
        height: 104px;
        border-radius: 10px;
    }

    .expert-card h3 {
        font-size: 15.5px;
    }

    .expert-card > div > p:not(.meta),
    .expert-card details p {
        font-size: 13.25px;
    }

    .reviews-scroll {
        grid-auto-columns: 88%;
        margin-inline: 0;
        padding: 0 0 10px;
        gap: 11px;
    }

    .review-card {
        padding: 14px;
    }

    .review-heading img {
        width: 66px;
        height: 66px;
    }

    .review-card > p,
    .review-card details p {
        font-size: 13.25px;
    }

    .buy-points {
        grid-template-columns: 1fr;
    }

    .order-card {
        padding: 16px;
        border-radius: 14px;
    }

    .order-product {
        grid-template-columns: 82px 1fr;
    }

    .order-product img {
        width: 80px;
        height: 75px;
    }

    .order-product .price {
        font-size: 24px;
    }

    .order-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .order-form > * {
        grid-column: 1;
    }

    .order-form input[type="text"],
    .order-form input[type="tel"] {
        height: 50px;
    }

    .faq-grid {
        columns: 1;
    }

    .faq summary {
        padding: 14px 42px 14px 14px;
        font-size: 13.5px;
    }

    .faq details p {
        padding: 0 14px 15px;
        font-size: 13.5px;
    }

    .facts {
        padding: 28px 0;
    }

    .facts h2 {
        font-size: 19px;
        text-align: left;
    }

    .facts-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .facts-row > div {
        padding-bottom: 12px;
        border-bottom: 1px solid #edf2ef;
    }

    .facts-row > div:last-child {
        border-bottom: 0;
    }

    .site-footer {
        padding: 34px 0 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 20px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .mobile-order-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 55;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 9px 16px max(9px, env(safe-area-inset-bottom));
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 -8px 24px rgba(16, 38, 31, 0.09);
        transform: translateY(120%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.22s ease, visibility 0.22s ease;
    }

    .mobile-order-bar.is-visible {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-order-bar > div {
        display: flex;
        flex-direction: column;
    }

    .mobile-order-bar .price {
        font-size: 18px;
    }

    .mobile-order-bar .button {
        min-height: 44px;
        padding-inline: 22px;
    }

    .order-modal {
        align-items: end;
        padding: 0;
    }

    .order-modal-backdrop {
        backdrop-filter: none;
    }

    .order-modal-dialog {
        width: 100%;
        max-height: min(var(--order-vh, 86dvh), 720px);
        padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -18px 50px rgba(8, 24, 19, 0.22);
    }

    .order-modal-summary {
        grid-template-columns: 92px 1fr;
        gap: 12px;
        padding: 0 34px 14px 0;
    }

    .order-modal-summary img {
        width: 92px;
        height: 82px;
    }

    .order-modal-summary h2 {
        margin: 3px 0 5px;
        font-size: 20px;
    }

    .modal-commerce .price {
        font-size: 21px;
    }

    .modal-trust {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 11px 0;
    }

    .order-form-modal {
        gap: 11px;
    }
}

@media (max-width: 390px) {
    .shell {
        width: calc(100% - 26px);
    }

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

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

    .hero-mobile-product {
        margin-inline: -2px;
    }

    .advantage-card {
        min-width: 89%;
    }

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

    .reviews-scroll {
        grid-auto-columns: 93%;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }
}


/* Extended usage and purchase content */
.usage-extended {
    padding-top: 34px;
}
.usage-extended h3 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.28;
}
.usage-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.usage-cards article {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 17px;
    background: #fff;
}
.usage-cards strong {
    font-size: 14px;
}
.usage-cards p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}
.usage-avoid {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 16px 18px;
    background: #fff;
}
.usage-avoid ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin: 10px 0 0;
    padding-left: 18px;
}
.usage-avoid li {
    color: var(--muted);
    font-size: 13px;
}
.price-anchor {
    scroll-margin-top: 90px;
}
.purchase-steps {
    counter-reset: purchase;
    display: grid;
    gap: 9px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}
.purchase-steps li {
    counter-increment: purchase;
    position: relative;
    padding: 11px 12px 11px 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    font-size: 13px;
}
.purchase-steps li::before {
    content: counter(purchase);
    position: absolute;
    top: 9px;
    left: 12px;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: #eaf4ee;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}
@media (max-width: 900px) {
    .usage-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .usage-cards { grid-template-columns: 1fr; }
    .usage-avoid ul { display: block; }
    .usage-avoid li + li { margin-top: 7px; }
}

/* Consolidated long-form content */
.source-consolidation {
    margin-top: 42px;
}
.source-consolidation__head {
    max-width: 860px;
    margin-bottom: 20px;
}
.source-consolidation__head h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.28;
}
.source-consolidation__head p:not(.section-kicker) {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}
.legacy-topic-list,
.legacy-review-groups {
    display: grid;
    gap: 10px;
}
.legacy-topic,
.legacy-review-group {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: clip;
}
.legacy-topic > summary,
.legacy-review-group > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 20px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    line-height: 1.35;
}
.legacy-topic > summary::-webkit-details-marker,
.legacy-review-group > summary::-webkit-details-marker {
    display: none;
}
.legacy-topic > summary b,
.legacy-review-group > summary b {
    flex: 0 0 auto;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}
.legacy-topic[open] > summary,
.legacy-review-group[open] > summary {
    background: #f4f8f6;
    border-bottom: 1px solid var(--line);
}
.legacy-richtext {
    max-width: 940px;
    padding: 20px;
    color: #344940;
    font-size: 15.5px;
    line-height: 1.76;
}
.legacy-richtext p {
    margin: 0 0 16px;
}
.legacy-richtext ul,
.legacy-richtext ol {
    margin: 8px 0 18px;
    padding-left: 22px;
}
.legacy-richtext li {
    margin: 7px 0;
}
.legacy-richtext blockquote,
.legacy-quote {
    margin: 18px 0;
    padding: 16px 18px;
    border-left: 3px solid var(--green);
    border-radius: 0 10px 10px 0;
    background: #f4f8f6;
}
.legacy-richtext a {
    color: var(--green);
    text-underline-offset: 3px;
}
.legacy-table {
    width: 100%;
    margin: 18px 0;
    border-collapse: collapse;
    font-size: 13px;
}
.legacy-table th,
.legacy-table td {
    padding: 11px 12px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.legacy-table th {
    background: #eef5f1;
    color: var(--green);
    font-weight: 700;
}
@media (max-width: 720px) {
    .source-consolidation { margin-top: 30px; }
    .source-consolidation__head h3 { font-size: 21px; }
    .legacy-topic > summary,
    .legacy-review-group > summary { padding: 15px 14px; font-size: 14px; }
    .legacy-richtext { padding: 16px 14px; font-size: 14.5px; line-height: 1.7; }
    .legacy-table { display: block; overflow-x: auto; font-size: 12px; }
}

.commerce-source-guides {
    padding-top: 18px;
}
.commerce-guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.commerce-guide-grid > div > h4 {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.35;
}
@media (max-width: 820px) {
    .commerce-guide-grid { grid-template-columns: 1fr; }
}

.legacy-richtext--intro {
    max-width: 920px;
    margin-top: 14px;
    padding: 0;
    color: #40534a;
}
.legacy-richtext--intro p:last-child {
    margin-bottom: 0;
}

/* Additional source FAQ groups consolidated from legacy topical pages. */
.faq-topic-groups {
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}
.faq-topic-groups > h3 {
    margin: 0 0 22px;
    font-size: 22px;
    line-height: 1.3;
}
.faq-topic-group + .faq-topic-group {
    margin-top: 28px;
}
.faq-topic-group > h4 {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 16px;
    line-height: 1.4;
}
.faq-grid--compact details {
    break-inside: avoid;
}
@media (max-width: 720px) {
    .faq-topic-groups { margin-top: 28px; padding-top: 24px; }
    .faq-topic-groups > h3 { font-size: 20px; }
    .faq-topic-group + .faq-topic-group { margin-top: 22px; }
}

/* BUILD 008 locale switch */
.language{display:inline-flex;align-items:center;gap:5px;white-space:nowrap}
.language a{color:inherit;text-decoration:none;opacity:.72}
.language a:hover{opacity:1;text-decoration:underline;text-underline-offset:3px}
.language strong{font-weight:700}
.language i{font-style:normal;opacity:.35}
