/* Revbox — светлый, спокойный, человеческий лендинг */

/* Display: только 700 (заголовки). Body: Manrope 500/700 (600 → 700). */
@font-face {
    font-family: Unbounded;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/unbounded-cyrillic-700.woff2") format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: Unbounded;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/unbounded-latin-700.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: Manrope;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/fonts/manrope-cyrillic-500.woff2") format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: Manrope;
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url("/fonts/manrope-cyrillic-700.woff2") format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: Manrope;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/fonts/manrope-latin-500.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: Manrope;
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url("/fonts/manrope-latin-700.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* Палитра в духе klinikabudzdorov.ru */
    --bg: #f5f9fd;
    --bg-soft: #eef6fc;
    --paper: #ffffff;
    --ink: #1a2b3c;
    --muted: #5f6f7f;
    --line: #d7e6f3;
    --accent: #0047bb;
    --accent-2: #0096d2;
    --accent-hover: #336cc9;
    --accent-soft: #e1f0fa;
    --sky: #00cafb;
    --display: Unbounded, "Segoe UI", sans-serif;
    --body: Manrope, "Segoe UI", sans-serif;
    --pad: clamp(1.1rem, 4vw, 2rem);
    --max: 1040px;
    --radius: 14px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 4.75rem;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--body);
    font-weight: 500;
    color: var(--ink);
    background:
        radial-gradient(1200px 520px at 12% -10%, rgba(0, 202, 251, 0.18), transparent 55%),
        radial-gradient(900px 480px at 88% 8%, rgba(0, 71, 187, 0.12), transparent 50%),
        linear-gradient(180deg, #f9fbff 0%, var(--bg) 38%, #eef6fc 100%);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--accent-2);
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--accent);
}

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

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

.skip {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: 0.55rem 0.9rem;
    z-index: 100;
}

.skip:focus {
    left: 0.5rem;
    top: 0.5rem;
}

.top {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem var(--pad);
    background: rgba(249, 251, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.logo,
.logo-lg,
.foot-logo {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
    text-decoration: none;
}

.logo {
    font-size: 1.15rem;
    margin-right: auto;
    color: var(--accent);
}

.nav {
    display: none;
    gap: 1.25rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
}

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

.top-cta {
    display: none;
    text-decoration: none;
    background: var(--accent);
    color: #fff !important;
    padding: 0.5rem 0.95rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: background 0.2s ease;
}

.top-cta:hover {
    background: var(--accent-hover);
    color: #fff !important;
}

.menu-btn {
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 1.05rem;
    height: 1.5px;
    background: var(--ink);
}

.drawer {
    display: grid;
    padding: 0.4rem var(--pad) 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.drawer[hidden] {
    display: none !important;
}

.drawer a {
    text-decoration: none;
    color: var(--ink);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
}

/* Hero — бренд, оффер и живой виджет */
.hero {
    max-width: 920px;
    margin: 0 auto;
    padding: 0.75rem var(--pad) 2.75rem;
    display: grid;
    gap: 0;
    scroll-margin-top: 4.75rem;
}

.hero-text {
    margin-bottom: 1.25rem;
}

.logo-lg {
    margin: 0 0 0.85rem;
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    line-height: 1;
    color: var(--accent);
    background: linear-gradient(105deg, var(--accent) 0%, var(--accent-2) 70%, var(--sky) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 0.6s ease both;
}

.hero h1 {
    margin: 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.55rem, 5vw, 2.25rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    max-width: 20ch;
    animation: fadeUp 0.6s ease 0.08s both;
}

.hero .demo-switch {
    margin-top: 0;
    animation: fadeUp 0.55s ease 0.12s both;
}

.hero .site-frame {
    margin-top: 0.85rem;
    animation: fadeUp 0.55s ease 0.18s both;
}

.hero .demo-cta {
    animation: fadeUp 0.55s ease 0.24s both;
}

.lead {
    margin: 1.15rem 0 0;
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 34ch;
    line-height: 1.5;
    animation: fadeUp 0.6s ease 0.14s both;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.35rem;
    margin-top: 1.75rem;
    animation: fadeUp 0.6s ease 0.22s both;
}

.actions .btn {
    animation: fadeUp 0.55s ease 0.28s both;
}

.actions .link {
    animation: fadeUp 0.55s ease 0.36s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.7rem 1.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 71, 187, 0.22);
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 71, 187, 0.28);
    color: #fff !important;
}

.link {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.1rem;
}

.link:hover {
    color: var(--ink);
    border-color: var(--ink);
}

.demo-preview.is-loading::after {
    content: "Загрузка виджета…";
    color: var(--muted);
    font-size: 0.92rem;
}

.demo-preview {
    min-height: 260px;
    display: block;
    width: 100%;
}

/* ——— Site frame (реалистичный пример страницы) ——— */
.site-frame {
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 1px 2px rgba(26, 43, 60, 0.04),
        0 18px 40px rgba(0, 71, 187, 0.1);
}

.site-chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.75rem;
    background: linear-gradient(180deg, #f3f7fb 0%, #e8f0f8 100%);
    border-bottom: 1px solid var(--line);
}

.site-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c5d6e8;
    flex-shrink: 0;
}

.site-dot:nth-child(1) {
    background: #ff5f57;
}

.site-dot:nth-child(2) {
    background: #febc2e;
}

.site-dot:nth-child(3) {
    background: #28c840;
}

.site-url {
    margin-left: 0.35rem;
    flex: 1;
    min-width: 0;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 0.72rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-body {
    background: #f7fafc;
}

.mock-page {
    padding: 1rem 1rem 1.15rem;
}

/* ——— Demo (внутри hero) ——— */
.demo-switch {
    display: inline-flex;
    margin-top: 1.15rem;
    padding: 0.25rem;
    gap: 0.25rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(28, 27, 25, 0.04);
}

.demo-switch-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    min-height: 44px;
    /* iOS tap target */
    touch-action: manipulation;
}

.demo-switch-btn:hover {
    color: var(--ink);
}

.demo-switch-btn.is-active {
    background: var(--accent);
    color: #fff;
}

.demo-switch-btn:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
}

.demo-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.demo-btn {
    min-width: min(100%, 360px);
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 71, 187, 0.24);
    animation: demoBtnFloat 2.8s ease-in-out infinite;
    transition: filter 0.45s ease, box-shadow 0.45s ease;
}

.demo-btn:hover {
    animation-play-state: paused;
    filter: brightness(1.08);
    transform: none;
    box-shadow: 0 12px 30px rgba(0, 71, 187, 0.28);
}

.demo-btn:active {
    filter: brightness(0.98);
    transition-duration: 0.12s;
}

@keyframes demoBtnFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

@media (min-width: 780px) {
    .menu-btn {
        display: none;
    }

    .nav {
        display: flex;
    }

    .top-cta {
        display: inline-flex;
    }

    .drawer {
        display: none !important;
    }

    .hero {
        padding-top: 1rem;
        padding-bottom: 3rem;
    }

    .hero h1 {
        max-width: 18ch;
    }

    .lead {
        max-width: 38ch;
        font-size: 1.18rem;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

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

    .why-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 2rem;
    }

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

    .demo-preview {
        min-height: 300px;
    }

    .mock-page {
        padding: 1.25rem 1.35rem 1.4rem;
    }
}

@media (min-width: 980px) {
    .plans {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2.75rem var(--pad);
    content-visibility: auto;
    contain-intrinsic-size: 480px;
    scroll-margin-top: 4.75rem;
}

h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.35rem, 4.5vw, 1.85rem);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.muted {
    margin: 0.85rem 0 0;
    color: var(--muted);
    max-width: 42ch;
    font-size: 1.05rem;
}

.how-block {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.45);
}

.steps {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: grid;
    gap: 1.5rem;
    counter-reset: step;
}

.steps li {
    counter-increment: step;
    padding-top: 0.15rem;
}

.steps li::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--display);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.steps h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.steps p {
    margin: 0.4rem 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Why Revbox — без карточек */
.why-list {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: grid;
    gap: 1.35rem;
}

.why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0.95rem 1.1rem;
    align-items: start;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
}

.why-icon {
    display: block;
    width: 48px;
    height: 48px;
}

.why-item h3 {
    margin: 0 0 0.3rem;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.why-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Sources — лента логотипов */
.source-strip {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.source-strip li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.source-strip img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    flex-shrink: 0;
}

.source-strip span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}

.source-strip-soon {
    opacity: 0.55;
}

.source-strip-soon em {
    font-style: normal;
    font-weight: 500;
    color: var(--muted);
    font-size: 0.78rem;
}

/* CMS — компактные ссылки */
.cms-links {
    margin-top: 1.4rem;
    display: grid;
    gap: 0.75rem;
}

.cms-link {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.05rem 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--line);
    transition: color 0.15s ease;
}

.cms-link:last-child {
    border-bottom: 0;
}

.cms-link:hover {
    color: var(--accent);
}

.cms-link strong {
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.cms-link:hover strong {
    color: var(--accent);
}

.cms-link span {
    font-size: 0.9rem;
    color: var(--muted);
}

.cms-link code {
    font-size: 0.85em;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 0.08rem 0.3rem;
    border-radius: 5px;
}

.cms-note {
    margin-top: 1.25rem !important;
    max-width: 52ch;
}

@media (min-width: 780px) {
    .cms-link {
        padding: 1.1rem 1.15rem;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.55);
    }

    .cms-link:last-child {
        border-bottom: 1px solid var(--line);
    }

    .cms-link:hover {
        border-color: #99b5e4;
        background: var(--paper);
    }
}

.plans {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.85rem;
    align-items: stretch;
}

.plans article {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem 1.25rem 1.3rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.plans article:hover {
    border-color: #99b5e4;
    box-shadow: 0 10px 28px rgba(0, 71, 187, 0.08);
}

.plans h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 1.15rem;
}

.sum {
    margin: 0.4rem 0;
    font-family: var(--display);
    font-size: 1.65rem;
    letter-spacing: -0.02em;
}

.sum span {
    font-size: 0.85rem;
    color: var(--muted);
    font-family: var(--body);
}

.plans p:not(.sum) {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    flex: 1;
}

.plans a {
    margin-top: auto;
    padding-top: 1.15rem;
    font-weight: 700;
    text-decoration: none;
}

.plans-featured {
    border-color: var(--accent);
    box-shadow: 0 14px 32px rgba(0, 71, 187, 0.14);
    background:
        linear-gradient(180deg, rgba(225, 240, 250, 0.55) 0%, var(--paper) 42%);
}

.plans-featured a {
    color: var(--accent);
}

.plans-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.plans-tag {
    display: inline-flex;
    flex-shrink: 0;
    margin: 0 !important;
    padding: 0.2rem 0.55rem;
    border-radius: 8px;
    background: var(--accent);
    color: #fff !important;
    font-size: 0.72rem !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.price-trust {
    margin: 1.35rem 0 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.price-delivery {
    margin: 0.65rem auto 0;
    max-width: 40rem;
    text-align: center;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.45;
}

.foot-legal {
    margin-top: 0.85rem !important;
    color: var(--muted);
}

/* FAQ */
.faq {
    margin-top: 1.35rem;
    display: grid;
    gap: 0.35rem;
    max-width: none;
    width: 100%;
    interpolate-size: allow-keywords;
}

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

.faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 0.95rem 1.75rem 0.95rem 0;
    position: relative;
    color: var(--ink);
}

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

.faq summary::after {
    content: "";
    position: absolute;
    right: 0.15rem;
    top: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
}

.faq details[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.faq details::details-content {
    display: block;
    overflow: hidden;
    block-size: 0;
    opacity: 0;
    transition:
        block-size 0.22s ease,
        opacity 0.18s ease,
        content-visibility 0.22s allow-discrete;
}

.faq details[open]::details-content {
    block-size: auto;
    opacity: 1;
}

@starting-style {
    .faq details[open]::details-content {
        block-size: 0;
        opacity: 0;
    }
}

.faq details p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: none;
}

.foot {
    max-width: var(--max);
    margin: 1rem auto 0;
    padding: 2.5rem var(--pad) 3rem;
    border-top: 1px solid var(--line);
}

.foot-logo {
    margin: 0;
    font-size: 1.4rem;
    color: var(--accent);
}

.foot>p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    max-width: 34ch;
}

.tiny {
    margin-top: 1.2rem !important;
    font-size: 0.88rem;
}

.foot-nav {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
}

.foot-link {
    color: var(--ink);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.18em;
}

.tiny a {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.18em;
}

/* Cookie consent mini-banner */
.cookie-banner {
    position: fixed;
    z-index: 80;
    left: 50%;
    bottom: 1.15rem;
    width: min(22.5rem, calc(100% - 2rem));
    margin: 0;
    padding: 1rem 1.05rem 1.05rem;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(26, 43, 60, 0.14);
    font: 500 0.88rem/1.45 Manrope, system-ui, sans-serif;
    opacity: 0;
    transform: translate(-50%, 12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.cookie-banner.is-hiding {
    opacity: 0;
    transform: translate(-50%, 10px);
    pointer-events: none;
}

.cookie-banner__text {
    margin: 0 0 0.85rem;
    color: var(--ink);
}

.cookie-banner__text a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-banner__btn {
    flex: 1 1 auto;
    min-height: 2.35rem;
    padding: 0.45rem 0.85rem;
    border-radius: 9px;
    border: 1px solid var(--line);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cookie-banner__btn--ghost {
    background: #f5f9fd;
    color: var(--ink);
}

.cookie-banner__btn--ghost:hover {
    background: #eaf1f8;
}

.cookie-banner__btn--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.cookie-banner__btn--primary:hover {
    filter: brightness(1.06);
}
