:root {
    --ink: #11251f;
    --muted: #5e6f68;
    --green-950: #0b2a23;
    --green-900: #12382f;
    --green-800: #184a3c;
    --green-700: #21604d;
    --green-100: #e7f0eb;
    --lime: #d7f26b;
    --lime-strong: #b9dc3d;
    --cream: #fbf8ef;
    --cream-dark: #f1ecdf;
    --white: #ffffff;
    --line: #dce5df;
    --danger: #b73832;
    --success: #15704d;
    --shadow-sm: 0 12px 32px rgba(15, 49, 40, .08);
    --shadow-md: 0 28px 70px rgba(15, 49, 40, .14);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1210px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--cream);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

a {
    color: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(185, 220, 61, .65);
    outline-offset: 3px;
}

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

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

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(18, 56, 47, .08);
    background: rgba(251, 248, 239, .88);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    letter-spacing: -.06em;
    font-size: 29px;
    font-weight: 760;
}

.logo span {
    color: var(--green-900);
}

.logo strong {
    color: #79a92e;
}

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

.desktop-nav a {
    color: #39544b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 650;
    transition: color .2s ease;
}

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

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border: 0;
    border-radius: 14px;
    color: var(--green-950);
    background: var(--lime);
    box-shadow: 0 12px 30px rgba(147, 181, 45, .23);
    text-decoration: none;
    font-weight: 780;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: #e3f98e;
    box-shadow: 0 16px 34px rgba(147, 181, 45, .3);
}

.button:active {
    transform: translateY(0);
}

.button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button--small {
    min-height: 44px;
    padding: 11px 17px;
    border-radius: 12px;
    font-size: 14px;
}

.button--primary {
    color: var(--green-950);
    background: var(--lime);
}

.button--light {
    color: var(--green-950);
    background: var(--white);
    box-shadow: none;
}

.button--wide {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    padding: 76px 0 72px;
    background:
        radial-gradient(circle at 52% 28%, rgba(207, 233, 164, .42), transparent 25%),
        linear-gradient(135deg, #fbf8ef 0%, #f8f5ea 44%, #ecf1e6 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    background-image: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M69 0H0v69' fill='none' stroke='%2312382f' stroke-width='.45'/%3E%3C/svg%3E");
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    pointer-events: none;
}

.hero-glow--one {
    top: -120px;
    right: 24%;
    width: 360px;
    height: 360px;
    background: rgba(215, 242, 107, .23);
}

.hero-glow--two {
    bottom: -200px;
    left: -80px;
    width: 440px;
    height: 440px;
    background: rgba(73, 141, 111, .12);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(330px, .8fr) minmax(340px, .72fr);
    align-items: center;
    gap: 22px;
}

.hero-copy {
    padding-right: 18px;
}

.hero-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 13px;
    border: 1px solid rgba(18, 56, 47, .12);
    border-radius: 999px;
    color: #31584b;
    background: rgba(255, 255, 255, .5);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #84b43a;
    box-shadow: 0 0 0 5px rgba(132, 180, 58, .14);
}

.hero h1 {
    max-width: 650px;
    margin: 0;
    color: var(--green-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 5vw, 73px);
    font-weight: 540;
    line-height: .98;
    letter-spacing: -.055em;
}

.hero h1 span {
    display: block;
    color: var(--green-700);
    font-style: italic;
    font-weight: 500;
}

.hero-lead {
    max-width: 610px;
    margin: 25px 0 0;
    color: #4b625a;
    font-size: 18px;
    line-height: 1.66;
}

.benefit-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #263d35;
    font-size: 15px;
    font-weight: 640;
}

.check-icon {
    width: 24px;
    height: 24px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--green-900);
    background: var(--lime);
    font-size: 13px;
    font-weight: 900;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}

.text-link {
    color: var(--green-800);
    text-underline-offset: 5px;
    font-size: 14px;
    font-weight: 740;
}

.hero-proof {
    display: flex;
    align-items: stretch;
    margin-top: 36px;
}

.hero-proof div {
    min-width: 112px;
    display: grid;
    align-content: center;
    padding: 0 22px;
    border-left: 1px solid rgba(18, 56, 47, .14);
}

.hero-proof div:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-proof strong {
    color: var(--green-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 600;
}

.hero-proof span {
    margin-top: 2px;
    color: #667871;
    font-size: 11px;
    line-height: 1.3;
}

.hero-visual {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    margin-inline: -55px -35px;
}

.hero-visual > img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: saturate(.96);
}

.hero-visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 78%;
    aspect-ratio: 1;
    place-self: center;
    border: 1px solid rgba(18, 56, 47, .1);
    border-radius: 50%;
    background: rgba(255, 255, 255, .31);
    box-shadow:
        0 0 0 28px rgba(255, 255, 255, .15),
        0 0 0 58px rgba(255, 255, 255, .08);
}

.visual-badge {
    position: absolute;
    z-index: 4;
    top: 72px;
    right: 38px;
    width: 104px;
    height: 104px;
    display: grid;
    align-content: center;
    justify-items: center;
    transform: rotate(7deg);
    border: 6px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    color: var(--green-950);
    background: var(--lime);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.visual-badge span {
    max-width: 76px;
    font-size: 10px;
    font-weight: 750;
    line-height: 1.1;
    text-transform: uppercase;
}

.visual-badge strong {
    margin-top: 2px;
    font-family: Georgia, serif;
    font-size: 29px;
}

.ingredient-float {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border: 1px solid rgba(18, 56, 47, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.ingredient-float--arnica {
    bottom: 150px;
    left: 18px;
}

.ingredient-float--gluco {
    right: 3px;
    bottom: 90px;
}

.ingredient-float > span:first-child {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--green-900);
    background: var(--lime);
    font-weight: 800;
}

.ingredient-float > span:last-child {
    display: grid;
    color: #6a7c75;
    font-size: 10px;
}

.ingredient-float strong {
    color: var(--green-900);
    font-size: 13px;
}

.hero-form-card,
.final-form-card {
    padding: 28px;
    border: 1px solid rgba(18, 56, 47, .09);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.order-form {
    position: relative;
}

.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.form-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.eyebrow {
    display: inline-block;
    color: #648235;
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow--lime {
    color: #617b24;
}

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

.form-title {
    margin: 5px 0 0;
    color: var(--green-950);
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 560;
}

.discount-chip {
    min-width: 58px;
    padding: 9px 10px;
    border-radius: 11px;
    color: var(--white);
    background: var(--green-900);
    text-align: center;
    font-size: 14px;
    font-weight: 820;
}

.price-row {
    display: flex;
    align-items: end;
    gap: 12px;
    margin-top: 14px;
}

.price-old {
    color: #84918c;
    font-size: 13px;
    text-decoration: line-through;
}

.price-current {
    color: var(--green-900);
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 650;
    line-height: 1;
}

.price-caption {
    margin: 7px 0 19px;
    color: #73837d;
    font-size: 10px;
    line-height: 1.4;
}

.field {
    margin-top: 13px;
}

.field > label {
    display: block;
    margin: 0 0 7px 2px;
    color: #32493f;
    font-size: 11px;
    font-weight: 760;
}

.input-shell {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid #d9e2dc;
    border-radius: 13px;
    background: rgba(255, 255, 255, .8);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.input-shell:focus-within {
    border-color: #79a92e;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(121, 169, 46, .13);
}

.input-shell.is-invalid {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(183, 56, 50, .1);
}

.input-shell svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: #6b7f76;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.input-shell input,
.input-shell select {
    min-width: 0;
    width: 100%;
    height: 48px;
    padding: 0;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font-size: 14px;
}

.input-shell select {
    appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #687971 50%), linear-gradient(135deg, #687971 50%, transparent 50%);
    background-position: calc(100% - 7px) 21px, calc(100% - 2px) 21px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.input-shell input::placeholder {
    color: #9aa6a1;
}

.input-shell--static {
    color: #29443a;
    font-size: 14px;
    font-weight: 680;
}

.country-mark {
    min-width: 31px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: var(--white);
    background: linear-gradient(90deg, #126445 0 33%, #fff 33% 66%, #b63338 66%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .38);
    font-size: 9px;
    font-weight: 850;
}

.phone-prefix {
    padding-right: 10px;
    border-right: 1px solid var(--line);
    color: #314b40;
    font-size: 14px;
    font-weight: 760;
}

.field-help,
.field-error {
    display: block;
    margin: 5px 2px 0;
    font-size: 10px;
    line-height: 1.3;
}

.field-help {
    color: #7a8983;
}

.field-error {
    min-height: 0;
    color: var(--danger);
    font-weight: 660;
}

.field-error:empty {
    display: none;
}

.consent {
    display: grid;
    grid-template-columns: 17px 1fr;
    gap: 9px;
    align-items: start;
    margin: 16px 0 14px;
    color: #61726b;
    font-size: 10px;
    line-height: 1.45;
    cursor: pointer;
}

.consent input {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: var(--green-800);
}

.consent a {
    color: var(--green-800);
    font-weight: 700;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
    color: #788781;
    font-size: 9px;
    line-height: 1.35;
    text-align: center;
}

.form-note svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-status {
    margin-top: 10px;
    color: var(--danger);
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
}

.js-submit-button.is-loading {
    pointer-events: none;
    opacity: .78;
}

.button-spinner {
    display: none;
    width: 17px;
    height: 17px;
    border: 2px solid rgba(18, 56, 47, .25);
    border-top-color: var(--green-950);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

.is-loading .button-spinner {
    display: block;
}

.is-loading .button-label,
.is-loading > svg {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.trust-bar {
    border-top: 1px solid rgba(18, 56, 47, .06);
    border-bottom: 1px solid rgba(18, 56, 47, .09);
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 22px 26px;
    border-left: 1px solid var(--line);
}

.trust-item:first-child {
    border-left: 0;
}

.trust-item svg {
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--green-700);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item span {
    display: grid;
    gap: 3px;
    color: #708078;
    font-size: 10px;
    line-height: 1.35;
}

.trust-item strong {
    color: #28483c;
    font-size: 13px;
}

.section {
    padding: 112px 0;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 48px;
}

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

.section-heading h2,
.formula-copy h2,
.audience-copy h2,
.faq-intro h2,
.final-copy h2 {
    margin: 10px 0 0;
    color: var(--green-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(37px, 4vw, 56px);
    font-weight: 540;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.section-heading p,
.section-lead,
.audience-copy > p,
.faq-intro > p,
.final-copy > p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

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

.cards-grid {
    display: grid;
    gap: 20px;
}

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

.feature-card {
    position: relative;
    min-height: 330px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(18, 56, 47, .09);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .66);
    box-shadow: var(--shadow-sm);
}

.feature-card--accent {
    color: var(--white);
    background: var(--green-900);
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 27px;
    color: rgba(18, 56, 47, .17);
    font-family: Georgia, serif;
    font-size: 44px;
}

.feature-card--accent .feature-number {
    color: rgba(255, 255, 255, .14);
}

.feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
}

.feature-icon--green {
    color: var(--white);
    background: var(--green-800);
}

.feature-icon--lime {
    color: var(--green-950);
    background: var(--lime);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    max-width: 290px;
    margin: 60px 0 0;
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 560;
}

.feature-card p {
    max-width: 320px;
    margin: 13px 0 0;
    color: #6a7b74;
    font-size: 14px;
    line-height: 1.65;
}

.feature-card--accent p {
    color: #c9d8d2;
}

.formula-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--green-950);
}

.formula-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .13;
    background:
        radial-gradient(circle at 18% 28%, var(--lime), transparent 25%),
        radial-gradient(circle at 82% 74%, #4e9f7b, transparent 22%);
}

.formula-grid {
    position: relative;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 88px;
}

.formula-visual {
    position: relative;
    min-height: 560px;
}

.formula-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 210px;
    height: 210px;
    display: grid;
    align-content: center;
    justify-items: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    box-shadow:
        inset 0 0 40px rgba(255, 255, 255, .06),
        0 0 80px rgba(215, 242, 107, .12);
    backdrop-filter: blur(12px);
}

.formula-core span {
    color: var(--lime);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.formula-core strong {
    margin-top: 6px;
    font-family: Georgia, serif;
    font-size: 25px;
}

.formula-core small {
    margin-top: 8px;
    color: #9db5ac;
}

.formula-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(215, 242, 107, .26);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.formula-orbit--one {
    width: 390px;
    height: 390px;
}

.formula-orbit--two {
    width: 520px;
    height: 520px;
    border-color: rgba(255, 255, 255, .09);
}

.formula-node {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 17px;
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .17);
    backdrop-filter: blur(14px);
}

.formula-node--one {
    top: 100px;
    left: 12px;
}

.formula-node--two {
    right: 0;
    bottom: 95px;
}

.node-symbol {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    color: var(--green-950);
    background: var(--lime);
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: 700;
}

.formula-node > span:last-child {
    display: grid;
    color: #aac1b8;
    font-size: 11px;
}

.formula-node strong {
    color: var(--white);
    font-size: 14px;
}

.formula-copy h2,
.audience-copy h2,
.final-copy h2 {
    color: var(--white);
}

.formula-copy .section-lead {
    color: #b7c9c2;
}

.ingredient-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 17px;
    margin-top: 20px;
    padding: 21px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
}

.ingredient-letter {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--green-950);
    background: var(--lime);
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 700;
}

.ingredient-card h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 550;
}

.ingredient-card p {
    margin: 7px 0 0;
    color: #b9cbc4;
    font-size: 13px;
    line-height: 1.6;
}

.info-callout {
    display: grid;
    grid-template-columns: 21px 1fr;
    gap: 11px;
    margin-top: 22px;
    padding: 15px 17px;
    border-radius: 15px;
    color: #dce8e3;
    background: rgba(215, 242, 107, .09);
}

.info-callout svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--lime);
    stroke-width: 1.7;
    stroke-linecap: round;
}

.info-callout p {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
}

.routine-section {
    background: var(--white);
}

.routine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.routine-card {
    padding: 20px 20px 29px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fbfcfa;
}

.routine-illustration {
    position: relative;
    height: 245px;
    display: grid;
    overflow: hidden;
    place-items: center;
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 45%, rgba(215, 242, 107, .43), transparent 34%),
        #edf3ee;
}

.routine-illustration::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(18, 56, 47, .12);
    border-radius: 50%;
}

.gel-drop {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 112px;
    transform: rotate(40deg);
    border-radius: 70% 30% 65% 35% / 70% 35% 65% 30%;
    background: linear-gradient(135deg, #e7f6a5, #6e9e36);
    box-shadow: inset 10px 9px 16px rgba(255, 255, 255, .36), 0 22px 35px rgba(43, 93, 63, .21);
}

.massage-ring {
    position: absolute;
    border: 2px solid #719744;
    border-radius: 50%;
}

.massage-ring--one {
    width: 125px;
    height: 125px;
}

.massage-ring--two {
    width: 75px;
    height: 75px;
}

.massage-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-800);
    box-shadow: 0 0 0 12px rgba(215, 242, 107, .7);
}

.routine-illustration--day span {
    position: relative;
    z-index: 2;
    font-family: Georgia, serif;
    font-size: 71px;
    font-weight: 600;
}

.routine-illustration--day small {
    position: absolute;
    z-index: 2;
    margin-top: 86px;
    color: #537267;
    font-size: 13px;
    font-weight: 750;
    text-transform: uppercase;
}

.routine-step {
    display: inline-block;
    margin-top: 25px;
    color: #72952d;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.routine-card h3 {
    margin: 8px 0 0;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 560;
}

.routine-card p {
    margin: 9px 0 0;
    color: #6d7d76;
    font-size: 13px;
    line-height: 1.6;
}

.audience-section {
    color: var(--white);
    background: var(--green-900);
}

.audience-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.audience-copy > p {
    max-width: 510px;
    color: #c1d1cb;
}

.audience-copy .button {
    margin-top: 30px;
}

.audience-list {
    border-top: 1px solid rgba(255, 255, 255, .17);
}

.audience-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 23px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.audience-item > span {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green-950);
    background: var(--lime);
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 700;
}

.audience-item strong {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 550;
}

.audience-item p {
    margin: 7px 0 0;
    color: #b9cbc4;
    font-size: 13px;
    line-height: 1.6;
}

.delivery-section {
    background: var(--cream-dark);
}

.delivery-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(18, 56, 47, .1);
    border-radius: var(--radius-md);
    background: rgba(18, 56, 47, .1);
    box-shadow: var(--shadow-sm);
}

.delivery-steps article {
    position: relative;
    min-height: 320px;
    padding: 32px 27px;
    background: rgba(255, 255, 255, .78);
}

.delivery-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #bdc8c2;
    font-family: Georgia, serif;
    font-size: 27px;
}

.delivery-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--white);
    background: var(--green-800);
}

.delivery-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.delivery-steps h3 {
    margin: 72px 0 0;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 560;
}

.delivery-steps p {
    margin: 10px 0 0;
    color: #6b7b74;
    font-size: 13px;
    line-height: 1.6;
}

.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 100px;
}

.faq-intro {
    position: sticky;
    top: 110px;
    align-self: start;
}

.faq-price {
    display: grid;
    width: fit-content;
    gap: 4px;
    margin-top: 28px;
    padding: 17px 21px;
    border-radius: 16px;
    background: var(--green-100);
}

.faq-price span {
    color: #6a7c74;
    font-size: 11px;
}

.faq-price strong {
    color: var(--green-900);
    font-family: Georgia, serif;
    font-size: 30px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    color: #203a30;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 720;
}

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

.faq-list summary span {
    position: relative;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--green-100);
}

.faq-list summary span::before,
.faq-list summary span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
    background: var(--green-800);
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
    max-width: 670px;
    margin: -3px 55px 25px 0;
    color: #697a73;
    font-size: 14px;
    line-height: 1.7;
}

.final-order {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(215, 242, 107, .19), transparent 25%),
        var(--green-950);
}

.final-order::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -250px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 115px rgba(255, 255, 255, .018);
}

.final-order-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 430px;
    align-items: center;
    gap: 105px;
}

.final-copy > p {
    max-width: 620px;
    color: #bdd0c8;
}

.final-product {
    display: flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    margin-top: 20px;
}

.final-product img {
    width: 220px;
    margin-left: -35px;
}

.final-product > div {
    display: grid;
}

.final-product .price-old {
    color: #8ba29a;
}

.final-product strong {
    color: var(--lime);
    font-family: Georgia, serif;
    font-size: 44px;
}

.final-product small {
    color: #9fb5ac;
}

.site-footer {
    padding: 70px 0 30px;
    color: #2a4339;
    background: #f7f4ea;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.logo--footer {
    font-size: 27px;
}

.footer-grid > div:first-child p {
    max-width: 360px;
    margin: 14px 0 0;
    color: #718078;
    font-size: 13px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-links strong {
    margin-bottom: 4px;
    font-size: 13px;
}

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

.footer-links a:hover {
    color: var(--green-900);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 60px;
    margin-top: 56px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: #849089;
    font-size: 10px;
    line-height: 1.5;
}

.footer-bottom p {
    margin: 0;
}

.medical-note {
    max-width: 650px;
    text-align: right;
}

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

.noscript-note {
    position: fixed;
    z-index: 500;
    right: 15px;
    bottom: 15px;
    max-width: 360px;
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--white);
    background: var(--green-950);
    box-shadow: var(--shadow-md);
    font-size: 12px;
}

.legal-page {
    min-height: 100vh;
    padding: 55px 0 90px;
    background: var(--cream);
}

.legal-shell {
    max-width: 820px;
    margin-inline: auto;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.legal-back {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 700;
}

.legal-shell h1 {
    margin: 0 0 28px;
    font-family: Georgia, serif;
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 550;
    letter-spacing: -.04em;
}

.legal-shell h2 {
    margin: 32px 0 10px;
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 560;
}

.legal-shell p,
.legal-shell li {
    color: #5f7169;
    font-size: 14px;
    line-height: 1.75;
}

.setup-warning {
    padding: 14px 17px;
    border: 1px solid #e3bb66;
    border-radius: 12px;
    color: #6c521c;
    background: #fff8e7;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: 1fr .86fr;
        gap: 10px 25px;
    }

    .hero-copy {
        padding-right: 0;
    }

    .hero-visual {
        min-height: 550px;
        margin: 0 -25px;
    }

    .hero-form-card {
        grid-column: 1 / -1;
        max-width: 680px;
        width: 100%;
        margin: 18px auto 0;
    }

    .hero-form-card .order-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 14px;
    }

    .hero-form-card .form-heading,
    .hero-form-card .price-row,
    .hero-form-card .price-caption,
    .hero-form-card .consent,
    .hero-form-card .button,
    .hero-form-card .form-note,
    .hero-form-card .form-status,
    .hero-form-card .field-error[data-error-for="consent"] {
        grid-column: 1 / -1;
    }

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

    .trust-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .trust-item:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .formula-grid {
        gap: 48px;
    }

    .audience-grid,
    .faq-grid {
        gap: 60px;
    }

    .final-order-grid {
        gap: 60px;
    }
}

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

    .desktop-nav {
        display: none;
    }

    .hero {
        padding-top: 48px;
    }

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

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

    .hero-kicker {
        margin-inline: auto;
    }

    .hero h1,
    .hero-lead {
        margin-inline: auto;
    }

    .benefit-list {
        width: fit-content;
        margin-inline: auto;
        text-align: left;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 580px);
        min-height: auto;
        margin: -20px auto -45px;
    }

    .hero-form-card {
        margin-top: 0;
    }

    .cards-grid--three,
    .routine-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 270px;
    }

    .feature-card h3 {
        margin-top: 45px;
    }

    .formula-grid,
    .audience-grid,
    .faq-grid,
    .final-order-grid {
        grid-template-columns: 1fr;
    }

    .formula-visual {
        width: min(100%, 570px);
        margin-inline: auto;
    }

    .formula-copy {
        max-width: 680px;
        margin-inline: auto;
    }

    .routine-grid {
        max-width: 600px;
        margin-inline: auto;
    }

    .audience-grid {
        gap: 55px;
    }

    .delivery-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-intro {
        position: static;
    }

    .final-order-grid {
        max-width: 680px;
    }

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

    .final-copy > p {
        margin-inline: auto;
    }

    .final-product {
        margin-inline: auto;
    }
}

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

    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
    }

    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .header-inner {
        min-height: 65px;
    }

    .logo {
        font-size: 25px;
    }

    .site-header .button {
        display: none;
    }

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

    .hero-kicker {
        margin-bottom: 17px;
        font-size: 9px;
    }

    .hero h1 {
        font-size: clamp(42px, 13.2vw, 58px);
        line-height: .98;
    }

    .hero-lead {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.58;
    }

    .benefit-list {
        gap: 10px;
        margin-top: 22px;
    }

    .benefit-list li {
        align-items: flex-start;
        font-size: 13px;
        line-height: 1.45;
    }

    .hero-actions {
        display: grid;
        justify-items: center;
        gap: 17px;
        margin-top: 25px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        width: 100%;
        justify-content: stretch;
        margin-top: 30px;
    }

    .hero-proof div {
        min-width: 0;
        flex: 1;
        padding: 0 9px;
    }

    .hero-proof strong {
        font-size: 22px;
    }

    .hero-proof span {
        font-size: 9px;
    }

    .hero-visual {
        margin: -4px auto -20px;
    }

    .visual-badge {
        top: 44px;
        right: 8px;
        width: 82px;
        height: 82px;
        border-width: 4px;
    }

    .visual-badge span {
        font-size: 8px;
    }

    .visual-badge strong {
        font-size: 23px;
    }

    .ingredient-float {
        display: none;
    }

    .hero-form-card,
    .final-form-card {
        padding: 21px 17px;
        border-radius: 24px;
    }

    .hero-form-card .order-form {
        display: block;
    }

    .form-title {
        font-size: 25px;
    }

    .price-current {
        font-size: 28px;
    }

    .input-shell {
        min-height: 53px;
    }

    .input-shell input,
    .input-shell select {
        height: 51px;
        font-size: 16px;
    }

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

    .trust-item {
        min-height: 85px;
        padding: 18px 8px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .trust-item:first-child {
        border-top: 0;
    }

    .trust-item:nth-child(2) {
        border-left: 0;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 31px;
    }

    .section-heading h2,
    .formula-copy h2,
    .audience-copy h2,
    .faq-intro h2,
    .final-copy h2 {
        font-size: 38px;
    }

    .section-heading p,
    .section-lead,
    .audience-copy > p,
    .faq-intro > p,
    .final-copy > p {
        font-size: 14px;
    }

    .feature-card {
        min-height: 260px;
        padding: 25px;
    }

    .formula-grid {
        gap: 20px;
    }

    .formula-visual {
        min-height: 380px;
        transform: scale(.84);
        margin: -35px auto;
    }

    .formula-orbit--one {
        width: 320px;
        height: 320px;
    }

    .formula-orbit--two {
        width: 410px;
        height: 410px;
    }

    .formula-core {
        width: 170px;
        height: 170px;
    }

    .formula-core strong {
        font-size: 21px;
    }

    .formula-node {
        padding: 10px;
    }

    .formula-node--one {
        top: 38px;
        left: -25px;
    }

    .formula-node--two {
        right: -26px;
        bottom: 28px;
    }

    .ingredient-card {
        grid-template-columns: 44px 1fr;
        padding: 17px;
    }

    .ingredient-letter {
        width: 44px;
        height: 44px;
    }

    .routine-illustration {
        height: 210px;
    }

    .audience-section {
        padding-bottom: 67px;
    }

    .audience-item {
        grid-template-columns: 43px 1fr;
        gap: 15px;
    }

    .audience-item strong {
        font-size: 19px;
    }

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

    .delivery-steps article {
        min-height: 235px;
    }

    .delivery-steps h3 {
        margin-top: 42px;
    }

    .faq-grid {
        gap: 35px;
    }

    .faq-list summary {
        min-height: 74px;
        font-size: 14px;
    }

    .faq-list details p {
        margin-right: 0;
        font-size: 13px;
    }

    .final-order {
        padding: 75px 0;
    }

    .final-product img {
        width: 165px;
        margin-left: -30px;
    }

    .final-product strong {
        font-size: 36px;
    }

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

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

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

    .medical-note {
        text-align: left;
    }

    .mobile-order-bar {
        position: fixed;
        z-index: 150;
        right: 8px;
        bottom: calc(8px + env(safe-area-inset-bottom));
        left: 8px;
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 8px 9px 8px 16px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 18px;
        color: var(--white);
        background: rgba(11, 42, 35, .96);
        box-shadow: 0 14px 40px rgba(0, 0, 0, .28);
        text-decoration: none;
        backdrop-filter: blur(14px);
    }

    .mobile-order-bar > span {
        display: grid;
    }

    .mobile-order-bar small {
        color: #b9ccc4;
        font-size: 9px;
    }

    .mobile-order-bar strong {
        color: var(--lime);
        font-family: Georgia, serif;
        font-size: 22px;
    }

    .mobile-order-bar b {
        min-width: 120px;
        min-height: 46px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        color: var(--green-950);
        background: var(--lime);
        font-size: 13px;
    }

    .legal-page {
        padding: 22px 0 60px;
    }

    .legal-shell {
        padding: 25px 19px;
    }
}

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