:root {
    /* Палитра из дизайн-хендоффа (oklch) */
    --accent: oklch(0.5 0.16 265);
    --accent-hover: oklch(0.44 0.17 265);
    --accent-strong: oklch(0.42 0.18 265);
    --accent-bar: oklch(0.75 0.1 265);
    --accent-soft: oklch(0.95 0.02 265);
    --accent-soft-text: oklch(0.45 0.16 265);

    --text: oklch(0.22 0.01 260);
    --muted: oklch(0.48 0.01 260);
    --muted-2: oklch(0.42 0.01 260);

    --bg: oklch(0.99 0.003 90);
    --bg-alt: oklch(0.97 0.006 260);
    --dark: oklch(0.22 0.01 260);
    --dark-2: oklch(0.28 0.01 260);
    --line: oklch(0.92 0.005 260);

    --container: 1600px;
    --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

/* Логотип-иконка: скруглённый квадрат с тремя барами */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 9px;
    background: var(--accent);
}
.logo__mark i {
    width: 4px;
    border-radius: 2px;
    background: var(--accent-bar);
}
.logo__mark i:nth-child(1) { height: 60%; }
.logo__mark i:nth-child(2) { height: 100%; background: #fff; }
.logo__mark i:nth-child(3) { height: 40%; }
.logo__name { font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 15px 28px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 8px 20px -8px oklch(0.5 0.16 265 / 0.55);
    transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 11px 22px; font-size: 14px; box-shadow: none; }
.btn--lg { padding: 17px 34px; font-size: 16px; box-shadow: 0 12px 28px -12px oklch(0.5 0.16 265 / 0.5); }

/* Тёмная кнопка (шапка) */
.btn--dark {
    background: var(--dark);
    box-shadow: none;
}
.btn--dark:hover { background: oklch(0.32 0.01 260); }

/* Светлая кнопка (на тёмной секции) */
.btn--light {
    background: #fff;
    color: var(--text);
    font-weight: 700;
    box-shadow: none;
}
.btn--light:hover { background: #fff; }

/* Контурная кнопка (вторичное действие на светлом фоне) */
.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}
.btn--outline:hover {
    background: var(--accent-soft);
    color: var(--accent-soft-text);
    border-color: transparent;
}

/* Текстовая ссылка-кнопка */
.btn--link {
    background: transparent;
    color: var(--text);
    font-weight: 600;
    box-shadow: none;
    padding: 15px 20px;
}
.btn--link:hover { background: transparent; color: var(--accent); transform: none; }

/* Шапка */
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
}
.nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(14px, 1.6vw, 26px);
}
.nav a {
    font-size: 15px;
    font-weight: 500;
    color: oklch(0.4 0.01 260);
    transition: color .15s ease;
}
.nav a:hover { color: var(--accent-strong); }

.header__cta { display: flex; align-items: center; gap: 14px; }
.header__login {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}
.header__login:hover { color: var(--accent-strong); }

/* Бургер-меню (мобильная шапка) */
.header__burger { display: none; align-items: center; cursor: pointer; padding: 6px; color: var(--text); border-radius: 8px; }
.header__burger:hover { background: var(--accent-soft); }
@media (max-width: 860px) {
    .header__burger { display: inline-flex; }
    .nav, .header__cta {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .header__nav-toggle:checked ~ .nav,
    .header__nav-toggle:checked ~ .header__cta { display: flex; }
    .header__login { display: inline; }
    .nav a { font-size: 16px; padding: 2px 0; }
    .header__cta { padding-top: 4px; }
}

/* Переключатель языка — дропдаун (тот же паттерн в биллинге и в панели) */
.dd { position: relative; display: inline-block; }
.dd__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    list-style: none;
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface, #fff);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: var(--muted);
    white-space: nowrap;
    user-select: none;
    transition: color .15s ease, border-color .15s ease;
}
.dd__btn::-webkit-details-marker { display: none; }
.dd__btn:hover { color: var(--text); border-color: oklch(0.85 0.02 265); }
.dd[open] .dd__btn { color: var(--accent); border-color: var(--accent); }
.dd__ic { width: 15px; height: 15px; flex: 0 0 auto; opacity: .75; }
.dd__caret { width: 13px; height: 13px; flex: 0 0 auto; opacity: .6; transition: transform .15s ease; }
.dd[open] .dd__caret { transform: rotate(180deg); }
.dd__menu {
    position: absolute;
    top: calc(100% + 6px);
    /* Влево от кнопки: переключатель стоит первым в .header__cta, справа от него ещё кнопки,
       поэтому места хватает. При right:0 меню уезжало за левый край, когда шапка переносится
       в две строки на средних ширинах. */
    left: 0;
    z-index: 60;
    min-width: 160px;
    padding: 6px;
    background: var(--surface, #fff);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 14px 34px -18px oklch(0.22 0.01 260 / 0.35);
}
.dd__opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s ease, background .15s ease;
}
.dd__opt:hover { background: var(--bg-alt, oklch(0.97 0.006 260)); color: var(--text); }
.dd__opt.is-active { background: var(--accent-soft); color: var(--accent-soft-text); font-weight: 700; }
.dd__code { font-weight: 700; font-size: 12px; min-width: 26px; }


/* Плейсхолдер изображения */
.image-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
    background:
        repeating-linear-gradient(45deg, oklch(0.94 0.006 260) 0 12px, oklch(0.96 0.006 260) 12px 24px);
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

/* Hero */
.hero__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 48px;
    align-items: center;
    padding-block: 64px 96px;
}
.hero__col { animation: fadeUp .6s ease both; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-soft);
    color: var(--accent-soft-text);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}
.hero__badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.hero__title {
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}
.hero__lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted-2);
    max-width: 480px;
    margin-bottom: 34px;
}
.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.hero__media {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 24px 48px -24px oklch(0.22 0.01 260 / 0.18);
    animation: fadeUp .7s ease .1s both;
}
.hero__media .image-slot { height: 420px; }

/* Секции */
.section { padding: 88px 0; }
.section--gray { background: var(--bg-alt); }
.section--pad-lg { padding: 96px 0; }
.section__head { text-align: center; margin-bottom: 56px; }
.section__title { font-size: clamp(28px, 3.5vw, 36px); font-weight: 800; }
.section__lead {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    margin: 14px auto 0;
}

/* Как это работает — шаги */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow .15s ease, transform .15s ease;
}
.step:hover {
    box-shadow: 0 16px 32px -20px oklch(0.22 0.01 260 / 0.3);
    transform: translateY(-2px);
}
.step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
}
.step__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step__text { font-size: 14px; line-height: 1.55; color: var(--muted); }

/* Возможности */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.feature {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px;
    transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.feature:hover {
    box-shadow: 0 16px 32px -20px oklch(0.22 0.01 260 / 0.3);
    transform: translateY(-2px);
    border-color: oklch(0.85 0.02 265);
}
.feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: var(--accent-soft);
}
.feature__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature__text { font-size: 14px; line-height: 1.55; color: var(--muted); }

/* Модель тарификации — тёмная секция */
.pricing {
    background: var(--dark);
    padding: 88px 0;
}
.pricing__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}
.pricing .eyebrow { color: var(--accent-bar); }
.pricing__title {
    font-size: clamp(28px, 3.2vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}
.pricing__text {
    font-size: 16px;
    line-height: 1.6;
    color: oklch(0.75 0.01 260);
    margin-bottom: 28px;
}
.pricing__head { max-width: 760px; margin-left: auto; margin-right: auto; margin-bottom: 44px; }

.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.plan {
    position: relative;
    background: var(--dark-2);
    border: 1px solid oklch(0.32 0.01 260);
    border-radius: 14px;
    padding: 26px 22px;
}
.plan--free {
    border-color: var(--accent-bar);
    box-shadow: 0 0 0 1px var(--accent-bar), 0 20px 44px -22px oklch(0.5 0.16 265 / 0.7);
    background: linear-gradient(180deg, oklch(0.31 0.04 265), var(--dark-2));
}
.plan__flag {
    position: absolute;
    top: -11px;
    left: 22px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}
.plan__name {
    color: oklch(0.88 0.005 260);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}
.plan__price {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
}
.plan__price span {
    font-size: 13px;
    font-weight: 500;
    color: oklch(0.68 0.01 260);
    margin-left: 4px;
    white-space: nowrap;
}
.plan__orders {
    color: oklch(0.75 0.01 260);
    font-size: 14px;
    line-height: 1.45;
}
.pricing__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.pricing__foot span {
    color: oklch(0.62 0.01 260);
    font-size: 14px;
    line-height: 1.5;
    max-width: 560px;
}

/* Свой бренд / чек-лист */
.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}
.split .image-slot { height: 380px; border-radius: 16px; }
.split__title {
    font-size: clamp(28px, 3.2vw, 34px);
    font-weight: 800;
    margin-bottom: 18px;
}
.split__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-2);
    margin-bottom: 26px;
}
.checklist { display: flex; flex-direction: column; gap: 16px; }
.check { display: flex; align-items: flex-start; gap: 12px; }
.check__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 6px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.check span { font-size: 15px; line-height: 1.5; color: oklch(0.3 0.01 260); }

/* Безопасность и хостинг */
.security {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.security__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 24px;
    transition: box-shadow .15s ease;
}
.security__card:hover { box-shadow: 0 12px 24px -16px oklch(0.22 0.01 260 / 0.25); }
.security__card::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.security__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.security__text { font-size: 13.5px; line-height: 1.5; color: var(--muted); }

/* FAQ */
.faq { max-width: 840px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 26px;
    transition: border-color .15s ease;
}
.faq__item:hover { border-color: oklch(0.7 0.08 265); }
.faq__q { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.faq__a { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* Финальный CTA */
.cta__inner { text-align: center; padding-block: 96px; }
.cta__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; }
.cta__title {
    font-size: clamp(30px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.cta__text {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 32px;
}

/* Футер */
.footer { border-top: 1px solid var(--line); }
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-block: 40px;
}
.footer .logo__mark { width: 24px; height: 24px; padding: 4px; border-radius: 7px; gap: 2px; }
.footer .logo__mark i { width: 3px; }
.footer .logo__name { font-size: 15px; }
.footer__links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer__mail { font-size: 13px; color: var(--muted); }
.footer__mail:hover { color: var(--accent); }
.footer__copy { font-size: 13px; color: oklch(0.55 0.01 260); }

@media (max-width: 640px) {
    .hero__inner { padding-block: 40px 64px; }
    .section, .section--pad-lg, .pricing { padding: 56px 0; }
    .cta__inner { padding-block: 56px; }
}

/* ============ Блог ============ */
.blog-hero { padding: 56px 0 8px; text-align: center; }
.blog-hero__title { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin: 10px 0 12px; }
.blog-hero__lead { font-size: 18px; color: var(--muted-2); max-width: 560px; margin: 0 auto; }

.blog-empty { text-align: center; color: var(--muted); padding: 60px 0; font-size: 16px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    display: flex; flex-direction: column; overflow: hidden;
    background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px;
    text-decoration: none; color: inherit;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.blog-card:hover { box-shadow: 0 18px 40px -22px oklch(0.5 0.16 265 / 0.4); transform: translateY(-3px); border-color: oklch(0.8 0.06 265); }
.blog-card__img { aspect-ratio: 16/9; width: 100%; object-fit: cover; display: block; }
.blog-card__img--ph { background: repeating-linear-gradient(45deg, oklch(0.94 0.02 265) 0 14px, oklch(0.96 0.015 265) 14px 28px); }
.blog-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.blog-card__title { font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.blog-card__excerpt { font-size: 14px; line-height: 1.6; color: var(--muted); flex: 1; }
.blog-card__link { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--accent); }

.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.blog-pagination a, .blog-pagination span {
    padding: 8px 15px; border-radius: 8px; font-size: 14px; font-weight: 600;
    border: 1px solid var(--line); color: var(--text); text-decoration: none; background: #fff;
}
.blog-pagination .active { background: var(--accent); border-color: var(--accent); color: #fff; }
.blog-pagination a:hover { border-color: var(--accent); color: var(--accent); }
.blog-pagination .disabled { opacity: .4; pointer-events: none; }

/* Статья */
.post-page { max-width: 760px; padding-top: 40px; padding-bottom: 80px; }
.post-back { display: inline-block; margin-bottom: 24px; font-size: 14px; font-weight: 600; color: var(--muted); text-decoration: none; }
.post-back:hover { color: var(--accent); }
.post-meta { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.post-meta__sep { margin: 0 8px; }
.post-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 18px; }
.post-excerpt { font-size: 19px; line-height: 1.6; color: var(--muted-2); margin-bottom: 28px; }
.post-cover { width: 100%; border-radius: 16px; margin-bottom: 32px; }

.post-content { font-size: 17px; line-height: 1.75; color: var(--text); }
.post-content h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; margin: 40px 0 16px; }
.post-content h3 { font-size: 21px; font-weight: 700; margin: 32px 0 12px; }
.post-content p { margin: 0 0 18px; }
.post-content ul, .post-content ol { margin: 0 0 18px; padding-left: 24px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--accent); text-decoration: underline; }
.post-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 24px 0; }
.post-content blockquote { margin: 24px 0; padding: 12px 20px; border-left: 3px solid var(--accent); background: var(--accent-soft); border-radius: 0 8px 8px 0; color: var(--muted-2); }
.post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.post-content th, .post-content td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.post-content figure { max-width: 100%; }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.post-tag { font-size: 13px; font-weight: 600; color: var(--accent-soft-text); background: var(--accent-soft); padding: 5px 12px; border-radius: 100px; }

.post-faq { margin-top: 44px; }
.post-faq__title { font-size: 24px; font-weight: 800; margin-bottom: 18px; }
.post-faq__item { border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; margin-bottom: 12px; background: var(--bg-alt); }
.post-faq__q { font-size: 16px; font-weight: 700; cursor: pointer; }
.post-faq__a { margin-top: 10px; font-size: 15px; line-height: 1.65; color: var(--muted-2); }

/* Индиго-градиент бренда — как на SVG-обложках блога, а не чёрный var(--dark) */
.post-cta { margin: 48px 0; padding: 32px; border-radius: 18px; background: linear-gradient(135deg, oklch(0.5 0.16 265), oklch(0.28 0.08 265)); color: #fff; text-align: center; }
.post-cta__label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; opacity: .8; margin-bottom: 12px; }
.post-cta__label span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bar); }
.post-cta__title { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.post-cta__text { font-size: 16px; line-height: 1.6; color: oklch(0.9 0.03 265); max-width: 480px; margin: 0 auto 22px; }
.post-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.post-cta .btn--outline { border-color: oklch(1 0 0 / 0.3); color: #fff; }
.post-cta .btn--outline:hover { background: oklch(1 0 0 / 0.1); border-color: transparent; color: #fff; }

.post-vote { margin: 48px 0; padding: 24px; border: 1px solid var(--line); border-radius: 16px; text-align: center; }
.post-vote__title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.post-vote__btns { display: flex; gap: 12px; justify-content: center; }
.post-vote__btn { padding: 10px 22px; border: 1px solid var(--line); border-radius: 100px; background: #fff; font-size: 15px; font-weight: 600; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.post-vote__btn:hover { border-color: var(--accent); }
.post-vote__btn.active-yes { background: oklch(0.95 0.06 150); border-color: oklch(0.7 0.13 150); }
.post-vote__btn.active-no { background: oklch(0.95 0.05 25); border-color: oklch(0.72 0.15 25); }
.post-vote__result { margin-top: 14px; font-size: 14px; color: var(--muted); display: none; }
.post-vote__result.show { display: block; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 40px 0; }
@media (max-width: 560px) { .post-nav { grid-template-columns: 1fr; } }
.post-nav__item { display: flex; flex-direction: column; gap: 6px; padding: 16px 20px; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: inherit; transition: border-color .15s ease; }
.post-nav__item:hover { border-color: var(--accent); }
.post-nav__item--next { text-align: right; }
.post-nav__dir { font-size: 13px; color: var(--muted); }
.post-nav__title { font-size: 15px; font-weight: 600; color: var(--text); }

.post-related { margin-top: 56px; }
.post-related__title { font-size: 24px; font-weight: 800; margin-bottom: 20px; }
