@font-face {
    font-family: "Montserrat";
    src:
        local("Montserrat Light"),
        local("Montserrat-Light"),
        url("../fonts/Montserrat-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src:
        local("Montserrat Thin"),
        local("Montserrat-Thin"),
        url("../fonts/Montserrat-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src:
        local("Montserrat SemiBold"),
        local("Montserrat-SemiBold"),
        url("../fonts/Montserrat-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src:
        local("Montserrat ExtraLight"),
        local("Montserrat-ExtraLight"),
        url("../fonts/Montserrat-ExtraLight.woff") format("woff");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src:
        local("Montserrat Bold"),
        local("Montserrat-Bold"),
        url("../fonts/Montserrat-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src:
        local("Montserrat Regular"),
        local("Montserrat-Regular"),
        url("../fonts/Montserrat-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src:
        local("Montserrat Medium"),
        local("Montserrat-Medium"),
        url("../fonts/Montserrat-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src:
        local("Montserrat ExtraBold"),
        local("Montserrat-ExtraBold"),
        url("../fonts/Montserrat-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src:
        local("Montserrat Black"),
        local("Montserrat-Black"),
        url("../fonts/Montserrat-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bordo: #8E1B2C;
    --bordo-dark: #6E1220;
    --ink: #2B2530;
    --muted: #7A7380;
    --paper: #FFFFFF;
    --blush: #FAF4F1;
    --line: #E9DFDA;
    --wb: #CB11AB;
    --warn-bg: #FFF6E5;
    --warn-ink: #8A6100;
    --ozon: rgb(0, 91, 255);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: inherit;
}

button {
    font: inherit;
    cursor: pointer;
}

/* ── шапка ── */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px;
}

.site-header .logo {
    font-family: Georgia, serif;
    font-size: 26px;
    letter-spacing: .14em;
    color: var(--bordo);
    text-decoration: none;
    font-weight: 600;
}

.site-header nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
}

.site-header nav a {
    text-decoration: none;
}

.site-header nav a:hover {
    color: var(--bordo);
}

.site-header .mini-cta {
    background: var(--bordo);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.site-header .mini-cta:hover {
    background: var(--bordo-dark);
}

.site-header .m_menu {
    display: none;
    outline: none;
    font-size: 0;
    width: 20px;
    height: 18px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    background: url(../images/m_menu.svg) 0 0 no-repeat;
    background-size: 100% auto;
}

/* ── hero ── */
.hero {
    background: var(--blush);
    border-bottom: 1px solid var(--line);
}

.hero-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    padding: 56px 24px 64px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.eyebrow .dot-wb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--wb);
}
.eyebrow .dot-ozon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ozon);
}

h1 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 20px 0 16px;
}

h1 .price-accent {
    color: var(--bordo);
}

.sub {
    font-size: 17px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 32em;
    font-weight: 500;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin: 26px 0 6px;
}

.price-now {
    font-size: 38px;
    font-weight: 800;
    color: var(--bordo);
}

.price-old {
    font-size: 20px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: line-through;
}

.price-note {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
}

.cta {
    display: inline-block;
    background: var(--bordo);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(142, 27, 44, .28);
    transition: transform .15s ease, background .15s ease;
    margin-top: 14px;
}

.cta:hover {
    background: var(--bordo-dark);
    transform: translateY(-1px);
}

.cta:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 3px;
}

.trust-row {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.founder {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    flex: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.avatar svg {
    width: 22px;
    height: 22px;
    stroke: var(--bordo);
    fill: none;
    stroke-width: 2.6;
    stroke-linecap: round;
}

.trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bordo);
}

/* ── board ── */
.board-wrap {
    position: relative;
}

.board {
    position: relative;
    aspect-ratio: 10/11;
    max-width: 520px;
    margin-left: auto;
}

.board svg.links {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.links line {
    stroke: var(--bordo);
    stroke-opacity: .35;
    stroke-width: 1.4;
    stroke-dasharray: 4 5;
}

.item {
    position: absolute;
    z-index: 1;
    width: 27%;
    aspect-ratio: 1/1.16;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(43, 37, 48, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
}

.item svg {
    width: 56%;
    height: auto;
    stroke: var(--bordo);
    fill: none;
    stroke-width: 2.4;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.item img {
    width: 56%;
    height: auto;
    object-fit: contain;
    display: block;
}


.badge-link {
    text-decoration: none;
}

.badge {
    display: table;
    margin: 20px auto 0;
    background: #000000;
    color: #fff;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(43, 37, 48, .25);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.badge-link:hover .badge {
    background: var(--bordo);
    box-shadow: 0 14px 34px rgba(43, 37, 48, .35);
    transform: translateY(-2px);
}

.board-note {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.i1 {
    left: 4%;
    top: 2%;
}

.i2 {
    left: 60%;
    top: 0%;
}

.i3 {
    left: 30%;
    top: 30%;
}

.i4 {
    left: 68%;
    top: 38%;
}

.i5 {
    left: 6%;
    top: 56%;
}

.i6 {
    left: 44%;
    top: 66%;
}

/* ── появление ── */
@media (prefers-reduced-motion:no-preference) {
    .hero-copy>* {
        opacity: 0;
        transform: translateY(10px);
        animation: up .5s ease forwards;
    }

    .hero-copy>*:nth-child(1) {
        animation-delay: .05s;
    }

    .hero-copy>*:nth-child(2) {
        animation-delay: .12s;
    }

    .hero-copy>*:nth-child(3) {
        animation-delay: .19s;
    }

    .hero-copy>*:nth-child(4) {
        animation-delay: .26s;
    }

    .hero-copy>*:nth-child(5) {
        animation-delay: .33s;
    }

    .hero-copy>*:nth-child(6) {
        animation-delay: .4s;
    }

    .hero-copy>*:nth-child(7) {
        animation-delay: .47s;
    }

    .item {
        opacity: 0;
        transform: scale(.92);
        animation: pop .45s ease forwards;
    }

    .i1 {
        animation-delay: .25s;
    }

    .i2 {
        animation-delay: .35s;
    }

    .i3 {
        animation-delay: .45s;
    }

    .i4 {
        animation-delay: .55s;
    }

    .i5 {
        animation-delay: .65s;
    }

    .i6 {
        animation-delay: .75s;
    }

    .badge {
        opacity: 0;
        animation: up .5s ease .9s forwards;
    }

    @keyframes up {
        to {
            opacity: 1;
            transform: none;
        }
    }

    @keyframes pop {
        to {
            opacity: 1;
            transform: none;
        }
    }
}

/* ── блок 2: Знакомо? ── */
.pains {
    background: var(--paper);
    padding: 76px 24px 84px;
}

.pains-in {
    max-width: 1040px;
    margin: 0 auto;
}

.sec-h {
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 800;
    text-align: center;
    letter-spacing: -.01em;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.pain {
    position: relative;
    background: var(--blush);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 24px 28px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--ink);
}

.pain::after {
    content: "";
    position: absolute;
    left: 34px;
    bottom: -9px;
    width: 16px;
    height: 16px;
    background: var(--blush);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: rotate(45deg);
}

.pain b {
    color: var(--bordo);
    font-weight: 700;
}

.bridge {
    margin: 52px auto 0;
    max-width: 30em;
    text-align: center;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -.01em;
}

.bridge::before {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 2px;
    background: var(--bordo);
    margin: 0 auto 22px;
}

.bridge .accent {
    color: var(--bordo);
}

/* ── блок 3: Как это работает ── */
.how {
    background: var(--blush);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 76px 24px 84px;
}

.how-in {
    max-width: 1100px;
    margin: 0 auto;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    border-top: 2px dashed rgba(142, 27, 44, .35);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-num {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex: none;
    background: #fff;
    border: 2px solid var(--bordo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--bordo);
}

.step-body {
    margin-top: 16px;
}

.step h3 {
    font-size: 16px;
    font-weight: 700;
}

.step p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
    font-weight: 500;
}

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

.pay-badge {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
}

.pay-badge_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pay-badge_icon img {
    width: auto;
    display: block;
}

.pay-badge_icon img[src*="spb"] {
    height: 28px;
}

.pay-badge_icon img[src*="ukassa"] {
    height: 16px;
}
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}

.pay-badge_icon img {
    max-height: 100%;
    width: auto;
    display: block;
}

.how-note {
    margin: 48px auto 0;
    max-width: 44em;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--bordo);
    border-radius: 12px;
    padding: 16px 22px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

/* ── блок 4: Что придёт за 490 ₽ ── */
.what {
    background: var(--paper);
    padding: 76px 24px 84px;
}

.what-in {
    max-width: 1100px;
    margin: 0 auto;
}

.what-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    margin-top: 48px;
    align-items: center;
}

.tg {
    display: block;
    max-width: 380px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(43, 37, 48, .12);
    background: #F4F1F6;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.tg:hover {
    box-shadow: 0 24px 56px rgba(43, 37, 48, .18);
    transform: translateY(-4px);
    border-color: var(--bordo);
}

.tg-head {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px;
}

.tg-ava {
    flex: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: var(--bordo);
    border: 1px solid var(--bordo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1;
}

.tg-name {
    font-size: 14px;
    font-weight: 700;
}

.tg-status {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.tg-body {
    padding: 14px 12px 18px;
}

.msg {
    background: #fff;
    border-radius: 14px 14px 14px 4px;
    padding: 14px 14px 12px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(43, 37, 48, .06);
}
.msg+.msg {
    margin-top: 10px;
}

.msg-title {
    font-weight: 700;
    font-size: 13px;
}

.mini-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 10px 0;
}

.mini-collage span {
    aspect-ratio: 1/1;
    background: var(--blush);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-collage svg {
    width: 60%;
    height: auto;
    stroke: var(--bordo);
    fill: none;
    stroke-width: 2.6;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.msg-collage {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 0;
    box-shadow: 0 2px 6px rgba(43, 37, 48, .06);
}

.msg-link {
    color: #2481CC;
    text-decoration: underline;
    word-break: break-all;
}

.msg-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: var(--muted);
    margin-top: 6px;
}

.tg-caption {
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.what-list {
    list-style: none;
    display: grid;
    gap: 20px;
}

.what-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.check {
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-top: 2px;
    background: var(--blush);
    border: 1.5px solid var(--bordo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.check svg {
    width: 13px;
    height: 13px;
    stroke: var(--bordo);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.what-cta {
    margin-top: 36px;
}

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

.g-card {
    border: 2px dashed var(--line);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    text-decoration: none;
    overflow: hidden;
    min-width: 0;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.g-card:hover {
    box-shadow: 0 18px 44px rgba(43, 37, 48, .12);
    transform: translateY(-4px);
    border-color: var(--bordo);
}
.g-card__thumb {
    width: 90px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}
.g-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.g-card__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 13px;
    line-height: 1.5;
}
.g-card__title {
    font-weight: 600;
    color: #4a3b4a;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.g-card__line {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sticky-cta {
    display: none;
}

/* ── блок 5: под вашу фигуру ── */
.fits {
    background: var(--blush);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 76px 24px 84px;
}

.fits-in {
    max-width: 1100px;
    margin: 0 auto;
}

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

.fit {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #fff;
    border: 1px solid var(--line);
}

.fit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fit figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 36px 16px 14px;
    background: linear-gradient(to top, rgba(30, 20, 25, .72), rgba(30, 20, 25, 0));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.fits-note {
    margin: 40px auto 0;
    max-width: 34em;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--bordo);
    border-radius: 14px;
    padding: 20px 26px;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 700;
}

.fits-note .accent {
    color: var(--bordo);
}

/* ── блок 6: Почему 490 ₽ ── */
.why {
    background: var(--paper);
    padding: 76px 24px 84px;
}

.why-in {
    max-width: 1000px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 48px;
    margin-top: 48px;
    align-items: start;
}

.stylist {
    background: var(--blush);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 26px;
    text-align: center;
}

.avatar-xl {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto;
    background: var(--blush);
    border: 2px solid var(--bordo);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar-xl svg {
    width: 62px;
    height: 62px;
    stroke: var(--bordo);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.stylist h3 {
    margin-top: 18px;
    font-size: 19px;
    font-weight: 800;
}

.stylist .role {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bordo);
}

.stylist .edu {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.5;
}

.stylist-note {
    margin-top: 16px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.why-text p {
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}

.why-text p+p {
    margin-top: 16px;
}

.why-text b {
    color: var(--bordo);
    font-weight: 700;
}

.why-text .quote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

.why-text .quote-sign {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 10px;
}

.compare {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.comp {
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.comp.old {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--muted);
}

.comp.new {
    background: var(--bordo);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.comp.new:hover {
    background: var(--bordo-dark);
    transform: translateY(-1px);
}

.guarantee {
    margin-top: 44px;
    display: flex;
    gap: 18px;
    align-items: center;
    background: var(--blush);
    border: 1px solid var(--line);
    border-left: 4px solid var(--bordo);
    border-radius: 14px;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.g-icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bordo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--bordo);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── блок 7: отзывы ── */
.reviews {
    background: var(--blush);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 76px 24px 84px;
}

.reviews-in {
    max-width: 1100px;
    margin: 0 auto;
}

.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.rev {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rev-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-ava {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blush);
    border: 1.5px solid var(--bordo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: var(--bordo);
}

.rev-name {
    font-weight: 700;
    font-size: 15px;
}

.rev-city {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.rev-text {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.rev-photo {
    margin-top: auto;
    border: 2px dashed var(--line);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

.rev-photo:hover {
    background: var(--blush);
    border-color: var(--bordo);
}

.rev-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* ── блок 8: FAQ ── */
.faq {
    background: var(--paper);
    padding: 76px 24px 84px;
}

.faq-in {
    max-width: 760px;
    margin: 0 auto;
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-top: 12px;
    overflow: hidden;
}

.faq details:first-of-type {
    margin-top: 40px;
}

.faq summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    list-style: none;
}

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

.faq summary::after {
    content: "+";
    flex: none;
    color: var(--bordo);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

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

.faq details[open] {
    border-color: var(--bordo);
}

.faq-a {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
    color: var(--muted);
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* ── блок 8.5: лид-магнит ── */
.magnet {
    background: var(--blush);
    border-top: 1px solid var(--line);
    padding: 56px 24px 60px;
}

.magnet-in {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.magnet h2 {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
}

.magnet .magnet-sub {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
}

.magnet-form {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.magnet-form input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 15px 16px;
    font: inherit;
    font-size: 15px;
}

.magnet-form input:focus-visible {
    outline: 2px solid var(--bordo);
    outline-offset: 1px;
}

.magnet-form .cta {
    margin-top: 0;
    padding: 15px 24px;
    font-size: 15px;
    flex: none;
}

.magnet-legal {
    margin-top: 12px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.magnet-legal a {
    color: inherit;
}

/* ── блок 9: финал ── */
.final {
    background: var(--bordo);
    color: #fff;
    text-align: center;
    padding: 88px 24px 92px;
}

.final h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -.01em;
}

.final .final-sub {
    margin-top: 14px;
    font-size: 17px;
    font-weight: 500;
    opacity: .92;
}

.final .cta {
    background: #fff;
    color: var(--bordo);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    margin-top: 30px;
}

.final .cta:hover {
    background: var(--blush);
}

.final-note {
    margin-top: 18px;
    font-size: 13px;
    font-weight: 500;
    opacity: .9;
}

/* ── footer ── */
footer {
    background: var(--paper);
    color: #747474;
    padding: 44px 24px;
    font-size: 14px;
    font-weight: 500;
}

.foot-in {
    max-width: 1100px;
    margin: 0 auto;
}

.bl_bottom_menu {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid #e8e8e8;
}

.foot-col {
    display: grid;
    gap: 8px;
    align-content: start;
}

.foot-col a {
    text-decoration: none;
    color: #747474;
}

.foot-col a:hover {
    color: #a3a3a3;
    text-decoration: underline;
}

.t_bottom_menu {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 8px;
}

.bottom_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.bottom_menu li {
    margin: 0;
    padding: 0;
}

.bottom_menu li a {
    text-decoration: none;
    font-size: 14px;
    color: #747474;
}

.bottom_menu li a:hover {
    color: #a3a3a3;
    text-decoration: underline;
}

.payment {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.payment > * {
    max-width: 100px;
}

.payment img {
    display: block;
    width: 100%;
    height: auto;
}

.bl_bottom_footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
    /*flex-wrap: wrap;*/
    padding-top: 32px;
    margin-top: 0;
}

.bl_bottom_footer > * {
    width: 50%;
}

.bl_bottom_footer > .bl_copyright {
    width: auto;
    margin-left: auto;
}

.bl_social_f {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 480px;
    width: 100%;
}

.t_bottom_social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.t_bottom_social a {
    display: block;
    outline: none;
    opacity: 0.85;
}

.t_bottom_social a:hover {
    opacity: 1;
}

.t_bottom_social img {
    width: auto;
    height: 36px;
    object-fit: contain;
}

.bl_copyright {
    padding-top: 20px;
    font-size: 10px;
    line-height: 1.5;
    color: #747474;
}

.bl_copyright > * {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.bl_copyright p {
    width: 100%;
    max-width: 570px;
    text-align: right;
    margin: 0 0 4px 0;
}

.bl_copyright a {
    color: #747474;
    text-decoration: none;
}

.bl_copyright a:hover {
    color: #a3a3a3;
    text-decoration: underline;
}

.bl_copyright p:last-child {
    margin-bottom: 0;
}

.foot-logo {
    font-family: Georgia, serif;
    font-size: 20px;
    letter-spacing: .14em;
    color: var(--ink);
}

.foot-soon {
    opacity: .7;
}

@media (max-width: 900px) {
    .bl_bottom_menu {
        gap: 24px;
    }
    
    .foot-col {
        min-width: 140px;
        flex: 1 1 40%;
    }
    
    .bl_bottom_footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .bl_bottom_footer > * {
        width: 100%;
    }
    
    .bl_bottom_footer > *:first-child {
        display: flex;
        justify-content: center;
    }
    
    .bl_social_f {
        flex-direction: column;
        gap: 10px;
        max-width: 300px;
    }
    
    .bl_bottom_footer > .bl_copyright {
        width: 100%;
        margin-left: 0;
    }

    .bl_copyright {
        text-align: center;
        max-width: 100%;
    }
    
    .bl_copyright > * {
        align-items: center;
    }
    
    .bl_copyright p {
        text-align: center;
    }
    
    .payment {
        flex-wrap: wrap;
    }
    
    .payment > * {
        max-width: 65px;
    }
}

/* ── mobile menu (legacy) ── */
.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.3s ease;
    will-change: visibility;
}

.mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu .mm__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.9);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.mobile-menu.is-open .mm__bg {
    opacity: 1;
}

.mobile-menu .mm__wrapper {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: -webkit-transform 0.4s ease-in-out, transform 0.4s ease-in-out, visibility 0.4s;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 200;
    touch-action: auto;
    -ms-touch-action: auto;
    display: flex;
    justify-content: flex-end;
    will-change: transform;
}

.mobile-menu.is-open .mm__wrapper {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.mm__wrapper>* {
    overflow-y: auto;
    width: 80%;
    height: 100%;
    background: #d9d9d9;
    padding: 2rem 25px;
    border-radius: 14px 0px 0px 14px;
    -webkit-border-radius: 14px 0px 0px 14px;
    -moz-border-radius: 14px 0px 0px 14px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.mm_logo img {
    width: 100px;
    height: auto;
}

.mm_menu {
    margin: 2rem 0 0;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.25rem;
}

.mm_menu>* {
    margin: 2rem 0 0;
}

.mm_menu>*:first-child {
    margin: 0;
}

.mm_menu a:link,
.mm_menu a:visited {
    text-decoration: none;
    color: #616161;
}

.mm_menu a:hover {
    color: #a3a3a3;
}

.mm_btn {
    margin: 2rem 0 0;
}

.mm_btn .cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    margin-top: 0;
}

/* ── modals (legacy) ── */
.modal-parent {
    display: none;
    position: relative;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.9);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 500;
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    background: #d9d9d9;
    position: relative;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    padding: 32px 14px;
}

.modal-body {
    width: 100%;
    max-width: 500px;
    background: #fff;
    position: relative;
    border-radius: 14px;
    padding: 32px 14px;
    margin-top: 40px;
}

.close-modal {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    background: url(../images/icons/close.svg) 0 0 no-repeat;
    background-size: 100% auto;
    font-size: 0;
    text-decoration: none;
}

.modal-content-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.modal-open {
    overflow: hidden;
}

.modal_review_img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
}

.modal_review {
    padding: 0 14px;
}

.modal_review_info {
    margin: 0.5rem 0 0;
}

.modal_review_name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

.modal_review_city {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 2px;
}

.modal_review_text {
    margin: 0.571rem 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink);
}

.about-intro {
    background: #f0efef;
    border-radius: 14px;
    padding: 32px 36px;
    margin-bottom: 44px;
}

.about-finale {
    background: #960505;
    border-radius: 14px;
    padding: 28px 40px;
    margin-top: 50px;
    text-align: center;
}

/* ── cookie bubble (legacy) ── */
#cookie-bubble {
    position: fixed;
    right: 20px;
    bottom: 20px;
    max-width: 380px;
    width: calc(100% - 40px);
    padding: 16px;
    background: #f0efef;
    color: #3c3b3b;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

#cookie-bubble p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-bubble button {
    align-self: flex-start;
    background: #960505;
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

#cookie-bubble a {
    color: #960505;
}

#cookie-bubble button:hover {
    background: #707070;
}

/* ── мобильная версия ── */
@media (max-width:900px) {
    body {
        padding-bottom: 74px;
    }

    body.cookie-shown {
        padding-bottom: 190px;
    }

    #cookie-bubble {
        right: 10px;
        bottom: 84px;
        max-width: calc(100% - 20px);
        width: calc(100% - 20px);
        padding: 10px 12px;
        gap: 8px;
        border-radius: 10px;
    }

    #cookie-bubble p {
        font-size: 12px;
        line-height: 1.4;
    }

    #cookie-bubble button {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    .board {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .tg {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .site-header .mini-cta {
        display: none;
    }

    .sticky-cta {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        background: rgba(255, 255, 255, .96);
        border-top: 1px solid var(--line);
        padding: 10px 16px;
    }

    .eyebrow:nth-child(2) {
        margin-top: 10px;
    }

    .sticky-cta .cta {
        display: block;
        text-align: center;
        margin-top: 0;
        padding: 15px 20px;
    }

    .reviews {
        padding: 48px 16px 56px;
    }

    .rev-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 28px;
    }

    .faq {
        padding: 48px 16px 56px;
    }

    .faq details:first-of-type {
        margin-top: 26px;
    }

    .faq-cta .cta {
        display: block;
        text-align: center;
    }

    .magnet {
        padding: 44px 16px 48px;
    }

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

    .magnet-form .cta {
        width: 100%;
    }

    .final {
        padding: 56px 16px 60px;
    }

    .final .cta {
        display: block;
        text-align: center;
    }

    .foot-in {
        flex-direction: column;
        gap: 20px;
    }

    .why {
        padding: 48px 16px 56px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 28px;
    }

    .why-text p {
        font-size: 15px;
    }

    .guarantee {
        margin-top: 32px;
        align-items: flex-start;
        font-size: 15px;
    }

    .fits {
        padding: 48px 16px 56px;
    }

    .fit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 28px;
    }

    .fit figcaption {
        font-size: 13px;
        padding: 28px 12px 10px;
    }

    .fits-note {
        margin-top: 30px;
        font-size: 15px;
    }

    .pains {
        padding: 48px 16px 56px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 28px;
    }

    .bridge {
        margin-top: 36px;
        font-size: 17px;
    }

    .how {
        padding: 48px 16px 56px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-top: 32px;
    }

    .steps::before {
        display: none;
    }

    .step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .step-body {
        margin-top: 2px;
    }

    .pay-badges {
        justify-content: flex-start;
    }

    .how-note {
        margin-top: 36px;
        text-align: left;
    }

    .what {
        padding: 48px 16px 56px;
    }

    .what-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 32px;
    }

    .what-list li {
        font-size: 15px;
    }

    .what-cta .cta {
        display: block;
        text-align: center;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 44px;
    }

    .g-card {
        gap: 12px;
        padding: 12px 14px;
    }

    .g-card__thumb {
        width: 70px;
        height: 94px;
    }

    .site-header {
        padding: 14px 16px;
    }

    .site-header nav {
        display: none;
    }

    .site-header .logo {
        font-size: 22px;
    }

    .site-header .m_menu {
        display: block;
    }

    .hero-in {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 28px 16px 44px;
    }

    h1 {
        margin-top: 16px;
    }

    .sub {
        font-size: 15px;
    }

    .price-now {
        font-size: 32px;
    }

    .cta {
        display: block;
        text-align: center;
        padding: 17px 20px;
    }

    .board {
        max-width: 420px;
        margin: 0 auto;
    }

    .board-note {
        text-align: center;
    }

    .badge {
        white-space: normal;
        text-align: center;
    }

    .modal-content {
        max-width: 264px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .mm__wrapper>* {
        width: 60%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .mm__wrapper>* {
        width: 40%;
    }
}
