@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/static/fonts/inter-cyrillic-ext.woff2') format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/static/fonts/inter-cyrillic.woff2') format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/static/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/static/fonts/inter-latin.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;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #0b1120;
    line-height: 1.6;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection { background: rgba(37, 99, 235, 0.12); }
img { max-width: 100%; height: auto; display: block; }

:root {
    --bg: #ffffff;
    --border: #e2e8f0;
    --text: #0b1120;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --accent: #2563eb;
    --accent-violet: #7c3aed;
    --accent-gradient: linear-gradient(135deg, #2563eb, #7c3aed);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(37,99,235,0.15);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 36px 0;
}
.section--alt {
    border-top: 1px solid var(--border);
}
.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text);
}

.section-title--tight { margin-bottom: 28px; }
.section--flush { padding-top: 0; }
.text-accent { color: var(--accent); }

.section-sub {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ====== Navbar ====== */
.navbar {
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.logo {
    font-weight: 800;
    font-size: 22px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.03em;
}
.logo span { color: var(--accent); }
.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
    background: rgba(0,0,0,0.04);
    color: var(--text);
}
.nav-links .btn-nav-primary {
    background: linear-gradient(135deg, #2563eb, #7c3aed, #2563eb);
    background-size: 200% 200%;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    transition: opacity 0.2s, transform 0.2s;
    animation: gradientShift 6s ease-in-out infinite;
}
.nav-links .btn-nav-primary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.nav-links .btn-nav-outline {
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    transition: border-color 0.2s, color 0.2s;
}
.nav-links .btn-nav-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.landing-account {
    display: flex;
    align-items: center;
}

.landing-account__button {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 6px 10px 6px 6px !important;
    border: 1px solid var(--border);
    border-radius: 999px !important;
    color: var(--text) !important;
    background: #fff;
}

.landing-account__button:hover {
    border-color: rgba(37, 99, 235, 0.45);
    background: #f8fafc !important;
}

.landing-account__avatar {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0;
}

.landing-account__text {
    display: flex;
    min-width: 0;
    max-width: 150px;
    flex-direction: column;
    line-height: 1.15;
}

.landing-account__text strong,
.landing-account__text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-account__text strong {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.landing-account__text small {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 11px;
}

/* ====== Burger ====== */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
    flex-direction: column;
    gap: 5px;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.nav-overlay--active { opacity: 1; pointer-events: auto; }

/* ====== Breadcrumbs ====== */
.breadcrumbs {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    background: #fff;
}
.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}
.breadcrumbs a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}
.breadcrumbs a::after {
    content: '/';
    margin-left: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ====== Keyframes ====== */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ====== Buttons ====== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #2563eb);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    min-height: 40px;
    animation: gradientShift 6s ease-in-out infinite;
}
.btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    min-height: 40px;
}
.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(37,99,235,0.04);
}
.btn-large {
    padding: 12px 32px;
    font-size: 15px;
}

/* ====== Footer ====== */
.site-footer {
    padding: 48px 0 0;
    border-top: 1px solid var(--border);
}
.footer-contact-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(130px, 210px) minmax(0, 1fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 36px;
    padding: 20px 28px 0;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    overflow: hidden;
}
.footer-contact-hero img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    object-position: bottom center;
}
.footer-contact-hero div {
    align-self: center;
    padding: 0 0 24px;
}
.footer-contact-hero span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}
.footer-contact-hero h2 {
    max-width: 720px;
    margin-top: 6px;
    color: var(--text);
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.footer-contact-hero__cta {
    margin-top: 18px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 32px;
}
.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}
.footer-col :is(a, span) {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-decoration: none;
    display: block;
}
.footer-col a:hover { color: var(--accent); }
.footer-row {
    padding: 16px 0 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.footer-row strong { color: var(--text); }
.footer-row svg { vertical-align: middle; margin-right: 4px; flex-shrink: 0; }
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    padding: 16px 0;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: underline;
}

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

.footer-brand {
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--text);
}

.footer-legal {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 12.5px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-legal span {
    color: var(--border);
}

/* ====== SVG icons ====== */
.icon-svg { width: 100%; height: 100%; }

/* ====== Responsive: ≤768 ====== */
@media (max-width: 768px) {
    .burger { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 28px 32px;
        gap: 4px;
        z-index: 100;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    .nav-links--open {
        display: flex;
        transform: translateX(0);
    }
    .nav-links a {
        padding: 14px 12px;
        font-size: 16px;
        width: 100%;
        border-radius: 8px;
    }
    .nav-links .btn-nav-primary {
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }
    .nav-links .btn-nav-outline {
        text-align: center;
        justify-content: center;
        margin-top: 4px;
    }
    .landing-account {
        width: 100%;
        margin-top: 8px;
    }
    .landing-account__button {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 12px !important;
    }
    .landing-account__text {
        max-width: none;
    }
    .nav-overlay { display: block; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .footer-row { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #c1c9d6; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a0a8b4; }

/* ====== Hero ====== */
.hero {
    padding: 28px 0 34px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 680px) 380px;
    justify-content: start;
    gap: 34px;
    align-items: start;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(37,99,235,0.08);
    color: var(--accent);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}
.pulse-dot {
    position: relative;
    width: 4px;
    height: 4px;
    flex-shrink: 0;
}
.pulse-dot span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}
.pulse-dot::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0.5;
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
}
.hero h1 span { color: var(--accent); }
.hero-lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 680px;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    align-items: center;
}
.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    max-width: 680px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 2px; }
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    max-width: 680px;
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.35;
}
.hero-proof span,
.hero-proof a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
}
.hero-proof a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 395px;
    padding-top: 18px;
}
.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #2563eb 0%, #3b82f6 40%, #60a5fa 70%, transparent 100%);
    filter: blur(80px);
    opacity: 0.18;
    top: calc(50% - 250px);
    left: calc(50% - 250px);
}
.hero-blob-2 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 60%, #1d4ed8 0%, #2563eb 50%, transparent 100%);
    filter: blur(70px);
    opacity: 0.12;
    top: -100px;
    left: -60px;
}
.hero-blob-3 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #93c5fd 0%, #3b82f6 50%, transparent 100%);
    filter: blur(70px);
    opacity: 0.1;
    bottom: -80px;
    right: -50px;
    top: auto;
    left: auto;
}
.hero-blob,
.hero-blob-2,
.hero-blob-3 {
    pointer-events: none;
    animation: blobDrift 6s ease-in-out infinite alternate;
}
.hero-blob-2 { animation-delay: -2s; }
.hero-blob-3 { animation-delay: -4s; }
@keyframes blobDrift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -15px) scale(1.05); }
}
.hero-glass {
    position: relative;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    width: 100%;
    max-width: 460px;
    z-index: 1;
}
.hero-glass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hero-glass-item {
    background: rgba(255,255,255,0.85);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.4);
}
.hero-glass-item .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.hero-glass-item .value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.hero-glass-item .trend {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    margin-top: 4px;
}
.hero-glass-bar {
    margin-top: 16px;
    background: rgba(255,255,255,0.85);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.4);
}
.hero-glass-bar .bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.hero-glass-bar .bar-track {
    height: 6px;
    background: rgba(0,0,0,0.06);
    border-radius: 3px;
    overflow: hidden;
}
.hero-glass-bar .bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--accent-gradient);
    width: 78%;
}

/* ====== Hero Dashboard Preview ====== */
.hero-version-card {
    max-width: 380px;
    padding: 0;
    border-radius: 20px;
    background: #f8fafc;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}
.dash-preview {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #dbe3ee;
    border-radius: 20px;
    background: #f8fafc;
}
.dash-main {
    display: grid;
    gap: 9px;
    padding: 12px;
}
.dash-main__head,
.dash-card__head,
.dash-site-row,
.dash-finding {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.dash-main__head span {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}
.dash-main__head strong {
    display: block;
    color: var(--text);
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.dash-main__head em,
.dash-card__head span {
    flex: 0 0 auto;
    padding: 4px 8px;
    border-radius: 999px;
    color: #166534;
    background: #dcfce7;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}
.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}
.dash-kpi,
.dash-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}
.dash-kpi {
    display: flex;
    min-height: 98px;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    padding: 9px;
}
.dash-kpi span,
.dash-kpi small,
.dash-site-row small,
.dash-finding small {
    display: block;
    color: var(--text-muted);
    font-size: 10.5px;
    line-height: 1.35;
}
.dash-kpi strong {
    display: block;
    margin: 6px 0 4px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}
.dash-kpi small {
    margin-top: auto;
}
.dash-card {
    padding: 11px;
}
.dash-card__head {
    margin-bottom: 8px;
    align-items: flex-start;
}
.dash-card__head strong {
    color: var(--text);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: -0.005em;
}
.dash-card__head a {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.dash-card--coverage {
    background:
        linear-gradient(180deg, rgba(37, 99, 235, 0.035), rgba(255, 255, 255, 0) 54%),
        #fff;
}
.dash-chart {
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: end;
    gap: 5px;
    height: 76px;
    margin: 2px 0 10px;
    padding: 12px 10px 9px;
    border: 1px solid #e6edf7;
    border-radius: 11px;
    background:
        linear-gradient(to top, rgba(148, 163, 184, 0.16) 1px, transparent 1px) 0 0 / 100% 25%,
        linear-gradient(135deg, #f8fbff, #fff);
}
.dash-chart::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 15px;
    width: 46%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.55));
    transform: rotate(-14deg);
    transform-origin: right center;
}
.dash-chart span {
    display: block;
    min-height: 12px;
    border-radius: 6px 6px 3px 3px;
    background: linear-gradient(180deg, #2563eb, #93c5fd);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
/* Высоты столбиков заданы здесь, а не атрибутом style в разметке: CSP
 * лендинга (style-src 'self') запрещает инлайновые стили, и в проде такие
 * столбики схлопывались бы в одну полоску. */
.dash-chart span:nth-child(1) { height: 34%; }
.dash-chart span:nth-child(2) { height: 48%; }
.dash-chart span:nth-child(3) { height: 42%; }
.dash-chart span:nth-child(4) { height: 62%; }
.dash-chart span:nth-child(5) { height: 54%; }
.dash-chart span:nth-child(6) { height: 78%; }
.dash-chart span:nth-child(7) { height: 68%; }
.dash-chart span:nth-child(8) { height: 88%; }
.dash-health {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 9px;
}
.dash-health div {
    min-width: 0;
}
.dash-health span,
.dash-site-row small {
    display: block;
    color: var(--text-muted);
    font-size: 10.5px;
    line-height: 1.35;
}
.dash-health strong {
    display: block;
    margin: 2px 0 5px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.12;
    letter-spacing: -0.005em;
}
.dash-health i {
    display: block;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8eef6;
}
.dash-health i::before {
    content: '';
    display: block;
    width: var(--value, 100%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #22c55e, #2563eb);
}
.dash-health__bar--100 { --value: 100%; }
.dash-health__bar--95 { --value: 95%; }
.dash-health__bar--82 { --value: 82%; }
.dash-site-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
    gap: 2px;
    padding-top: 8px;
    border-top: 1px solid #eef2f7;
}
.dash-site-row strong {
    display: block;
    overflow: hidden;
    color: var(--text);
    font-size: 13px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dash-site-row a {
    color: inherit;
    text-decoration: none;
}
.dash-site-row a:hover {
    color: var(--accent);
}
.dash-proof-list {
    display: grid;
    gap: 5px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eef2f7;
}
.dash-proof-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--text-muted);
    font-size: 10.5px;
    line-height: 1.3;
}
.dash-proof-list strong {
    flex: 0 0 auto;
    color: #166534;
    font-size: 10.5px;
    font-weight: 800;
}
.dash-chips {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
}
.dash-chips span {
    padding: 4px 7px;
    border-radius: 999px;
    color: #166534;
    background: #dcfce7;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}
.dash-card--attention {
    background: #fff7ed;
    border-color: #fed7aa;
}
.dash-card--attention .dash-card__head span {
    color: #92400e;
    background: #ffedd5;
}
.dash-finding {
    align-items: flex-start;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
}
.dash-finding > span {
    flex: 0 0 auto;
    padding: 4px 7px;
    border-radius: 999px;
    color: #92400e;
    background: #ffedd5;
    font-size: 11px;
    font-weight: 800;
}
.dash-finding div {
    min-width: 0;
    flex: 1;
}
.dash-finding div strong {
    display: block;
    color: var(--text);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.22;
    letter-spacing: -0.005em;
}
.dash-finding time {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    padding-top: 2px;
}

/* ====== Features ====== */
.features-grid {
    /* Четыре услуги — одна строка. Раньше первая карточка была вдвое шире,
       и четвёртая переносилась вниз в одиночку. */
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.feature-card {
    background: var(--bg);
    padding: 28px 24px;
    border-radius: 20px;
    border: 1px solid #eef2f7;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}
/* Мягкое свечение в углу вместо полосы сверху */
.feature-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 68%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 52px;
    height: 52px;
    padding: 13px;
    margin-bottom: 18px;
    border-radius: 15px;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
    transition: transform 0.25s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.06) rotate(-3deg);
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--text);
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}
/* ====== Product Screenshots ====== */
.product-shots {
    background: linear-gradient(180deg, #fff, #f8fafc);
    border-top: 1px solid var(--border);
}
/* Галерея экранов: один кадр вместо пяти подряд — иначе секция занимала
   больше половины страницы, и до остального контента никто не доходил. */
.shots {
    margin-top: 22px;
}
.shots-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.shots-tab {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--text-secondary);
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.shots-tab:hover { border-color: #cbd5e1; color: var(--text); }
.shots-tab--active {
    border-color: transparent;
    background: var(--text);
    color: #fff;
}

.shots-viewport {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-md);
}
.shots-slide {
    display: grid;
}
/* display: grid выше перебивает display: none из UA-стилей для [hidden]. */
.shots-slide[hidden] {
    display: none;
}
.shots-slide img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--border);
    background: #eef2f7;
}
.shots-slide figcaption {
    display: grid;
    gap: 4px;
    padding: 16px 22px;
}
.shots-slide strong { color: var(--text); font-size: 16px; font-weight: 700; }
.shots-slide span { color: var(--text-secondary); font-size: 14px; line-height: 1.5; }

.shots-arrow {
    position: absolute;
    top: 42%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0 0 3px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    color: var(--text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.shots-arrow:hover { background: #fff; border-color: var(--accent); color: var(--accent); }
.shots-arrow--prev { left: 14px; }
.shots-arrow--next { right: 14px; }

@media (max-width: 640px) {
    .shots-slide figcaption { padding: 14px 16px; }
    .shots-arrow { width: 34px; height: 34px; font-size: 20px; }
    .shots-arrow--prev { left: 8px; }
    .shots-arrow--next { right: 8px; }
}

.section-photo-row {
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin: 0 auto 32px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.section-photo-row img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    border-radius: 16px;
    background: #f8fafc;
}
.section-photo-row span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}
.section-photo-row h3 {
    margin: 8px 0 8px;
    color: var(--text);
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.section-photo-row p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}
/* ====== Pricing preview ====== */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.plan-card {
    display: flex;
    flex-direction: column;
    padding: 28px 26px;
    background: var(--bg);
    border: 1px solid #eef2f7;
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.25);
}
.plan-card--featured {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}
.plan-card__badge {
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 40px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.plan-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
}
.plan-card__price {
    margin-top: 6px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
}
.plan-card__price span {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}
.plan-card__note {
    margin-top: 4px;
    font-size: 14px;
    color: var(--text-muted);
}
.plan-card ul {
    margin: 20px 0 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}
.plan-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.plan-card ul li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 4.5L6.75 12.75L3 9' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
.plan-card__cta {
    margin-top: auto;
    justify-content: center;
    text-align: center;
}
.plan-grid__note {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
}
.plan-grid__note a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}
.plan-grid__note a:hover { text-decoration: underline; }

/* ====== Problems ====== */
.problems-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.problems-grid { counter-reset: problem; }
.problem-item {
    display: flex;
    gap: 20px;
    background: var(--bg);
    padding: 28px;
    border-radius: 20px;
    width: calc((100% - 20px) / 2);
    flex: 0 0 auto;
    border: 1px solid #eef2f7;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    counter-increment: problem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
/* Декор: призрачный номер и мягкое пятно в правом нижнем углу */
.problem-item::after {
    content: counter(problem, decimal-leading-zero);
    position: absolute;
    right: 14px;
    bottom: -18px;
    z-index: -1;
    font-size: 92px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.16), rgba(124, 58, 237, 0.05));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    pointer-events: none;
}
.problem-item::before {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 150px;
    height: 150px;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.10), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.problem-item:hover::before { opacity: 1; }
.problem-item:hover::after { transform: translateY(-6px) scale(1.04); }
.problem-marker {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.problem-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.problem-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ====== Audience ====== */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.audience-card {
    background: var(--bg);
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid #eef2f7;
    text-align: left;
    width: calc((100% - 48px) / 3);
    flex: 0 0 auto;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.audience-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.audience-card:hover::before { transform: scaleX(1); }
.audience-icon {
    width: 52px;
    height: 52px;
    padding: 13px;
    margin: 0 0 18px;
    border-radius: 50%;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
    transition: transform 0.25s ease;
}
.audience-card:hover .audience-icon { transform: scale(1.06); }
.audience-card h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--text);
}
.audience-card ul {
    list-style: none;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 2.2;
    text-align: left;
}
.audience-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.audience-card ul li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 4.5L6.75 12.75L3 9' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* ====== About ====== */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 36px;
    align-items: stretch;
    padding: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(20, 184, 166, 0.04)),
        #fff;
}
.flag-icon {
    border-radius: 2px;
    flex-shrink: 0;
}
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(37,99,235,0.08);
    color: var(--accent);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.about-text h2 {
    max-width: 760px;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.2;
}
.about-text h2 span { color: var(--accent); }
.about-text p {
    max-width: 760px;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.65;
}
.about-highlight {
    background: var(--bg);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    margin-top: 24px;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
}
.partner-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    background: #0f172a;
    border-radius: 22px;
    padding: 24px;
    text-align: left;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}
.partner-card__top {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}
.partner-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #bfdbfe;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}
.partner-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.25;
}
.partner-card p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.55;
}
.partner-points {
    display: grid;
    gap: 10px;
}
.partner-points div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}
.partner-points strong {
    color: #93c5fd;
    font-size: 13px;
    font-weight: 800;
}
.partner-points span {
    color: #f8fafc;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}
.partner-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0;
    color: #bfdbfe;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.2s;
}
.partner-card-link:hover { gap: 10px; }

/* ====== News (main page) ====== */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.news-header h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}
.news-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.news-card {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}
.news-card__cover {
    width: calc(100% + 56px);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin: -28px -28px 20px;
    display: block;
    background: var(--border);
}
.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: var(--shadow-lg);
}
.news-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}
.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}
.news-title a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s;
}
.news-title a:hover { color: var(--accent); }
.news-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.news-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.news-link:hover { gap: 8px; }
/* ====== List hero (blog/news) ====== */
.list-hero {
    padding: 34px 0 22px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.list-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(37,99,235,0.08);
    color: var(--accent);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}
.list-hero__title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 10px;
}
.list-hero__sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}
.list-section {
    padding-top: 26px;
}
.resource-head,
.list-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.resource-head span {
    display: block;
    margin-bottom: 5px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}
.resource-head h2 {
    color: var(--text);
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}
.resource-head p {
    max-width: 560px;
    margin-top: 7px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.55;
}
.list-toolbar {
    align-items: center;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
}
.list-toolbar strong {
    color: var(--text);
    font-size: 18px;
    line-height: 1.2;
}
.list-toolbar span {
    color: var(--text-muted);
    font-size: 14px;
    text-align: right;
}
.list-empty {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 30px 24px;
    text-align: center;
    color: var(--text-secondary);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fff, #f8fafc);
}
.list-empty strong {
    color: var(--text);
    font-size: 17px;
    line-height: 1.3;
}
.list-empty span {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.55;
}
.list-empty a {
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.feed-loading {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.feed-loading__card {
    min-height: 210px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}
.feed-loading__cover,
.feed-loading__line {
    position: relative;
    overflow: hidden;
    background: #eef2f7;
}
.feed-loading__cover {
    height: 108px;
}
.feed-loading__body {
    display: grid;
    gap: 10px;
    padding: 16px;
}
.feed-loading__line {
    height: 12px;
    border-radius: 999px;
}
.feed-loading__line:nth-child(1) { width: 42%; }
.feed-loading__line:nth-child(2) { width: 92%; height: 16px; }
.feed-loading__line:nth-child(3) { width: 76%; }
.feed-loading__cover::after,
.feed-loading__line::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent);
    animation: shimmer 1.35s ease-in-out infinite;
}
@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* ====== Полоса живых проверок на главной ====== */
.live-status__grid {
    /* Пять сервисов — ровно одна строка; auto-fit переносил последнюю карточку. */
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}
@media (max-width: 1080px) {
    .live-status__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .live-status__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 460px) {
    .live-status__grid { grid-template-columns: 1fr; }
}
.live-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.live-card:hover { border-color: #cbd5e1; box-shadow: var(--shadow-md); }
.live-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.live-card__top strong {
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
}
.live-card__host {
    color: var(--accent);
    font-size: 12.5px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.live-card__host:hover { text-decoration: underline; }
.live-card__facts {
    display: grid;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.live-card__facts span {
    /* Подпись сверху, значение снизу: в узкой карточке ответ сервера вроде
       «302 Moved temporarily» не помещается в одну строку рядом с подписью. */
    display: grid;
    gap: 1px;
    color: var(--text-muted);
    font-size: 11.5px;
}
.live-card__facts b {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.status-pill--pending {
    color: var(--text-muted);
    background: #f1f5f9;
}
.live-card__host--pending { color: var(--text-muted); }
.live-status__note {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 13.5px;
}
.live-status__note a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.live-status__note a:hover { text-decoration: underline; }

/* ====== Состояние сервиса и детали проверок ====== */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: none;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
}
.status-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.status-pill--up { color: #047857; background: #d1fae5; }
.status-pill--degraded { color: #b45309; background: #fef3c7; }
.status-pill--down { color: #b91c1c; background: #fee2e2; }
.status-pill--pending { color: var(--text-muted); background: #f1f5f9; }

.proof-block {
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
}
.proof-block__head {
    padding: 18px 22px 14px;
    border-bottom: 1px solid var(--border);
    background: #f8fafc;
}
.proof-block__head h3 {
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.proof-block__head p {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
}
.proof-table { overflow-x: auto; }
.proof-row {
    display: grid;
    grid-template-columns: 150px minmax(240px, 1fr) 72px 190px 110px;
    gap: 16px;
    align-items: center;
    min-width: 740px;
    padding: 11px 22px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 13.5px;
}
.proof-row:first-child { border-top: 0; }
.proof-row--head {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #fff;
}
.proof-row > span:first-child { color: var(--text); font-weight: 600; }
.proof-row a {
    color: var(--accent);
    text-decoration: none;
    overflow-wrap: anywhere;
}
.proof-row a:hover { text-decoration: underline; }
.proof-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12.5px;
    font-variant-numeric: tabular-nums;
}
.proof-answer {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12.5px;
    font-weight: 600;
}
.proof-answer--up { color: #047857; }
.proof-answer--degraded { color: #b45309; }
.proof-answer--down { color: #b91c1c; }

@media (max-width: 640px) {
    .proof-block__head { padding: 16px 18px 12px; }
    .proof-row { padding-left: 18px; padding-right: 18px; }
}

/* ====== Pagination ====== */
.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.pager__btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}
.pager__btn:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent);
}
.pager__btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pager__btn--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.all-news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: border-color 0.2s, background 0.2s;
    min-height: 44px;
}
.all-news-link:hover {
    border-color: var(--accent);
    background: rgba(37,99,235,0.04);
    color: var(--accent);
}
.section-guide {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 24px;
    padding: 20px 24px 0;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.section-guide--blog {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 300px);
}
.section-guide--blog img {
    grid-column: 2;
    grid-row: 1;
}
.section-guide--blog .section-guide__content {
    grid-column: 1;
    grid-row: 1;
}
.section-guide img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    object-position: bottom center;
    align-self: end;
}
.section-guide--problems img {
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    align-self: center;
}
.section-guide__content {
    align-self: center;
    padding: 12px 0 24px;
}
.section-guide__content span {
    display: inline-flex;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.section-guide__content h3 {
    margin: 6px 0 8px;
    color: var(--text);
    font-size: 26px;
    line-height: 1.22;
    letter-spacing: -0.02em;
}
.section-guide .news-header {
    margin-bottom: 10px;
}
.section-guide__content p {
    max-width: 620px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* ====== Motivation ====== */
.motivation-block {
    background: linear-gradient(135deg, #0b1120, #1e293b, #312e81, #0b1120);
    background-size: 300% 300%;
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradientShift 10s ease-in-out infinite;
}
.motivation-block::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.motivation-block::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}
.motivation-quote {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.motivation-text {
    font-size: 15px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.motivation-cta {
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.motivation-cta .motivation-trial {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 12px;
}

/* ====== FAB ====== */
.fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    box-shadow: 0 12px 28px rgba(37,99,235,0.35);
    padding: 12px 24px;
    z-index: 50;
    border-radius: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 14px;
}
.fab:hover { transform: translateY(-2px); }
.fab--hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* ====== Responsive: ≤1024 ====== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 42px; }
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 28px;
    }
    .hero-visual { min-height: 340px; }
    .hero-blob { width: 400px; height: 400px; }
    .hero-version-card { max-width: 340px; }
    .dash-preview { grid-template-columns: 1fr; }
    .dash-main__head strong { font-size: 18px; }
    .dash-kpi strong { font-size: 17px; }
    .dash-site-row { flex-direction: column; }
    .dash-chips { justify-content: flex-start; }
    .plan-grid { gap: 16px; }
    .plan-card { padding: 24px 20px; }
    .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .audience-card { width: calc((100% - 24px) / 2); }
    .news-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }
    .motivation-quote { font-size: 36px; }
}

/* ====== Responsive: ≤768 ====== */
@media (max-width: 768px) {
    .hero { padding: 28px 0 36px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 36px; }
    .hero-lead { font-size: 17px; max-width: 100%; }
    .hero-visual { min-height: 280px; }
    .hero-blob { width: 340px; height: 340px; }
    .hero-version-card { max-width: 420px; margin: 0 auto; }
    .hero-actions { flex-wrap: wrap; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .stat-number { font-size: 24px; }

    .section { padding: 32px 0; }
    .section-title { font-size: 30px; }
    .section-sub { font-size: 16px; margin-bottom: 28px; }
    .section-photo-row { grid-template-columns: 1fr; gap: 18px; }
    .section-guide,
    .section-guide--blog {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .section-guide--blog img,
    .section-guide--blog .section-guide__content {
        grid-column: auto;
        grid-row: auto;
    }
    .section-guide img {
        max-width: 240px;
        margin: 0 auto;
    }
    .section-guide--problems img {
        max-width: 100%;
    }
    .section-guide .news-header {
        justify-content: center;
    }
    .section-guide__content p {
        margin: 0 auto;
    }
    .plan-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .footer-contact-hero {
        grid-template-columns: 1fr;
        padding: 18px 22px 0;
        text-align: center;
    }
    .footer-contact-hero img {
        max-width: 210px;
        margin: 0 auto;
    }
    .footer-contact-hero h2 {
        margin-left: auto;
        margin-right: auto;
        font-size: 24px;
    }

    .features-grid { grid-template-columns: 1fr; }
    .problem-item, .audience-card { width: 100%; max-width: 480px; }
    .feed-loading { grid-template-columns: 1fr; }

    .about-text h2 { font-size: 28px; }

    .news-grid, .blog-grid { grid-template-columns: 1fr; }
    .resource-head,
    .list-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .resource-head h2 { font-size: 26px; }
    .list-toolbar span { text-align: left; }

    .motivation-block { padding: 48px 24px; border-radius: var(--radius-lg); }
    .motivation-quote { font-size: 28px; }

    .site-footer { padding: 40px 0 0; }

    .fab { bottom: 20px; right: 16px; padding: 12px 20px; font-size: 14px; }
}

/* ====== Responsive: ≤480 ====== */
@media (max-width: 480px) {
    .hero { padding: 24px 0 28px; }
    .hero h1 { font-size: 30px; }
    .hero-lead { font-size: 16px; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .hero-visual { min-height: 200px; }
    .hero-blob { width: 360px; height: 360px; filter: blur(50px); opacity: 0.18; top: calc(50% - 180px); left: calc(50% - 180px); }
    .hero-blob-2 { width: 220px; height: 220px; opacity: 0.1; top: -60px; left: -40px; bottom: auto; right: auto; }
    .hero-blob-3 { width: 200px; height: 200px; opacity: 0.08; bottom: -40px; right: -30px; top: auto; left: auto; }
    .hero-glass { padding: 16px; background: rgba(255,255,255,0.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-color: var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
    .hero-version-card { max-width: 100%; padding: 0; }
    .dash-preview {
        grid-template-columns: 1fr;
    }
    .dash-main { padding: 12px; }
    .dash-main__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
    .dash-kpis {
        grid-template-columns: 1fr;
    }
    .dash-site-row,
    .dash-finding {
        align-items: flex-start;
        flex-direction: column;
    }
    .dash-chips {
        justify-content: flex-start;
    }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { width: 100%; justify-content: center; }
    .hero-actions .btn-large { padding: 14px 32px; font-size: 15px; }
    .hero-stats { align-items: center; }
    .stat-item { align-items: center; text-align: center; }
    .section { padding: 24px 0; }
    .section-title { font-size: 26px; }
    .feature-card,
    .problem-item,
    .audience-card,
    .news-card,
    .contact-item { padding: 24px 20px; }
    .breadcrumbs .container { font-size: 12px; }
    .section-photo-row {
        padding: 14px;
        border-radius: 18px;
    }
    .section-photo-row h3 { font-size: 20px; }
    .footer-contact-hero {
        border-radius: 18px;
    }
    .footer-contact-hero h2 { font-size: 21px; }
    .about-text h2 { font-size: 24px; }
    .about-highlight { padding: 16px; font-size: 14px; }
    .partner-card { padding: 20px; }
    .partner-card__top {
        grid-template-columns: 1fr;
    }
    .partner-points div {
        grid-template-columns: 36px minmax(0, 1fr);
    }
    .motivation-block { padding: 36px 20px; }
    .motivation-quote { font-size: 24px; }
    .motivation-text { font-size: 16px; }

    .site-footer { padding: 32px 0 0; }
}

/* ====== Polish ====== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.audience-card,
.partner-card,
.problem-item {
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature-card:hover,
.news-card:hover,
.audience-card:hover,
.partner-card:hover,
.problem-item:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: var(--shadow-lg);
}

.nav-links a:not([class]) {
    position: relative;
}
.nav-links a:not([class])::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}
.nav-links a:not([class]):hover::after,
.nav-links a:not([class])[aria-current='page']::after {
    transform: scaleX(1);
}
.nav-links a:not([class])[aria-current='page'] {
    color: var(--text);
    font-weight: 600;
}

.btn-primary:active,
.btn-nav-primary:active,
.btn-nav-outline:active,
.fab:active {
    transform: translateY(1px);
}

.site-chat {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    font-family: inherit;
}

.site-chat__button {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    border: 0;
    border-radius: 999px;
    padding: 8px 14px 8px 8px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #2563eb);
    background-size: 200% 200%;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2);
    cursor: pointer;
    animation: gradientShift 6s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-chat__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.24);
}

.site-chat__button-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    color: var(--accent);
    background: #fff;
    font-weight: 800;
    font-size: 15px;
}

.site-chat__button span:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.site-chat__button strong {
    font-size: 13px;
}

.site-chat__button small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
}

.site-chat__panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 14px);
    width: min(380px, calc(100vw - 32px));
    max-height: min(600px, calc(100vh - 110px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transform-origin: bottom right;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-chat--open .site-chat__panel {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.site-chat__head {
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 14px;
    color: #fff;
    background: linear-gradient(135deg, #111827 0%, #2563eb 100%);
}

.site-chat__head div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-chat__head strong {
    font-size: 18px;
}

.site-chat__head span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.site-chat__close {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.site-chat__form {
    display: grid;
    gap: 12px;
    padding: 16px 18px 18px;
    overflow-y: auto;
}

.site-chat__form label {
    display: grid;
    gap: 6px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.site-chat__form input,
.site-chat__form textarea {
    width: 100%;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    padding: 11px 12px;
    color: #0f172a;
    background: #fff;
    font: inherit;
    font-size: 14px;
    resize: vertical;
}

.site-chat__form input:focus,
.site-chat__form textarea:focus {
    outline: 2px solid rgba(37, 99, 235, 0.24);
    border-color: #2563eb;
}

.site-chat__captcha {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 10px;
    align-items: center;
}

.site-chat__captcha[hidden] {
    display: none;
}

.site-chat__captcha img {
    width: 132px;
    height: 48px;
    min-height: 48px;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background: #f8fafc;
    object-fit: contain;
}

.site-chat__consent {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 9px !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.site-chat__consent input {
    width: 16px;
    height: 16px;
    margin-top: 1px;
}

.site-chat__consent-link {
    color: var(--accent);
    text-decoration: underline;
}

.site-chat__consent-link:hover {
    text-decoration: none;
}

.site-chat__status {
    min-height: 18px;
    color: #64748b;
    font-size: 13px;
}

.site-chat__status[data-type="success"] {
    color: #047857;
}

.site-chat__status[data-type="error"] {
    color: #dc2626;
}

.site-chat__submit {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 30px;
    padding: 10px 24px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #2563eb);
    background-size: 200% 200%;
    font: inherit;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    animation: gradientShift 6s ease-in-out infinite;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-chat__submit:hover:not(:disabled) {
    opacity: 0.92;
    transform: translateY(-1px);
}

.site-chat__submit:disabled {
    cursor: wait;
    opacity: 0.72;
}

.site-chat__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* Появление блоков при скролле */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    will-change: opacity, transform;
    transition: opacity 0.55s ease-out, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--in {
    opacity: 1;
    transform: none;
}
/* Ступенька задержки — классом: CSP (style-src 'self') не даёт скрипту
 * выставить transition-delay через element.style. */
.reveal--d1 { transition-delay: 60ms; }
.reveal--d2 { transition-delay: 120ms; }
.reveal--d3 { transition-delay: 180ms; }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal--in {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .feature-card:hover,
    .news-card:hover,
    .audience-card:hover,
    .partner-card:hover,
    .problem-item:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .problem-item::after { font-size: 68px; bottom: -12px; right: 10px; }
    .feature-card::before { display: none; }
    .site-chat {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }
    .site-chat__button {
        width: 100%;
        justify-content: center;
        min-width: 0;
    }
    .site-chat__panel {
        right: 0;
        left: 0;
        width: auto;
    }
    .site-chat__captcha {
        grid-template-columns: 1fr;
    }
    .vpn-banner {
        flex-wrap: wrap;
        border-radius: 0;
    }
    .vpn-banner__text {
        flex: 1 1 100%;
        order: 2;
    }
}

/* ====== Баннер про VPN ====== */
.vpn-banner {
    position: sticky;
    top: 72px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 24px;
    background: #eef2ff;
    border-bottom: 1px solid #e0e7ff;
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
}
.vpn-banner__icon {
    flex-shrink: 0;
    color: #4338ca;
}
.vpn-banner__text {
    flex: 1;
    min-width: 0;
}
.vpn-banner__text b {
    font-weight: 700;
}
.vpn-banner__close {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}
.vpn-banner__close:hover {
    background: rgba(0,0,0,0.06);
}
