﻿:root {
    --zh-bg: #0e121c;
    --zh-bg-soft: #171d2c;
    --zh-panel: rgba(21, 27, 42, 0.9);
    --zh-line: rgba(135, 231, 197, 0.18);
    --zh-text: #f5f8f6;
    --zh-muted: #b1bcc8;
    --zh-accent: #87e7c5;
    --zh-accent-strong: #5ed6af;
    --zh-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --zh-radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.zh-body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--zh-text);
    background:
        radial-gradient(circle at top left, rgba(135, 231, 197, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(94, 214, 175, 0.12), transparent 24%),
        linear-gradient(180deg, #0b0f17 0%, #111725 50%, #0b1019 100%);
    line-height: 1.6;
}

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

.zh-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.zh-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(11, 15, 23, 0.84);
    border-bottom: 1px solid var(--zh-line);
}

.zh-header__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.zh-logo {
    text-decoration: none;
    color: var(--zh-text);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    font-size: 1rem;
}

.zh-nav {
    display: flex;
    gap: 26px;
    align-items: center;
}

.zh-nav a,
.zh-footer__links a {
    text-decoration: none;
    color: var(--zh-muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.zh-nav a:hover,
.zh-footer__links a:hover {
    color: var(--zh-accent);
    transform: translateY(-1px);
}

.zh-disclaimer {
    text-align: center;
    padding: 12px 18px;
    font-size: 0.9rem;
    color: #dffaf0;
    background: linear-gradient(90deg, rgba(135, 231, 197, 0.12), rgba(94, 214, 175, 0.08));
    border-top: 1px solid rgba(135, 231, 197, 0.08);
}

.zh-menu-toggle {
    display: none;
}

.zh-burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--zh-line);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.zh-burger span {
    width: 18px;
    height: 2px;
    background: var(--zh-text);
}

.zh-hero,
.zh-about,
.zh-audience,
.zh-plans,
.zh-quote,
.zh-faq,
.zh-contact {
    padding: 88px 0;
}

.zh-hero__grid,
.zh-about__grid,
.zh-contact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    align-items: center;
}

.zh-label {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    color: var(--zh-accent);
}

.zh-hero h1,
.zh-about h2,
.zh-audience h2,
.zh-plans h2,
.zh-faq h2,
.zh-contact h2 {
    margin: 0 0 18px;
    line-height: 1.08;
}

.zh-hero h1 {
    font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.zh-about h2,
.zh-audience h2,
.zh-plans h2,
.zh-faq h2,
.zh-contact h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.zh-lead,
.zh-about p,
.zh-card p,
.zh-tile p,
.zh-faq p,
.zh-contact p,
.zh-footer p,
.zh-quote__card p {
    color: var(--zh-muted);
}

.zh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 34px;
}

.zh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.zh-btn:hover {
    transform: translateY(-2px);
}

.zh-btn--primary {
    background: linear-gradient(135deg, var(--zh-accent), var(--zh-accent-strong));
    color: #07110d;
    box-shadow: 0 14px 34px rgba(94, 214, 175, 0.22);
}

.zh-btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--zh-line);
    color: var(--zh-text);
}

.zh-metrics,
.zh-about__cards,
.zh-audience__grid,
.zh-plan-grid,
.zh-faq__list {
    display: grid;
    gap: 18px;
}

.zh-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zh-metrics article,
.zh-card,
.zh-tile,
.zh-plan,
.zh-faq details,
.zh-form,
.zh-quote__card {
    background: var(--zh-panel);
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius);
    box-shadow: var(--zh-shadow);
}

.zh-metrics article {
    padding: 18px;
}

.zh-metrics strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.zh-metrics span {
    font-size: 0.92rem;
    color: var(--zh-muted);
}

.zh-frame {
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--zh-shadow);
    position: relative;
}

.zh-frame::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(135, 231, 197, 0.22), transparent 70%);
    pointer-events: none;
}

.zh-frame img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 4;
}

.zh-frame--hero img {
    min-height: 560px;
    aspect-ratio: 5 / 6;
}

.zh-about__cards,
.zh-audience__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zh-card,
.zh-tile,
.zh-plan {
    padding: 24px;
}

.zh-card h3,
.zh-tile h3,
.zh-plan h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.zh-audience__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zh-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zh-plan--featured {
    border-color: rgba(135, 231, 197, 0.34);
    transform: translateY(-8px);
}

.zh-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(135, 231, 197, 0.12);
    color: var(--zh-accent);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.zh-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.zh-plan ul {
    margin: 0 0 24px;
    padding-left: 18px;
    color: var(--zh-muted);
}

.zh-plan li + li {
    margin-top: 8px;
}

.zh-quote__card {
    padding: 34px;
    text-align: center;
}

.zh-quote__card p {
    margin: 0 0 14px;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.zh-quote__card span {
    color: var(--zh-accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
}

.zh-faq__list {
    max-width: 920px;
}

.zh-faq details {
    padding: 22px 24px;
}

.zh-faq summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

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

.zh-faq p {
    margin: 14px 0 0;
}

.zh-form {
    padding: 28px;
    display: grid;
    gap: 14px;
}

.zh-form input,
.zh-form textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 14, 20, 0.92);
    color: var(--zh-text);
    font: inherit;
}

.zh-form textarea {
    resize: vertical;
    min-height: 130px;
}

.zh-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--zh-muted);
    font-size: 0.95rem;
}

.zh-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.zh-footer {
    padding: 28px 0 44px;
    border-top: 1px solid var(--zh-line);
}

.zh-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
}

.zh-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 1080px) {
    .zh-hero__grid,
    .zh-about__grid,
    .zh-contact__grid,
    .zh-metrics,
    .zh-about__cards,
    .zh-audience__grid,
    .zh-plan-grid {
        grid-template-columns: 1fr;
    }

    .zh-plan--featured {
        transform: none;
    }
}

@media (max-width: 840px) {
    .zh-shell {
        width: min(100% - 28px, 1180px);
    }

    .zh-burger {
        display: inline-flex;
    }

    .zh-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(11, 15, 23, 0.98);
        border: 1px solid var(--zh-line);
        box-shadow: var(--zh-shadow);
    }

    .zh-menu-toggle:checked ~ .zh-nav {
        display: flex;
    }

    .zh-header__inner {
        position: relative;
    }

    .zh-hero,
    .zh-about,
    .zh-audience,
    .zh-plans,
    .zh-quote,
    .zh-faq,
    .zh-contact {
        padding: 70px 0;
    }
}

@media (max-width: 640px) {
    .zh-header__inner {
        min-height: 76px;
    }

    .zh-logo {
        letter-spacing: 0.12em;
        font-size: 0.96rem;
    }

    .zh-footer__inner {
        flex-direction: column;
    }
}
