/* ============================================================
   Landing styles — v11 · Editorial / advertorial (olavita-style)
   Палитра: --primary (тёмные CTA) / --accent (тёплый беж) / --dark.
   ============================================================ */
:root {
    --primary: #16181d;
    --accent: #a9824e;
    --dark: #16181d; /* перекрываются из конфига */
    --primary-d: color-mix(in srgb, var(--primary) 80%, #000);
    --grad: linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, #3a3f49), var(--primary-d));
    --glow-p: color-mix(in srgb, var(--primary) 14%, transparent);
    --tint-a: color-mix(in srgb, var(--accent) 12%, transparent);
    --tint-a2: color-mix(in srgb, var(--accent) 20%, transparent);
    --trust: #19b878; /* Trustpilot-зелёный для звёзд отзывов */
    --star: #f0a830; /* золотые звёзды рейтинга в hero */
    --price: #e11d2a; /* красный для цены — чтобы выделялась */

    --bg: #ffffff;
    --bg-soft: #f6f2ea;
    --line: #e9e4d8;
    --ink: #1d2127;
    --muted: #6c7178;
    --radius: 18px;
    --radius-sm: 12px;
    --btn-radius: 11px;
    --shadow-sm: 0 4px 18px rgba(20, 22, 30, 0.05);
    --shadow: 0 16px 44px rgba(20, 22, 30, 0.08);
    --shadow-lg: 0 34px 80px rgba(20, 22, 30, 0.14);
    --maxw: 1080px;
}
* {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family:
        "Manrope",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 17px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--primary);
}
h1,
h2,
h3 {
    line-height: 1.18;
    margin: 0 0 0.4em;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
}
.container--narrow {
    max-width: 720px;
}
.text-center {
    text-align: center;
}

/* sections + reveal (только движение, контент виден всегда) */
.block {
    padding: 62px 0;
    position: relative;
}
.js .block {
    transform: translateY(20px);
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js .block.is-in {
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .js .block {
        transform: none;
        transition: none;
    }
}

.section-eyebrow,
.press__eyebrow {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(24px, 3.3vw, 36px);
    text-align: center;
    margin-bottom: 0.35em;
    font-weight: 800;
}
.section-title::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent);
    opacity: 0.7;
    margin: 16px auto 0;
}
.section-title--light {
    color: #fff;
}
.section-title--light::after {
    background: rgba(255, 255, 255, 0.4);
}
.section-sub {
    text-align: center;
    color: var(--muted);
    margin: -0.1em auto 36px;
    max-width: 640px;
    font-size: 18px;
}

/* ---- Buttons (editorial: тёмные, капс) ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    border: 0;
    border-radius: var(--btn-radius);
    padding: 17px 34px;
    line-height: 1.2;
    transition:
        transform 0.12s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.6);
}
.btn--primary:hover {
    background: color-mix(in srgb, var(--primary) 86%, #fff);
    transform: translateY(-2px);
}
.btn--primary:active {
    transform: translateY(0);
}
.btn--lg {
    padding: 19px 40px;
    font-size: 16px;
}
.btn--block {
    width: 100%;
}
.btn--pulse {
    animation: pulse 2.8s infinite;
}
@keyframes pulse {
    0% {
        box-shadow:
            0 10px 24px -12px rgba(0, 0, 0, 0.6),
            0 0 0 0 var(--tint-a2);
    }
    70% {
        box-shadow:
            0 10px 24px -12px rgba(0, 0, 0, 0.6),
            0 0 0 14px transparent;
    }
    100% {
        box-shadow:
            0 10px 24px -12px rgba(0, 0, 0, 0.6),
            0 0 0 0 transparent;
    }
}
.btn:disabled,
.btn.is-loading {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    animation: none !important;
}
.btn.is-loading {
    color: transparent !important;
    position: relative;
    pointer-events: none;
}
.btn.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2.5px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnspin 0.7s linear infinite;
}
@keyframes btnspin {
    to {
        transform: rotate(360deg);
    }
}
.image-slider {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.image-slider__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    touch-action: pan-y;
}

.image-slider__slide {
    display: none;
    width: 100%;
}

.image-slider__slide.is-active {
    display: block;
}

.image-slider__slide img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    pointer-events: none;
}

.image-slider__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    transform: translateY(-50%);
}
.confidence__header {
    max-width: 760px;
    margin-bottom: 32px;
}

.confidence__title {
    margin: 0 0 16px;
}

.confidence__description {
    margin: 0 0 12px;
    line-height: 1.6;
}

.confidence__items {
    display: grid;
    gap: 24px;
}

.confidence__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.confidence__icon {
    flex: 0 0 auto;
    font-size: 24px;
    line-height: 1;
}

.confidence__item-title {
    margin: 0 0 8px;
}

.confidence__item-text {
    margin: 0;
    line-height: 1.6;
}
.image-slider__arrow--prev {
    left: 12px;
}

.image-slider__arrow--next {
    right: 12px;
}

.image-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.image-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c7c7c7;
    cursor: pointer;
}

.image-slider__dot.is-active {
    background: #111;
}
/* ---- Top promo bar (чёрная) ---- */
.topbar-promo {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--dark);
    color: #fff;
}
.topbar-promo__in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 13.5px;
    text-align: center;
    flex-wrap: wrap;
    letter-spacing: 0.02em;
}
.topbar-promo__cta {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.topbar-promo__cta:hover {
    background: #fff;
    color: var(--dark);
}

/* ---- Badges над заголовком ---- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tint-a);
    color: color-mix(in srgb, var(--accent) 75%, #000);
    font-weight: 800;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 14px;
}
.hero__stars {
    color: var(--star);
    letter-spacing: 2px;
    font-size: 15px;
}
.hero__rating b {
    font-size: 15px;
}
.hero__rating-count {
    color: var(--muted);
    font-weight: 600;
}
.hero__orders {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 8px 16px;
    border-radius: 999px;
}
.hero__orders b {
    color: var(--primary);
}
.hero__live {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px 8px 13px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.hero__live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--trust);
    box-shadow: 0 0 0 0 rgba(25, 184, 120, 0.6);
    animation: livepulse 1.8s infinite;
    flex: 0 0 auto;
}
.hero__live-text b {
    color: var(--trust);
}
@keyframes livepulse {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 184, 120, 0.5);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(25, 184, 120, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(25, 184, 120, 0);
    }
}

/* ---- Hero ---- */
.hero {
    background: linear-gradient(180deg, #fbf9f4, var(--bg));
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero__media {
    position: relative;
}
.hero__media img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    width: 100%;
    box-shadow: var(--shadow);
}
.hero__title {
    font-size: clamp(28px, 4.2vw, 46px);
    font-weight: 800;
}
.hero__subtitle {
    color: var(--muted);
    font-size: 19px;
    margin-top: 0.25em;
}
.hero__bullets {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}
.hero__bullets li {
    position: relative;
    padding-left: 34px;
    margin: 12px 0;
    font-weight: 600;
}
.hero__bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: #fff;
    background: var(--primary);
    width: 23px;
    height: 23px;
    border-radius: 50%;
    font-size: 13px;
    display: grid;
    place-items: center;
    font-weight: 800;
}
.hero__price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 22px 0;
    flex-wrap: wrap;
}
.price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 21px;
}
.price-now {
    font-weight: 900;
    font-size: clamp(38px, 5.6vw, 50px);
    letter-spacing: -0.03em;
    color: var(--price);
}
.price-badge {
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    padding: 6px 13px;
    border-radius: 8px;
    font-size: 15px;
}
.hero__scarcity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 0;
    background: var(--bg-soft);
    color: color-mix(in srgb, var(--accent) 80%, #000);
    font-weight: 700;
    padding: 11px 17px;
    border-radius: 10px;
    border: 1px solid var(--line);
}

/* ---- Order form ---- */
.order-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    margin-top: 24px;
}
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.of-variants {
    display: grid;
    gap: 11px;
    margin-bottom: 18px;
}
.of-variant {
    display: flex;
    align-items: center;
    gap: 13px;
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    cursor: pointer;
    position: relative;
    transition:
        border-color 0.15s,
        background 0.15s;
}
.of-variant:hover {
    border-color: color-mix(in srgb, var(--primary) 30%, var(--line));
}
.of-variant input {
    accent-color: var(--primary);
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
}
.of-variant:has(input:checked) {
    border-color: var(--primary);
    background: color-mix(in srgb, var(--primary) 4%, #fff);
}
.of-variant.is-popular {
    border-color: var(--accent);
    background: color-mix(in srgb, var(--accent) 7%, #fff);
}
.of-variant.is-popular:has(input:checked) {
    border-color: var(--primary);
}
.of-variant.is-popular .ofv-badge {
    align-self: flex-start;
    background: var(--accent);
    color: #fff;
    padding: 3px 10px;
    border-radius: 7px;
    margin-top: 3px;
}
.of-variant.is-popular .ofv-badge::before {
    content: "🔥 ";
}
.ofv-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.ofv-label {
    font-weight: 800;
}
.ofv-badge {
    font-size: 12px;
    color: color-mix(in srgb, var(--accent) 78%, #000);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.ofv-prices {
    text-align: right;
    display: flex;
    flex-direction: column;
}
.ofv-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 13px;
}
.ofv-price {
    font-weight: 900;
    color: var(--price);
    font-size: 19px;
}
.of-fields {
    display: grid;
    gap: 11px;
    margin-bottom: 15px;
}
.of-field input, select {
    width: 100%;
    font-size: 17px;
    padding: 15px 18px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    font-family: inherit;
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
}
.of-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 10%, transparent);
}
.of-consent {
    font-size: 12px;
    color: var(--muted);
    margin: 13px 0 0;
    text-align: center;
    line-height: 1.5;
}
.of-consent a {
    color: var(--muted);
}
.of-result {
    margin-top: 15px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
}
.of-result.is-ok {
    background: color-mix(in srgb, var(--trust) 12%, #fff);
    color: #0c7a4f;
}
.of-result.is-err {
    background: color-mix(in srgb, #dc2626 10%, #fff);
    color: #b42318;
}
.of-check {
    margin: 12px 0;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--line);
    text-align: center;
    line-height: 1.8;
    color: var(--ink);
    font-size: 16px;
}
.of-check b {
    font-weight: 800;
}
.of-note {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
}
.of-edit {
    background: none;
    border: 0;
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    padding: 4px;
}
.order-form.is-done .of-variants,
.order-form.is-done .of-fields,
.order-form.is-done button[type="submit"],
.order-form.is-done .of-consent {
    display: none;
}

/* ---- Trust bar ---- */
.trust {
    padding: 28px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 34px;
}
.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 700;
    font-size: 15px;
}
.trust-bar__icon {
    font-size: 20px;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
}

/* ---- Press (Featured in) ---- */
.press {
    background: #fff;
    padding: 40px 0;
}
.press__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 26px 44px;
}
.press__logo {
    height: 30px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.6;
}
.press__name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    letter-spacing: 0.02em;
    color: #9aa0a6;
    font-weight: 600;
}

/* ---- Before / After ---- */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    max-width: 840px;
    margin: 0 auto;
}
.ba {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.ba__pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.ba__col {
    position: relative;
}
.ba__col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.ba__col + .ba__col {
    border-left: 2px solid #fff;
}
.ba__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
}
.ba__tag--before {
    background: rgba(20, 22, 30, 0.75);
}
.ba__tag--after {
    background: var(--trust);
}
.ba figcaption {
    padding: 14px 16px;
    text-align: center;
    font-weight: 600;
    color: var(--muted);
    font-size: 15px;
}

/* ---- Stat (%) ---- */
.stat__circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border: 3px solid var(--accent);
}
.stat__value {
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.stat__title {
    font-size: 20px;
    font-weight: 800;
    max-width: 420px;
    margin: 0 auto;
}
.stat__text {
    color: var(--muted);
    margin-top: 10px;
}

/* ---- Symptoms (нейтрально, editorial) ---- */
.symptoms {
    background: var(--bg-soft);
}
.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}
.symptom {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    padding: 15px 18px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}
.symptom__icon {
    font-size: 17px;
    flex: 0 0 auto;
}
.symptoms-note {
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    margin-top: 26px;
    color: var(--ink);
}
.block-cta {
    text-align: center;
    margin-top: 30px;
}

/* ---- Composition ---- */
.composition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ingredient {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.ingredient:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.ingredient__img {
    width: 92px;
    height: 92px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}
.ingredient__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ingredient h3 {
    font-size: 18px;
    margin-bottom: 6px;
}
.ingredient p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

/* ---- Result timeline ---- */
.timeline {
    position: relative;
    padding-left: 36px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--line);
}
.tl-item {
    position: relative;
    padding: 0 0 26px;
}
.tl-item:last-child {
    padding-bottom: 0;
}
.tl-item__dot {
    position: absolute;
    left: -32px;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--line);
}
.tl-item__time {
    display: inline-block;
    font-weight: 800;
    color: var(--accent);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.tl-item__body h3 {
    font-size: 19px;
    margin: 0 0 4px;
}
.tl-item__body p {
    margin: 0;
    color: var(--muted);
}

/* ---- Expert ---- */
.expert-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.expert-card__photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow: var(--shadow);
    border: 4px solid #fff;
}
.expert-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.expert-card__quotemark {
    position: absolute;
    top: -6px;
    left: 200px;
    font-size: 90px;
    line-height: 1;
    color: var(--tint-a2);
    font-family: Georgia, serif;
    pointer-events: none;
}
.expert-quote {
    font-size: 19px;
    font-style: italic;
    color: #33383f;
    position: relative;
    z-index: 1;
}
.expert-meta {
    margin-top: 16px;
}
.expert-meta b {
    display: block;
    font-size: 17px;
}
.expert-meta span {
    color: var(--muted);
    font-size: 14px;
}

/* ---- Timer (тёмный, элегантный) ---- */
.timer-block {
    background: var(--dark);
    color: #fff;
    overflow: hidden;
}
.timer-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(620px 260px at 82% 0%, var(--tint-a2), transparent 70%);
    pointer-events: none;
}
.timer-block__sub {
    color: rgba(255, 255, 255, 0.7);
    margin: -0.1em 0 28px;
    font-size: 18px;
}
.timer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}
.timer__unit {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 15px 11px;
    min-width: 80px;
}
.timer__unit b {
    display: block;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.timer__unit span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}
.timer__sep {
    font-size: 30px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    font-style: normal;
}
.timer-block .btn--primary {
    background: #fff;
    color: var(--dark);
}
.timer-block .btn--primary:hover {
    background: rgba(255, 255, 255, 0.88);
}

/* ---- Stock ---- */
.stock-block {
    padding: 40px 0;
}
.stock {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
}
.stock__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.stock__title {
    font-weight: 800;
    font-size: 18px;
}
.stock__count {
    font-weight: 700;
    color: var(--ink);
}
.stock__num {
    color: var(--accent);
    font-size: 22px;
    font-weight: 900;
}
.stock__fire {
    font-size: 18px;
}
.stock__bar {
    height: 12px;
    border-radius: 999px;
    background: var(--bg-soft);
    overflow: hidden;
    border: 1px solid var(--line);
}
.stock__fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--accent);
    transition: width 1s ease;
}

/* ---- Description ---- */
.description .section-title {
    margin-bottom: 32px;
}
.desc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.desc-row + .desc-row {
    margin-top: 46px;
}
.desc-row--noimg {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.desc-row.is-right {
    direction: rtl;
}
.desc-row.is-right > * {
    direction: ltr;
}
.desc-row__media img {
    border-radius: var(--radius);
    width: 100%;
    box-shadow: var(--shadow);
}
.desc-row__text h3 {
    font-size: 26px;
}
.desc-row__text p {
    color: var(--muted);
    font-size: 18px;
}

/* ---- Advantages ---- */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.adv-item {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.adv-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.adv-item__num {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--accent);
    font-weight: 800;
    font-size: 24px;
    display: grid;
    place-items: center;
}
.adv-item__body h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.adv-item__body p {
    margin: 0;
    color: var(--muted);
}

/* ---- Gallery ---- */
.gallery-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 14px;
    scrollbar-width: none;
}
.gallery-grid::-webkit-scrollbar {
    display: none;
}
.gallery-item {
    flex: 0 0 78%;
    max-width: 300px;
    scroll-snap-align: center;
    margin: 0;
}
.gallery-cell {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1/1;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.gallery-cell:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item__cap {
    margin-top: 11px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
}

/* ---- Certificates ---- */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 760px;
    margin: 0 auto;
}
.cert {
    margin: 0;
    text-align: center;
}
.cert__img {
    display: block;
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: zoom-in;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.cert__img:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.cert__img img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 6px;
}
.cert figcaption {
    margin-top: 13px;
    font-weight: 700;
    font-size: 14px;
}

/* ---- How to use ---- */
.howto {
    background: var(--bg-soft);
}
.howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.howto-item {
    text-align: center;
}
.howto-item__media {
    position: relative;
    margin-bottom: 18px;
}
.howto-item__media img {
    border-radius: var(--radius);
    width: 100%;
    box-shadow: var(--shadow);
}
.howto-item__num {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: grid;
    place-items: center;
    border: 3px solid #fff;
}
.howto-item h3 {
    font-size: 20px;
}
.howto-item p {
    color: var(--muted);
    margin: 0;
}

/* ---- Reviews (Trustpilot-стиль) ---- */
.reviews {
    background: var(--bg-soft);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.review-card__head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
}
.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-soft);
}
.review-card__name {
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}
.review-card__verified {
    color: #1d9bf0;
    font-size: 14px;
}
.review-card__stars {
    color: var(--trust);
    font-size: 15px;
    letter-spacing: 2px;
}
.review-card__date {
    margin-left: auto;
    color: var(--muted);
    font-size: 13px;
    align-self: flex-start;
}
.review-card__text {
    margin: 0;
    color: #33383f;
}
.review-card__photo {
    margin-top: 14px;
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}

/* ---- Process ---- */
.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 0 8px;
}
.process-step::after {
    content: "";
    position: absolute;
    top: 36px;
    right: -14px;
    width: 28px;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--accent) 0 5px, transparent 5px 10px);
}
.process-step:last-child::after {
    display: none;
}
.process-step__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    font-size: 28px;
}
.process-step h3 {
    font-size: 18px;
}
.process-step p {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

/* ---- Pricing ---- */
.pricing {
    background: var(--bg-soft);
}
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 18px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.price-card.is-popular {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}
.price-card.is-popular:hover {
    transform: translateY(-12px);
}
.price-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.price-card__qty {
    font-weight: 800;
    font-size: 19px;
    margin-bottom: 12px;
}
.price-card__old {
    color: var(--muted);
    text-decoration: line-through;
}
.price-card__now {
    font-weight: 900;
    font-size: 33px;
    margin: 4px 0;
    letter-spacing: -0.03em;
    color: var(--price);
}
.price-card__save {
    color: color-mix(in srgb, var(--accent) 80%, #000);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 20px;
}
.pricing__note {
    text-align: center;
    color: var(--muted);
    margin-top: 26px;
}

/* ---- FAQ ---- */
.faq-list {
    display: grid;
    gap: 13px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 4px 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}
.faq-item[open] {
    box-shadow: var(--shadow);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    padding: 18px 0;
    list-style: none;
    position: relative;
    padding-right: 38px;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 2px;
    top: 13px;
    font-size: 26px;
    line-height: 1;
    color: var(--accent);
    font-weight: 400;
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: "–";
}
.faq-item__a {
    padding: 0 0 20px;
    color: var(--muted);
}

/* ---- Text block ---- */
.textblock__body {
    color: #33383f;
    font-size: 18px;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
    color: #c7ccd2;
    padding: 46px 0;
    font-size: 14px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}
.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}
.footer-info {
    text-align: center;
    line-height: 1.8;
}
.footer-info a {
    color: #c7ccd2;
}
.footer-copy {
    margin-top: 10px;
    opacity: 0.55;
}
.footer-disclaimer {
    max-width: 880px;
    margin: 22px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    line-height: 1.7;
    color: #9aa3ad;
    text-align: left;
}

/* ---- Sticky mobile CTA ---- */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: none;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 10px 14px;
    box-shadow: 0 -12px 34px rgba(20, 22, 30, 0.12);
    transform: translateY(110%);
    transition: transform 0.3s ease;
}
.sticky-cta.is-visible {
    transform: none;
}
.sticky-cta__price {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
    flex: 0 0 auto;
}
.sticky-cta__price small {
    color: var(--muted);
    font-size: 12px;
    text-decoration: line-through;
}
.sticky-cta__price b {
    color: var(--price);
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
}
.sticky-cta .btn {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    padding: 15px 18px;
    font-size: 15px;
    letter-spacing: 0.02em;
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(15, 16, 20, 0.93);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox.is-open {
    display: flex;
}
.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}
.lightbox__close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}
.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.28);
}

/* ---- Thanks / Doc pages ---- */
.thanks-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: var(--bg-soft);
}
.thanks-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 50px 36px;
    text-align: center;
    max-width: 480px;
    box-shadow: var(--shadow);
}
.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 42px;
    display: grid;
    place-items: center;
}
.thanks-card h1 {
    font-size: 27px;
}
.thanks-card p {
    color: var(--muted);
    margin-bottom: 20px;
}
.thanks-data {
    margin: 4px 0;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    line-height: 1.8;
    font-size: 17px;
    text-align: center;
}
.thanks-data__title {
    font-weight: 700;
    margin-bottom: 6px;
}
.thanks-hint {
    color: var(--muted);
    font-size: 14px;
    margin: 12px 0 20px;
}
.doc-page {
    padding: 48px 0 64px;
}
.doc-back {
    display: inline-block;
    margin-bottom: 22px;
    text-decoration: none;
    font-weight: 700;
}
.doc-body {
    color: #33383f;
}
.doc-company {
    margin-top: 32px;
    color: var(--muted);
    font-size: 14px;
}

/* ---- Pre-lander (прокладка) ---- */
.pre-brand {
    text-align: center;
    font-weight: 800;
    font-size: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.02em;
}
.prelander {
    padding: 34px 0 56px;
    background: linear-gradient(180deg, #fbf9f4, var(--bg));
    min-height: 60vh;
}
.prelander .container {
    text-align: center;
}
.prelander__media {
    max-width: 440px;
    margin: 0 auto 26px;
}
.prelander__media img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.prelander__title {
    font-size: clamp(26px, 5vw, 38px);
    margin-bottom: 0.4em;
}
.prelander__text {
    color: var(--muted);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 26px;
}
.prelander__btn {
    max-width: 440px;
    margin: 0 auto;
}
.pre-adv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 30px;
    margin-top: 30px;
}
.pre-adv__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
}
.pre-adv__icon {
    font-size: 22px;
}

/* ---- Timer: варіанти вигляду ---- */
.timer-block--light,
.timer-block--inline {
    background: var(--bg-soft);
    color: var(--ink);
}
.timer-block--light::before,
.timer-block--inline::before {
    display: none;
}
.timer-block--light .timer-block__sub,
.timer-block--inline .timer-block__sub {
    color: var(--muted);
}
.timer-block--light .timer__unit {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.timer-block--light .timer__unit span {
    color: var(--muted);
}
.timer-block--light .timer__sep {
    color: var(--line);
}
.timer-block--light .btn--primary,
.timer-block--inline .btn--primary {
    background: var(--primary);
    color: #fff;
}
.timer-block--inline .timer {
    gap: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 24px;
    box-shadow: var(--shadow-sm);
}
.timer-block--inline .timer__unit {
    background: none;
    border: 0;
    padding: 0 6px;
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.timer-block--inline .timer__unit b {
    font-size: 26px;
}
.timer-block--inline .timer__unit span {
    font-size: 11px;
    margin: 0;
}
.timer-block--inline .timer__sep {
    font-size: 22px;
    color: var(--line);
}

/* ---- Symptoms: режими значків (✕ / ✓ / емодзі) ---- */
.symptom__icon--cross,
.symptom__icon--check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex: 0 0 auto;
}
.symptom__icon--cross {
    background: var(--price);
}
.symptom__icon--check {
    background: var(--trust);
}
.symptoms--check .symptom {
    border-left-color: var(--trust);
}
.symptoms--cross .symptom {
    border-left-color: var(--price);
}

/* ---- Timeline: прогрес сірий → зелений ---- */
.timeline::before {
    background: linear-gradient(var(--line), var(--trust));
}
.tl-item__dot {
    background: var(--dot, var(--accent));
    box-shadow: 0 0 0 2px var(--line);
    left: -35px;
}
.tl-item__dot--final {
    width: 22px;
    height: 22px;
    left: -37px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--trust) 25%, transparent);
}

/* ---- Stat: варіанти (коло / кільце / число) ---- */
.stat--ring .stat__ring {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--accent) calc(var(--pct, 0) * 1%), var(--line) 0);
}
.stat--ring .stat__ring::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: var(--bg);
}
.stat--ring .stat__value {
    position: relative;
    z-index: 1;
    font-size: 44px;
    font-weight: 900;
    color: var(--ink);
}
.stat--plain .stat__plain {
    font-size: clamp(56px, 13vw, 96px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .composition-grid,
    .howto-grid,
    .reviews-grid,
    .certs-grid,
    .process-track {
        grid-template-columns: 1fr 1fr;
    }
}
.results-section {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.results-block + .results-block {
    margin-top: 40px;
}

.results-block__title {
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid #dddddd;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

.result-item {
    padding: 18px 0;
    border-bottom: 1px solid #dddddd;
}

.result-item__top {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 16px;
}

.result-item__percent {
    font-size: clamp(36px, 5vw, 50px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.result-item__text {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.45;
}

.result-item__bar {
    height: 4px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #ececec;
}

.result-item__fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #111111;
    transition: width 1.2s ease;
}

.result-item.is-visible .result-item__fill {
    width: var(--progress);
}

.results-section__note {
    margin: 16px 0 0;
    font-size: 13px;
    font-style: italic;
    line-height: 1.45;
    opacity: 0.7;
}
.suitable__container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.suitable__title {
    margin: 0 0 28px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.suitable__list {
    border-top: 1px solid #dddddd;
}
.ingredients__container {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.ingredients__title {
    margin: 0 0 16px;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.15;
}

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

.ingredients__item {
    min-width: 0;
    padding: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
}

.ingredients__item h3 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.2;
}

.ingredients__item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .ingredients__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .ingredients__item {
        padding: 9px;
    }

    .ingredients__item h3 {
        font-size: 14px;
    }

    .ingredients__item p {
        font-size: 11px;
        line-height: 1.25;
    }
}
.usage {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.usage__title {
    margin: 0 0 18px;
    font-size: clamp(28px, 5vw, 42px);
}

.usage__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.usage__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.usage__steps p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .usage__steps {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: left;
    }
}
@media (max-width: 390px) {
    .ingredients__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .ingredients__item {
        padding: 8px;
        border-radius: 8px;
    }

    .ingredients__item h3 {
        font-size: 13px;
    }

    .ingredients__item p {
        font-size: 10px;
        line-height: 1.2;
    }
}
.suitable__item {
    padding: 24px 0;
    border-bottom: 1px solid #dddddd;
}

.suitable__item-title {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.3;
}

.suitable__text {
    margin: 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .suitable__item {
        padding: 20px 0;
    }

    .suitable__item-title {
        font-size: 19px;
    }

    .suitable__text {
        font-size: 15px;
    }
}
@media (max-width: 640px) {
    .results-section {
        max-width: 100%;
    }

    .results-block + .results-block {
        margin-top: 32px;
    }

    .result-item {
        padding: 16px 0;
    }

    .result-item__top {
        grid-template-columns: 68px 1fr;
        gap: 12px;
    }

    .result-item__percent {
        font-size: 36px;
    }

    .result-item__text {
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .result-item__top {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .result-item__percent {
        font-size: 38px;
    }
}
@media (max-width: 680px) {
    body {
        font-size: 16px;
    }
    .block {
        padding: 15px 0;
    }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .hero__media {
        order: -1;
    }
    .desc-row,
    .desc-row.is-right {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 18px;
    }
    .desc-row + .desc-row {
        margin-top: 30px;
    }
    .adv-grid,
    .pricing__grid,
    .composition-grid,
    .howto-grid,
    .reviews-grid,
    .certs-grid,
    .ba-grid,
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    .price-card.is-popular,
    .price-card.is-popular:hover {
        transform: none;
    }
    /* «Як відбувається замовлення» — 2 в ряд із пунктирним шляхом між парою */
    .process-track {
        grid-template-columns: 1fr 1fr;
        gap: 36px 22px;
    }
    .process-step {
        padding: 0 4px;
    }
    .process-step::after {
        display: block;
        top: 34px;
        right: -13px;
        width: 22px;
    }
    .process-step:nth-child(even)::after,
    .process-step:last-child::after {
        display: none;
    }
    .timer__unit {
        min-width: 66px;
        padding: 13px 7px;
    }
    .timer__unit b {
        font-size: 31px;
    }
    .trust-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 10px;
    }
    .trust-bar__item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 13px;
    }
    .press__row {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 30px;
        padding: 2px 2px 10px;
        scrollbar-width: none;
    }
    .press__row::-webkit-scrollbar {
        display: none;
    }
    .press__name {
        font-size: 20px;
        white-space: nowrap;
    }
    .gallery-item {
        flex-basis: 80%;
    }
    .expert-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 16px;
        padding: 24px;
    }
    .expert-card__quotemark {
        display: none;
    }
    .sticky-cta {
        display: flex;
    }
    /* місце під липку кнопку всередині футера (темного) — без білої смуги під ним */
    .site-footer {
        padding-bottom: 92px;
    }
}
