/* public/css/landing.css */
@import url("design-tokens.css");
@import url("site-navbar.css?v=11");

/* ПОЛНЫЕ стили для всех страниц лендинга */

:root {
    --dark-bg: #0a0e1a;
    --card-bg: #1a1f2e;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
}

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

body {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn i {
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--dark-bg);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--vf-shadow-primary-md);
}

/* ===== HERO СЕКЦИЯ (Главная) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(
        ellipse at center,
        rgba(124, 58, 237, 0.16) 0%,
        rgba(37, 99, 235, 0.08) 40%,
        transparent 70%
    );
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ===== ОБЩИЕ СЕКЦИИ ===== */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FEATURES (Главная) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--vf-shadow-primary-sm);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Расширенная страница возможностей (features.html) */
.features-detail-section .section-subtitle {
    margin-bottom: 2.25rem;
}
.features-detail-section .features-grid {
    margin-bottom: 0.5rem;
}
.features-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

body.features-page,
body.pricing-page {
    background: #f7f8fc;
    color: #0f172a;
    padding-top: 68px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body.features-page .navbar,
body.pricing-page .navbar {
    background: rgba(10, 11, 16, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.085);
    color-scheme: dark;
}

body.features-page .logo,
body.pricing-page .logo {
    color: #f8fafc;
}

body.features-page .logo-text-voice,
body.pricing-page .logo-text-voice {
    color: #f8fafc;
}

body.features-page .logo-text-flow,
body.pricing-page .logo-text-flow {
    color: #6b4cf4;
}

body.features-page .nav-links a,
body.pricing-page .nav-links a {
    color: rgba(248, 250, 252, 0.92);
}

body.features-page .nav-links a:hover,
body.pricing-page .nav-links a:hover {
    color: #7dd3fc;
}

body.features-page .nav-links a.nav-link-active,
body.features-page .nav-links a[aria-current="page"],
body.pricing-page .nav-links a.nav-link-active,
body.pricing-page .nav-links a[aria-current="page"] {
    color: #ffffff;
    border-bottom-color: #3b82f6;
}

body.features-page .nav-lang-pill,
body.pricing-page .nav-lang-pill {
    background: rgba(15, 23, 42, 0.65);
    border-color: rgba(148, 163, 184, 0.38);
    color-scheme: dark;
}

body.features-page .nav-lang-select,
body.pricing-page .nav-lang-select {
    color: #f8fafc;
    background-color: #0f172a;
    color-scheme: dark;
}

body.features-page .nav-lang-trigger,
body.pricing-page .nav-lang-trigger {
    color: #f8fafc;
    background-color: transparent;
}

body.features-page .nav-lang-globe,
body.features-page .nav-lang-chevron,
body.pricing-page .nav-lang-globe,
body.pricing-page .nav-lang-chevron {
    color: #94a3b8;
}

body.features-page .navbar .nav-buttons .btn-outline,
body.pricing-page .navbar .nav-buttons .btn-outline {
    border-color: rgba(248, 250, 252, 0.45);
    color: #f8fafc;
}

body.features-page .navbar .nav-buttons .btn-outline:hover,
body.pricing-page .navbar .nav-buttons .btn-outline:hover {
    background: rgba(248, 250, 252, 0.08);
    color: #fff;
}

body.pricing-page .navbar .nav-buttons .btn-primary {
    border: 1px solid transparent;
}

body.pricing-page .nav-right {
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.55rem;
}

body.pricing-page .nav-buttons {
    flex-wrap: nowrap;
    align-items: stretch;
}

body.pricing-page .navbar .nav-buttons .btn {
    min-height: 2.375rem;
    box-sizing: border-box;
}

@media (max-width: 560px) {
    body.pricing-page .nav-right {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    body.pricing-page .nav-buttons {
        flex-wrap: wrap;
    }
}

body.features-page .page-header {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2.35rem 2rem 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fbfcff 0%, #f7f8fc 100%);
}

body.features-page .page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 12% 80%, rgba(112, 169, 255, 0.15) 0%, rgba(112, 169, 255, 0) 62%),
        radial-gradient(120% 80% at 88% 70%, rgba(209, 146, 255, 0.17) 0%, rgba(209, 146, 255, 0) 64%);
    pointer-events: none;
}

body.features-page .features-top-title {
    margin: 0;
    font-size: clamp(2.2rem, 5.3vw, 4.05rem);
    line-height: 1.05;
    color: #101426;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    background: none;
    -webkit-text-fill-color: currentColor;
    -webkit-background-clip: initial;
}

body.features-page .features-top-accent {
    background: linear-gradient(93deg, #6a4cf4 0%, #4d6dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.features-page .features-top-sub {
    margin: 0.9rem auto 0;
    max-width: 800px;
    font-size: 1.08rem;
    line-height: 1.45;
    color: #8a92a5;
    position: relative;
    z-index: 1;
}

body.features-page .features-top-title > span:first-child {
    color: #141a2b;
    background: none;
    -webkit-text-fill-color: currentColor;
}

body.features-page .section {
    padding: 1.6rem 2rem;
    max-width: none;
    width: calc(100% - 4rem);
    margin-left: 2rem;
    margin-right: 2rem;
}

body.features-page #overview {
    width: calc(100% - 4rem);
    max-width: none;
    margin-left: 2rem;
    margin-right: 2rem;
    border: 1px solid #e8edf7;
    border-radius: 18px 18px 0 0;
    background: #ffffff;
    padding: 1.5rem 1.2rem 1.15rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    margin-top: 20px;
}

body.features-page #voice-pipeline {
    width: calc(100% - 4rem);
    max-width: none;
    margin-left: 2rem;
    margin-right: 2rem;
    border: 1px solid #e8edf7;
    border-radius: 0;
    background: #ffffff;
    padding: 1.5rem 1.2rem 1.15rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

body.features-page #ai-demo,
body.features-page #account-a11y,
body.features-page #account-a11y + .section {
    border: 1px solid #e8edf7;
    border-radius: 0px;
    background: #ffffff;
    padding: 1.5rem 1.2rem 1.15rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

body.features-page .section-title {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: 0.45rem;
    color: #131a2b;
    background: none;
    -webkit-text-fill-color: currentColor;
    position: relative;
    padding-bottom: 0.55rem;
}

body.features-page .section-title::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    margin: 0.5rem auto 0;
    background: linear-gradient(90deg, #7a4bf3 0%, #5f7cff 100%);
    box-shadow: 0 1px 3px rgba(96, 106, 255, 0.2);
}

body.features-page .section-subtitle {
    margin-bottom: 1.2rem;
    max-width: 720px;
    color: #8f97aa;
    font-size: 0.98rem;
}

body.features-page .features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.82rem;
}

body.features-page .feature-card {
    --vf-icon-box: 44px;
    --vf-icon-size: 22px;
    background: #ffffff;
    border: 1px solid #e8ecf5;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    padding: 1.05rem 1.1rem;
    display: grid;
    grid-template-columns: var(--vf-icon-box) minmax(0, 1fr);
    gap: 0 0.72rem;
    align-items: start;
}

body.features-page .feature-card:hover {
    border-color: #d8cfff;
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.12);
    transform: translateY(-2px);
}

body.features-page .feature-icon {
    width: var(--vf-icon-box);
    height: var(--vf-icon-box);
    border-radius: 50%;
    margin: 0;
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    font-size: 1.05rem;
    background: #f6f8fe;
    border: 1px solid #e9edf7;
}

body.features-page .feature-icon svg {
    width: var(--vf-icon-size);
    height: var(--vf-icon-size);
    display: block;
}

body.features-page .feature-icon .feature-icon-svg-bolt {
    width: 23px;
    height: 23px;
}

body.features-page .feature-icon .feature-icon-svg-mic {
    width: 65px;
    height: 65px;
}

body.features-page .feature-icon .feature-icon-svg-brain {
    width: 100px;
    height: 100px;
}

body.features-page .feature-icon .feature-icon-svg-globe {
    width: 65px;
    height: 65px;
}

body.features-page .feature-icon .feature-icon-svg-shield {
    width: 65px;
    height: 65px;
}

body.features-page .feature-icon .feature-icon-svg-puzzle-relief {
    width: 65px;
    height: 65px;
}

body.features-page .feature-icon .feature-icon-svg-sliders {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-user-relief {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-fingerprint-fill {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-speaker {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-bulb {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-magic {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-assist {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-loop-chat {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-bars {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-a11y {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-web-client {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-api-dev {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-travel {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-business {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-education {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-medical {
    width: 24px;
    height: 24px;
}

body.features-page .feature-icon .feature-icon-svg-events {
    width: 24px;
    height: 24px;
    fill: #7A58F6;
}

body.features-page #overview .feature-card:first-child .feature-icon .feature-icon-svg-bolt {
    width: 65px;
    height: 65px;
}

body.features-page #overview .feature-card {
    --vf-icon-box: 100px;
    --vf-icon-size: 24px;
}

body.features-page #overview .feature-card:first-child {
    --vf-icon-size: 27px;
}

body.features-page #overview .feature-card:nth-child(1) .feature-icon { color: #7c3aed; background: #f5efff; }
body.features-page #overview .feature-card:nth-child(2) .feature-icon { color: #8b5cf6; background: #f4f1ff; }
body.features-page #overview .feature-card:nth-child(3) .feature-icon { color: #5b73f2; background: #f0f4ff; }
body.features-page #overview .feature-card:nth-child(4) .feature-icon { color: #16a34a; background: #ecfdf3; }
body.features-page #overview .feature-card:nth-child(5) .feature-icon { color: #16a34a; background: #effcf4; }
body.features-page #overview .feature-card:nth-child(6) .feature-icon { color: #f59e0b; background: #fff7ea; }

body.features-page .feature-card h3,
body.features-page .feature-card p {
    grid-column: 2;
}

body.features-page .feature-card h3 {
    margin: 0 0 0.35rem;
    color: #182033;
    font-size: 0.99rem;
    line-height: 1.24;
    font-weight: 700;
}

body.features-page .feature-card p {
    color: #606b80;
    font-size: 0.83rem;
    line-height: 1.4;
    margin: 0;
}

body.features-page .features-detail-section .features-grid,
body.features-page #account-a11y .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.features-page #account-a11y + .section .features-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.features-page .cta {
    margin: 1.2rem auto 0;
    border-radius: 14px;
    padding: 0;
    background: linear-gradient(95deg, #3775f7 0%, #6b3ff0 62%, #9b41f7 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 28px rgba(65, 88, 208, 0.22);
}

body.features-page .features-cta-shell {
    min-height: 102px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
}

body.features-page .features-cta-copy {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

body.features-page .features-cta-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: radial-gradient(circle at 30% 20%, #4bcfff 0%, #3d89ff 45%, #2e59f2 100%);
    box-shadow: 0 8px 22px rgba(42, 91, 255, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

body.features-page .features-cta-icon svg {
    width: 42px;
    height: 42px;
}

body.features-page .features-cta-copy h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1.08;
}

body.features-page .features-cta-copy p {
    margin: 0.2rem 0 0;
    color: rgba(233, 241, 255, 0.95);
    font-size: 0.92rem;
}

body.features-page .features-cta-actions {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

body.features-page .features-cta-actions .btn {
    min-height: 42px;
    border-radius: 10px;
    font-size: 0.88rem;
    padding: 0.6rem 1rem;
}

body.features-page .features-cta-actions .btn-primary {
    background: #ffffff;
    color: #4b2ead;
    box-shadow: 0 10px 20px rgba(31, 48, 117, 0.22);
}

body.features-page .features-cta-actions .btn-primary:hover {
    background: #f7faff;
    box-shadow: 0 14px 24px rgba(31, 48, 117, 0.3);
}

body.features-page .features-cta-actions .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #edf4ff;
    background: rgba(18, 30, 95, 0.22);
}

body.features-page .features-cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

body.features-page .footer,
body.pricing-page .footer {
    margin-top: 1.3rem;
    padding: 2.2rem 2rem 1.15rem;
    background: #060b18;
    border-top: none;
}

body.features-page .footer-content,
body.pricing-page .footer-content {
    gap: 1.25rem;
}

body.features-page .footer-section h4,
body.pricing-page .footer-section h4 {
    margin-bottom: 0.6rem;
    color: #60a5fa;
}

body.features-page .footer-section p,
body.features-page .footer-section a,
body.features-page .footer-bottom,
body.pricing-page .footer-section p,
body.pricing-page .footer-section a,
body.pricing-page .footer-bottom {
    color: #94a3b8;
}

body.features-page .footer-bottom,
body.pricing-page .footer-bottom {
    margin-top: 1.3rem;
    border-top-color: rgba(148, 163, 184, 0.2);
    padding-top: 1rem;
}

@media (max-width: 1100px) {
    body.features-page .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.features-page .features-detail-section .features-grid,
    body.features-page #account-a11y .features-grid,
    body.features-page #account-a11y + .section .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    body.features-page .section {
        padding: 1.2rem 1rem;
        width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
    }

    body.features-page #overview {
        width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: 14px;
        padding: 1.1rem 0.8rem 0.9rem;
    }

    body.features-page #voice-pipeline {
        width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: 0px;
        padding: 1.1rem 0.8rem 0.9rem;
    }

    body.features-page #ai-demo,
    body.features-page #account-a11y,
    body.features-page #account-a11y + .section {
        border-radius: 14px;
        padding: 1.1rem 0.8rem 0.9rem;
    }

    body.features-page .page-header {
        padding: 1.85rem 1rem 0.8rem;
    }

    body.features-page .features-top-title {
        font-size: clamp(1.8rem, 8.6vw, 2.6rem);
    }

    body.features-page .features-top-sub {
        font-size: 0.95rem;
        max-width: 560px;
    }

    body.features-page .features-grid,
    body.features-page .features-detail-section .features-grid,
    body.features-page #account-a11y .features-grid,
    body.features-page #account-a11y + .section .features-grid {
        grid-template-columns: 1fr;
    }

    body.features-page .features-cta-shell {
        flex-direction: column;
        align-items: stretch;
    }

    body.features-page .features-cta-copy {
        align-items: flex-start;
    }

    body.features-page .features-cta-copy h2 {
        font-size: 1.35rem;
    }

    body.features-page .features-cta-actions {
        width: 100%;
    }

    body.features-page .features-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== STEPS (Как это работает) ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-secondary);
}

/* ===== CTA ===== */
.cta {
    background: var(--primary-gradient);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 24px;
    margin: 4rem auto;
    max-width: 1000px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta .btn {
    background: white;
    color: #7B2CBF;
}

.cta .btn:hover {
    background: var(--dark-bg);
    color: white;
}

/* ===== PAGE HEADER (Технологии, Тарифы, FAQ) ===== */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(
        ellipse at center,
        rgba(124, 58, 237, 0.16) 0%,
        rgba(37, 99, 235, 0.08) 40%,
        transparent 70%
    );
}

.page-header h1 {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PRICING (Тарифы) ===== */
.pricing-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== PRICING PAGE (макет тарифов: светлый контент, тёмные navbar/footer) ===== */
body.pricing-page .pricing-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2.5rem 2rem 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

body.pricing-page .pricing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 0% 50%, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0) 55%),
        radial-gradient(100% 70% at 96% 12%, rgba(232, 224, 255, 0.35) 0%, rgba(232, 224, 255, 0) 52%),
        radial-gradient(90% 60% at 100% 0%, rgba(186, 230, 253, 0.28) 0%, rgba(186, 230, 253, 0) 45%);
    pointer-events: none;
}

body.pricing-page .pricing-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding-right: min(42vw, 360px);
}

body.pricing-page .pricing-hero-waves {
    position: absolute;
    top: 0;
    right: -2%;
    width: min(56vw, 560px);
    height: min(220px, 28vw);
    opacity: 0.85;
    pointer-events: none;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 200' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='pw1' x1='40' y1='140' x2='500' y2='70' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23a78bfa'/%3E%3Cstop offset='1' stop-color='%233b82f6'/%3E%3C/linearGradient%3E%3ClinearGradient id='pw2' x1='20' y1='165' x2='510' y2='95' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23ddd6fe'/%3E%3Cstop offset='1' stop-color='%2393c5fd'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M40 140C120 80 200 120 280 90C360 60 420 100 500 70' stroke='url(%23pw1)' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M20 165C100 110 180 150 270 115C350 85 400 125 510 95' stroke='url(%23pw2)' stroke-width='1.6' stroke-linecap='round' opacity='0.85'/%3E%3Cpath d='M60 118C150 65 230 105 310 78C395 48 450 88 520 58' stroke='%23c4b5fd' stroke-width='1.2' stroke-linecap='round' opacity='0.45'/%3E%3C/svg%3E")
            no-repeat right top / contain;
}

body.pricing-page .pricing-hero-title {
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: clamp(2.25rem, 4.8vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

body.pricing-page .pricing-hero-title-plain {
    color: #101426;
}

body.pricing-page .pricing-hero-title-gap {
    white-space: pre;
}

body.pricing-page .pricing-hero-title-accent {
    background: linear-gradient(92deg, #7b61ff 0%, #6366f1 42%, #007bff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.pricing-page .pricing-hero-sub {
    margin: 1rem 0 0;
    max-width: 22rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.42;
    color: #5c6578;
}

body.pricing-page .pricing-hero-sub-line {
    display: block;
}

@media (max-width: 720px) {
    body.pricing-page .pricing-hero-inner {
        padding-right: 0;
    }

    body.pricing-page .pricing-hero-waves {
        opacity: 0.35;
        width: min(70vw, 320px);
        height: 120px;
        top: -0.25rem;
    }
}

body.pricing-page .pricing-section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

body.pricing-page .pricing-plan-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

body.pricing-page .pricing-plan-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}

body.pricing-page .pricing-plan-actions {
    margin-top: auto;
    padding-top: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
}

body.pricing-page .pricing-plan-quick-buy {
    width: 100%;
    justify-content: center;
    text-align: center;
}

body.pricing-page .pricing-plan-qty-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    flex-wrap: wrap;
}

body.pricing-page .pricing-plan-qty-caption {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

body.pricing-page .pricing-plan-qty-btns {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
}

body.pricing-page .pricing-plan-qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border: none;
    background: #fff;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

body.pricing-page .pricing-plan-qty-btn:hover:not(:disabled) {
    background: #eef2ff;
    color: #4338ca;
}

body.pricing-page .pricing-plan-qty-btn:disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

body.pricing-page .pricing-plan-qty-val {
    min-width: 2.25rem;
    padding: 0 0.35rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    line-height: 2.25rem;
}

body.pricing-page .pricing-plan-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8ecf2;
    border-radius: 16px;
    padding: 1.35rem 1.35rem 1.4rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.pricing-page .pricing-plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

body.pricing-page .pricing-plan-head {
    width: 100%;
    margin-bottom: 0.85rem;
}

body.pricing-page .pricing-plan-name {
    margin: 0;
    padding-top: 0.12rem;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1.15;
}

body.pricing-page .pricing-plan-price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.55rem;
    margin-bottom: 1rem;
}

body.pricing-page .pricing-plan-price {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(93deg, #7b61ff 0%, #6366f1 45%, #007bff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.pricing-page .pricing-plan-period {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #64748b;
}

body.pricing-page .pricing-plan-features {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    width: 100%;
    text-align: left;
}

body.pricing-page .pricing-plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.62rem;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    line-height: 1.38;
    font-weight: 500;
    color: #1e293b;
}

body.pricing-page .pricing-plan-feature-mark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.14rem;
}

body.pricing-page .pricing-plan-feature-mark i {
    font-size: 0.52rem;
    line-height: 1;
    margin: 0;
}

body.pricing-page .pricing-plan-feature-mark.is-on {
    background: linear-gradient(145deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(124, 58, 237, 0.35);
}

body.pricing-page .pricing-plan-feature-mark.is-off {
    background: #cbd5e1;
    color: #ffffff;
}

body.pricing-page .pricing-plan-feature.is-disabled {
    color: #94a3b8;
    font-weight: 400;
}

body.pricing-page .pricing-plan-feature.is-disabled .pricing-plan-feature-mark.is-off {
    background: #cbd5e1;
}

body.pricing-page .btn-pricing-free {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 0.72rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 1.5px solid #b49cff;
    color: #6b4cf4;
    background: #fff;
}

body.pricing-page .btn-pricing-free:hover {
    background: #faf8ff;
    border-color: #9f7cff;
    color: #5b21b6;
}

body.pricing-page .btn-pricing-pro {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 0.72rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    color: #fff;
    background: linear-gradient(92deg, #8b5cf6 0%, #6366f1 48%, #3b82f6 100%);
    box-shadow: 0 10px 22px rgba(99, 102, 241, 0.35);
}

body.pricing-page .btn-pricing-pro:hover {
    filter: brightness(1.05);
    box-shadow: 0 12px 26px rgba(99, 102, 241, 0.42);
}

body.pricing-page .btn-pricing-team {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 0.72rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 1.5px solid #6dcf8c;
    color: #1e7e34;
    background: #fff;
}

body.pricing-page .btn-pricing-team:hover {
    background: #f4fcf7;
}

body.pricing-page .pricing-section-stats {
    padding-top: 2rem;
    padding-bottom: 2.75rem;
}

body.pricing-page .pricing-stats-strip {
    margin: 0 auto;
    max-width: 1180px;
    padding: 1.35rem 1.75rem;
    background: #ffffff;
    border: 1px solid #e8ecf2;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

body.pricing-page .pricing-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    min-width: 0;
}

/* Иконки статистики как на главной (hero-stats): тёмный круглый бейдж + SVG */
body.pricing-page .pricing-stat-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    background: linear-gradient(165deg, #1a2238 0%, #101620 52%, #0a0d16 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 14px rgba(0, 0, 0, 0.35);
}

body.pricing-page .pricing-stat:nth-child(1) .pricing-stat-badge {
    border-color: rgba(196, 181, 253, 0.55);
    color: #e9d5ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(139, 92, 246, 0.12),
        0 0 18px rgba(167, 139, 250, 0.55),
        0 0 34px rgba(124, 58, 237, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.35);
}

body.pricing-page .pricing-stat:nth-child(2) .pricing-stat-badge {
    border-color: rgba(56, 189, 248, 0.6);
    color: #7dd3fc;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(14, 165, 233, 0.12),
        0 0 18px rgba(56, 189, 248, 0.5),
        0 0 34px rgba(14, 165, 233, 0.22),
        0 4px 14px rgba(0, 0, 0, 0.35);
}

body.pricing-page .pricing-stat:nth-child(3) .pricing-stat-badge {
    border-color: rgba(74, 222, 128, 0.58);
    color: #86efac;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(34, 197, 94, 0.12),
        0 0 18px rgba(74, 222, 128, 0.48),
        0 0 34px rgba(34, 197, 94, 0.2),
        0 4px 14px rgba(0, 0, 0, 0.35);
}

body.pricing-page .pricing-stat:nth-child(4) .pricing-stat-badge {
    border-color: rgba(251, 146, 60, 0.58);
    color: #fdba74;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(251, 146, 60, 0.14),
        0 0 18px rgba(251, 146, 60, 0.48),
        0 0 34px rgba(234, 88, 12, 0.24),
        0 4px 14px rgba(0, 0, 0, 0.35);
}

body.pricing-page .pricing-stat-badge .stat-inline-svg {
    width: 35px;
    height: 35px;
    display: block;
    flex-shrink: 0;
}

body.pricing-page .pricing-stat-badge > svg:not(.stat-inline-svg) {
    width: 38px;
    height: 38px;
    display: block;
}

body.pricing-page .pricing-stat-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.1rem;
    min-width: 0;
    text-align: left;
}

body.pricing-page .pricing-stat-number {
    font-size: 1.38rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
}

body.pricing-page .pricing-stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    color: #64748b;
}

body.pricing-page .pricing-calc-card {
    background: #ffffff;
    border: 1px solid #e5eaf3;
    border-radius: 16px;
    padding: 1.65rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

body.pricing-page .pricing-calc-head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.45rem;
}

body.pricing-page .pricing-calc-head > i {
    font-size: 1.35rem;
    color: #7b61ff;
    margin-top: 0.15rem;
}

body.pricing-page .pricing-calc-card h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
}

body.pricing-page .pricing-calc-subtitle {
    margin: 0 0 1.35rem;
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.45;
}

body.pricing-page .pricing-calc-grid {
    gap: 1.35rem;
}

body.pricing-page .pricing-calc-controls,
body.pricing-page .pricing-calc-result {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.15rem 1.2rem;
}

body.pricing-page .calc-label,
body.pricing-page .calc-check {
    color: #475569;
}

body.pricing-page .calc-radio-row {
    display: inline-flex;
    border-radius: 11px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
    width: 100%;
    max-width: 280px;
}

body.pricing-page .calc-radio-row label {
    position: relative;
    margin: 0;
    padding: 0.48rem 1.15rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-right: 1px solid #e2e8f0;
    transition: background 0.15s ease, color 0.15s ease;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body.pricing-page .calc-radio-row label:last-child {
    border-right: none;
}

body.pricing-page .calc-radio-row label:has(input:checked) {
    background: linear-gradient(92deg, rgba(139, 92, 246, 0.18) 0%, rgba(59, 130, 246, 0.16) 100%);
    color: #5b21b6;
}

body.pricing-page .calc-radio-row input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.pricing-page .pricing-calc-controls input[type="range"] {
    accent-color: #7b61ff;
}

body.pricing-page .calc-highlight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

body.pricing-page .calc-highlight {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
}

body.pricing-page .calc-highlight-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    margin-bottom: 0.35rem;
}

body.pricing-page .calc-result-price {
    font-size: 1.65rem;
}

body.pricing-page .calc-result-monthly {
    font-size: 1.45rem;
    font-weight: 700;
    color: #28a745;
    -webkit-text-fill-color: #28a745;
    background: none;
}

body.pricing-page .calc-result-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    margin-bottom: 0;
}

body.pricing-page .calc-breakdown {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.75rem;
    margin: 0;
}

body.pricing-page .calc-breakdown li {
    color: #475569;
    font-size: 0.86rem;
}

body.pricing-page .calc-total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid #e2e8f0;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
}

body.pricing-page .calc-total-row span:last-child {
    font-size: 1.15rem;
    color: #28a745;
}

@media (max-width: 980px) {
    body.pricing-page .pricing-plan-row {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    body.pricing-page .pricing-stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.pricing-page .pricing-calc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    body.pricing-page .pricing-stats-strip {
        grid-template-columns: 1fr;
    }

    body.pricing-page .calc-highlight-row {
        grid-template-columns: 1fr;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 2px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: var(--vf-shadow-primary-md);
}

.pricing-card.popular::before {
    content: 'Популярный';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-calc-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 2rem;
}

.pricing-calc-card h2 {
    margin-bottom: 0.5rem;
    font-size: 1.55rem;
    color: #fff;
}

.pricing-calc-subtitle {
    margin-bottom: 1.4rem;
    color: var(--text-secondary);
}

.pricing-calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.2rem;
}

.pricing-calc-controls,
.pricing-calc-result {
    background: rgba(15, 23, 42, 0.66);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 1rem;
}

.calc-control-group {
    margin-bottom: 1rem;
}

.calc-control-group:last-child {
    margin-bottom: 0;
}

.calc-label {
    display: block;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
}

.calc-radio-row {
    display: flex;
    gap: 1rem;
}

.calc-radio-row label,
.calc-check {
    color: #e2e8f0;
    font-size: 0.92rem;
}

.calc-check {
    display: block;
    margin-bottom: 0.45rem;
}

.pricing-calc-controls input[type="range"] {
    width: 100%;
    accent-color: #00c9ff;
}

.calc-result-main {
    margin-bottom: 0.85rem;
}

.calc-result-label {
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.calc-result-price {
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calc-result-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
    color: #cbd5e1;
    margin-bottom: 0.7rem;
}

.calc-result-monthly {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.calc-breakdown {
    list-style: none;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 0.65rem;
}

.calc-breakdown li {
    color: #94a3b8;
    font-size: 0.84rem;
    margin-bottom: 0.35rem;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.plan-period {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
}

.plan-features li::before {
    content: '✅ ';
    margin-right: 0.5rem;
}

.plan-features li.disabled {
    opacity: 0.5;
}

.plan-features li.disabled::before {
    content: '❌ ';
}

/* ===== TECHNOLOGY (Технологии) ===== */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tech-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-card ul {
    list-style: none;
    color: var(--text-secondary);
}

.tech-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tech-card li:last-child {
    border-bottom: none;
}

.architecture {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
    text-align: center;
}

/* ===== TECHNOLOGY PAGE (LIGHT REDESIGN) ===== */
body.technology-page {
    background: #f8f9fd;
    color: #0f172a;
}

body.technology-page .page-header {
    position: relative;
    overflow: hidden;
    padding-top: 9rem;
    padding-bottom: 2.4rem;
    background:
        radial-gradient(45% 42% at 0% 0%, rgba(147, 51, 234, 0.11), transparent 70%),
        radial-gradient(45% 42% at 100% 0%, rgba(37, 99, 235, 0.12), transparent 70%),
        #f8f9fd;
}

body.technology-page .tech-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

body.technology-page .tech-header-bg svg {
    width: 100%;
    height: 100%;
    display: block;
}

body.technology-page .page-header > h1,
body.technology-page .page-header > p {
    position: relative;
    z-index: 1;
}

body.technology-page .page-header h1 {
    font-size: clamp(2.1rem, 5.1vw, 3.35rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.55rem;
}

body.technology-page .page-header p {
    color: #64748b;
    max-width: 720px;
    font-size: 1.1rem;
}

body.technology-page .technology-flow-section {
    max-width: none;
    width: 90%;
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

body.technology-page .technology-flow-title {
    text-align: center;
    font-size: clamp(1.9rem, 4.2vw, 2.45rem);
    color: #111827;
    margin-bottom: 0.8rem;
}

body.technology-page .technology-flow-subtitle {
    text-align: center;
    color: #64748b;
    max-width: 760px;
    margin: 0 auto 1.45rem;
}

body.technology-page .technology-flow {
    position: relative;
    display: grid;
    gap: 1rem;
}

body.technology-page .technology-flow::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(180deg, #c7b9ff 0%, #d9ceff 100%);
}

body.technology-page .technology-step-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.9rem;
    align-items: stretch;
}
body.technology-page .technology-step-card2 {
    grid-column: 2;
}

body.technology-page .technology-step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 29px 0 0 10px;
    background: linear-gradient(135deg, #5f46f6, #8067ff) !important;
    border: 2px solid #f8f6ff !important;
    box-shadow: 0 0 0 4px rgba(216, 206, 255, 0.9) !important;
    z-index: 1;
}

body.technology-page .technology-step-body {
    background: #fff;
    border: 1px solid #e7ebfb;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(20, 38, 90, 0.04);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

body.technology-page .technology-step-body.reverse {
    flex-direction: row-reverse;
}

body.technology-page .technology-step-main {
    width: 40%;
    min-width: 0;
}

body.technology-page .technology-step-head {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 0.55rem;
    align-items: start;
}
body.technology-page .technology-step-head2 {
    grid-template-columns: none;
}

body.technology-page .technology-step-visual {
    flex: 0 0 300px;
    min-height: 180px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.75rem;
}

body.technology-page .technology-illustration {
    display: block;
    max-width: 100%;
    object-fit: contain;
}

body.technology-page .technology-inline-svg {
    display: block;
    max-width: 100%;
}

body.technology-page .technology-inline-svg-icon {
    width: 44px;
    height: 44px;
}

body.technology-page .technology-inline-svg-wave {
    width: 96px;
    height: 24px;
    opacity: 0.9;
}

body.technology-page .technology-inline-svg-wave.long {
    width: 120px;
}

body.technology-page .technology-inline-svg-bars {
    width: 58px;
    height: 22px;
}

body.technology-page .technology-inline-svg-note {
    width: 68px;
    height: 48px;
}

body.technology-page .technology-illustration-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #e2e7fc;
    background: linear-gradient(180deg, #f3f1ff 0%, #eef2ff 100%);
    padding: 8px;
}

body.technology-page .technology-illustration-wave {
    width: 96px;
    height: 24px;
    opacity: 0.85;
}

body.technology-page .technology-illustration-wave.long {
    width: 120px;
}

body.technology-page .technology-illustration-bars {
    width: 58px;
    height: 22px;
    border-radius: 10px;
    border: 1px solid #e6ebff;
    background: #f4f7ff;
    padding: 3px 8px;
}

body.technology-page .technology-illustration-note {
    width: 68px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e1e7fb;
    background: #f8faff;
    padding: 8px;
}

body.technology-page .technology-step-body h3 {
    margin-bottom: 0.4rem;
    color: #111b44;
    font-size: 1.6rem;
    line-height: 1.1;
}

body.technology-page .technology-step-head h3 {
    font-size: 20px;
}

body.technology-page .technology-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f5f2ff 0%, #eeebff 100%);
    border: 1px solid #e2dcff;
    color: #6d56f6;
    font-size: 1rem;
    margin-top: 0.1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 4px 10px rgba(109, 86, 246, 0.12);
    flex: 0 0 auto;
    margin-right: 20px;
}
body.technology-page .technology-title-icon2 {
    display: inline-block;
}

body.technology-page .technology-title-icon-svg {
    width: 60px;
    height: 60px;
    display: block;
}
body.technology-page .technology-title-icon-svg2 {
    margin-top: 6px;
}

body.technology-page .technology-step-body ul {
    margin: 0;
    padding-left: 1.05rem;
    color: #4f5d7f;
    display: grid;
    gap: 0.2rem;
}

body.technology-page .technology-step-body li {
    border: 0;
    padding: 0;
    font-size: 1rem;
}

body.technology-page .first-step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.25rem 0.35rem;
}

body.technology-page .technology-first-mic-svg {
    width: 250px;
    height: auto;
    display: block;
    margin: 0;
}

body.technology-page .technology-first-hero-svg {
    width: 250px;
    height: auto;
    display: block;
    margin: 0;
}

body.technology-page .technology-second-wide-svg {
    width: 100%;
    height: auto;
    display: block;
}

body.technology-page .technology-step2-head {
    grid-template-columns: 20px 1fr;
    gap: 0.45rem;
    align-items: center;
}

body.technology-page .technology-step2-title-icon {
    color: #7b68f8;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.technology-page .technology-step2-card .technology-step-body {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
}

body.technology-page .technology-step2-card .technology-step-visual {
    grid-column: 1;
    grid-row: 1;
    width: 600px;
}

body.technology-page .technology-step2-card .technology-step-main {
    grid-column: 3;
    grid-row: 1;
    width: 100%;
    display: flex;
    align-self: start;
}
body.technology-page .technology-step2-card .technology-step-main2 {
    display: block;
}

body.technology-page .technology-chip {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #e2e7fc;
    background: linear-gradient(180deg, #f3f1ff 0%, #eef2ff 100%);
    color: #6f57f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

body.technology-page .technology-wave {
    width: 96px;
    height: 24px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 10% 50%, #7a5cf7 0 2px, transparent 3px),
        radial-gradient(circle at 22% 52%, #8b78ff 0 2px, transparent 3px),
        radial-gradient(circle at 34% 48%, #7a5cf7 0 2px, transparent 3px),
        radial-gradient(circle at 46% 53%, #8b78ff 0 2px, transparent 3px),
        radial-gradient(circle at 58% 47%, #7a5cf7 0 2px, transparent 3px),
        radial-gradient(circle at 70% 52%, #8b78ff 0 2px, transparent 3px),
        radial-gradient(circle at 82% 49%, #7a5cf7 0 2px, transparent 3px);
}

body.technology-page .technology-wave.long {
    width: 120px;
}

body.technology-page .technology-arrow {
    color: #8fa0c8;
    font-size: 0.95rem;
}

body.technology-page .technology-bars {
    width: 58px;
    height: 22px;
    border-radius: 10px;
    background: linear-gradient(90deg, #eceefe, #e2e8ff);
    position: relative;
}

body.technology-page .technology-bars::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 8px;
    height: 6px;
    border-radius: 999px;
    background: #8b79ff;
}

body.technology-page .technology-asr {
    min-width: 78px;
    text-align: center;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: #f3f1ff;
    color: #6747f7;
    font-weight: 700;
}

body.technology-page .technology-step3-visual {
    gap: 0.5rem;
    padding: 0.65rem;
}

body.technology-page .technology-third-flow-svg {
    width: 400px;
    max-width: 400px;
    height: auto;
    display: block;
}

body.technology-page .technology-fourth-flow-svg {
    width: 500px;
    max-width: 500px;
    height: auto;
    display: block;
}

body.technology-page .technology-fifth-flow-svg {
    width: 500px;
    max-width: 500px;
    height: auto;
    display: block;
}

body.technology-page .technology-sixth-flow-svg {
    width: 500px;
    max-width: 500px;
    height: auto;
    display: block;
}

body.technology-page .technology-step3-visual .technology-inline-svg-wave {
    width: 86px;
    height: 22px;
}

body.technology-page .technology-step3-visual .technology-inline-svg-note {
    width: 82px;
    height: 58px;
}

body.technology-page .technology-asr-card {
    width: 104px;
    height: 116px;
    border-radius: 14px;
    border: 1px solid #ece8ff;
    background: linear-gradient(180deg, #f5f2ff 0%, #efebff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.technology-page .technology-asr-title {
    color: #5f49e8;
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 700;
}

body.technology-page .technology-asr-modes {
    display: flex;
    gap: 0.28rem;
}

body.technology-page .technology-asr-mode {
    min-width: 40px;
    height: 24px;
    border-radius: 7px;
    border: 1px solid #ece8ff;
    background: #f8f6ff;
    color: #5c658c;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.45rem;
}

body.technology-page .technology-asr-mode.active {
    border-color: #6f50f5;
    background: linear-gradient(180deg, #7d61fb 0%, #663ff0 100%);
    color: #ffffff;
}

body.technology-page .technology-note {
    width: 68px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e1e7fb;
    background: #f8faff;
}

body.technology-page .technology-step-visual.cards {
    gap: 0.5rem;
}

body.technology-page .technology-mini-card {
    width: 74px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e4e8fa;
    background: linear-gradient(180deg, #fafbff 0%, #f2f6ff 100%);
    object-fit: contain;
    padding: 7px;
}

body.technology-page .footer {
    margin-top: 4rem;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

body.technology-page .footer-section h4 {
    color: #334155;
}

body.technology-page .footer-section a,
body.technology-page .footer-bottom,
body.technology-page .footer-section p {
    color: #64748b;
}

@media (max-width: 760px) {
    body.technology-page .technology-flow::before {
        left: 12px;
    }

    body.technology-page .technology-step-card {
        grid-template-columns: 24px 1fr;
        gap: 0.6rem;
    }

    body.technology-page .technology-step-dot {
        margin-left: 4px;
    }

    body.technology-page .technology-step-body {
        flex-direction: column;
        align-items: flex-start;
    }

    body.technology-page .technology-step-body.reverse {
        flex-direction: column;
    }

    body.technology-page .technology-step2-card .technology-step-body {
        grid-template-columns: 1fr;
    }

    body.technology-page .technology-step2-card .technology-step-visual,
    body.technology-page .technology-step2-card .technology-step-main {
        grid-column: auto;
    }

    body.technology-page .technology-step-visual {
        width: 100%;
        flex: 1 1 auto;
    }

    body.technology-page .technology-step-body h3 {
        font-size: 1.25rem;
    }

    body.technology-page .technology-step-head h3 {
        font-size: 1.25rem;
    }
}

/* ===== FAQ ===== */
body.faq-page {
    background: #f6f9ff;
    color: #0f172a;
}

body.faq-page .footer {
    margin-top: 0;
}

body.faq-page .faq-hero {
    background:
        radial-gradient(1200px 360px at 70% 10%, rgba(46, 199, 255, 0.18), transparent 60%),
        radial-gradient(900px 360px at 85% 70%, rgba(138, 91, 255, 0.24), transparent 60%),
        linear-gradient(180deg, #030b1a 0%, #081a3a 100%);
    padding: 5.2rem 2rem 1.8rem;
    border-bottom: 1px solid rgba(50, 121, 255, 0.2);
}

body.faq-page .faq-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 1.5rem;
    align-items: center;
}

body.faq-page .faq-hero-copy h1 {
    margin: 0 0 0.7rem;
    font-size: clamp(2.2rem, 4.2vw, 3.35rem);
    line-height: 1.06;
    color: #f6f8ff;
    max-width: 700px;
}

body.faq-page .faq-hero-copy h1 span {
    display: inline-block;
    max-width: none;
}

body.faq-page .faq-title-accent {
    margin-left: 0.2rem;
    background: linear-gradient(95deg, #38a8ff 0%, #6d8bff 52%, #8b5fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.faq-page .faq-hero-copy p {
    margin: 0 0 1.2rem;
    max-width: 520px;
    color: #d4deef;
    font-size: 1.15rem;
    line-height: 1.45;
}

body.faq-page .faq-search {
    max-width: 560px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(154, 174, 226, 0.35);
    border-radius: 14px;
    background: rgba(7, 17, 38, 0.55);
    padding: 0.9rem 1rem;
}

body.faq-page .faq-search i {
    color: #9aa8cb;
    font-size: 0.95rem;
}

body.faq-page .faq-search input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    color: #ecf2ff;
    font-size: 1.01rem;
}

body.faq-page .faq-search input::placeholder {
    color: #9aa8cb;
}

body.faq-page .faq-hero-visual {
    justify-self: end;
    width: min(360px, 100%);
    opacity: 0.95;
}

body.faq-page .faq-hero-visual svg {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(32, 108, 255, 0.22));
}

body.faq-page .faq-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.7rem 2rem 2.4rem;
}

body.faq-page .faq-board {
    display: grid;
    gap: 1rem;
}

body.faq-page .faq-group {
    background: #ffffff;
    border: 1px solid #e6edf9;
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

body.faq-page .faq-group-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 28px;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem 1.15rem;
    cursor: pointer;
}

body.faq-page .faq-group-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}

body.faq-page .faq-group-icon--general { background: linear-gradient(135deg, #5f8bff, #8c5aff); font-size: 30px; }
body.faq-page .faq-group-icon--billing { background: linear-gradient(135deg, #24d08a, #4abf7a); }
body.faq-page .faq-group-icon--tech { background: linear-gradient(135deg, #4ea7ff, #2f82ff); }
body.faq-page .faq-group-icon--safe { background: linear-gradient(135deg, #ffb557, #ff8d3b); }
body.faq-page .faq-group-icon--help { background: linear-gradient(135deg, #ff72bc, #ff4ea2); }

body.faq-page .faq-group-head strong {
    display: block;
    color: #0b1f44;
    font-size: 1.35rem;
    line-height: 1.2;
}

body.faq-page .faq-group-head small {
    display: block;
    margin-top: 0.15rem;
    color: #6e7c9d;
    font-size: 0.9rem;
}

body.faq-page .faq-group-chevron {
    color: #7f8fb8;
    transition: transform 0.22s ease;
}

body.faq-page .faq-group.is-open .faq-group-chevron {
    transform: rotate(180deg);
}

body.faq-page .faq-group-body {
    display: none;
    padding: 0 1rem 1rem;
}

body.faq-page .faq-group.is-open .faq-group-body {
    display: block;
}

body.faq-page .faq-item {
    border: 1px solid #e7eefb;
    border-radius: 12px;
    background: #fbfdff;
    margin-top: 0.75rem;
    overflow: hidden;
}

body.faq-page .faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    color: #132a56;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

body.faq-page .faq-question::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #7790c8;
}

body.faq-page .faq-item.is-open .faq-question::after {
    transform: rotate(180deg);
}

body.faq-page .faq-answer {
    display: none;
    border-top: 1px solid #e7eefb;
    padding: 0.8rem 1rem 1rem;
    color: #516287;
    font-size: 0.94rem;
    line-height: 1.6;
}

body.faq-page .faq-item.is-open .faq-answer {
    display: block;
}

body.faq-page .faq-support-cta {
    margin-top: 1rem;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    background: linear-gradient(95deg, #0b92ff 0%, #5868ff 50%, #8b56ff 100%);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    color: #fff;
}

body.faq-page .faq-support-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

body.faq-page .faq-support-copy h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #fff;
}

body.faq-page .faq-support-copy p {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
}

body.faq-page .faq-support-btn {
    background: #fff;
    color: #263fa1;
    text-decoration: none;
    border-radius: 12px;
    padding: 0.72rem 1.1rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    transition: transform 0.2s ease;
}

body.faq-page .faq-support-btn:hover {
    transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--card-bg);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-calc-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    body.faq-page .faq-hero {
        padding: 4.7rem 1rem 1.4rem;
    }

    body.faq-page .faq-hero-inner {
        grid-template-columns: 1fr;
    }

    body.faq-page .faq-hero-copy h1 {
        font-size: 2rem;
    }

    body.faq-page .faq-hero-copy p {
        font-size: 1rem;
    }

    body.faq-page .faq-hero-visual {
        justify-self: start;
        max-width: 260px;
    }

    body.faq-page .faq-main {
        padding: 1rem 1rem 1.6rem;
    }

    body.faq-page .faq-group-toggle {
        grid-template-columns: 38px minmax(0, 1fr) 24px;
        gap: 0.65rem;
        padding: 0.82rem 0.8rem;
    }

    body.faq-page .faq-group-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 0.92rem;
    }

    body.faq-page .faq-group-head strong {
        font-size: 1.02rem;
    }

    body.faq-page .faq-group-head small {
        font-size: 0.8rem;
    }

    body.faq-page .faq-support-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body.faq-page .faq-support-icon {
        margin: 0 auto;
    }

    body.faq-page .faq-support-btn {
        width: 100%;
        text-align: center;
    }
}