

p {
    font-family: 'Ubuntu';
}
/* ===== КНОПКА "СКАЧАТЬ" В НАВИГАЦИИ С ОС ===== */
.nav-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 5px;
    border: 1px solid rgba(20, 184, 166, 0.35);
    background: rgba(20, 184, 166, 0.05);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.nav-download-btn .divider {
    color: rgba(20, 184, 166, 0.3);
    font-size: 12px;
    margin: 0 2px;
}

.nav-download-btn:hover .divider {
    color: rgba(255, 255, 255, 0.3);
}



.nav-download-btn .os-icons {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 400;
    font-family: monospace;
}

.nav-download-btn .os-icons .os-label {
    font-size: 10px;
    opacity: 0.8;
}

.nav-download-btn .os-icons .os-sep {
    opacity: 0.4;
    font-size: 10px;
}

.nav-download-btn .windows-icon,
.nav-download-btn .apple-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #fff;
}

.nav-download-btn .divider {
    color: rgba(20, 184, 166, 0.3);
    font-size: 14px;
    margin: 0 4px;
}


.nav-download-btn:hover .os-label {
    color: rgba(255, 255, 255, 0.8);
}

.nav-download-btn:hover .os-sep {
    color: rgba(255, 255, 255, 0.3);
}

        /* ===== ПЕРЕМЕННЫЕ ===== */
        :root {
            --bg-primary: #0a0f1a;
            --bg-secondary: #111827;
            --bg-tertiary: #1a2332;
            --text-primary: #f1f5f9;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --border: #1e293b;
            --teal-primary: #14b8a6;
            --teal-light: #5eead4;
            --success: #22c55e;
        }

        /* ===== БАЗОВЫЕ СТИЛИ ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== УТИЛИТЫ ===== */
        .font-ubuntu {
            font-family: 'Ubuntu', sans-serif;
        }
        .font-mono {
            font-family: 'JetBrains Mono', monospace;
        }
        .text-teal {
            color: var(--teal-primary);
        }
        .text-muted {
            color: var(--text-muted);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* ===== ХЕДЕР ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        .header.scrolled {
            padding: 12px 0;
            background: rgba(10, 15, 26, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(30, 41, 59, 0.5);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(20, 184, 166, 0.1);
            border: 1px solid rgba(20, 184, 166, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .logo-icon svg {
            color: var(--teal-primary);
        }
        .logo-text {
            font-size: 20px;
            font-weight: 700;
            font-family: 'Ubuntu', sans-serif;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }
        .nav {
            display: none;
            align-items: center;
            gap: 32px;
        }
        .nav a {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav a:hover {
            color: var(--teal-primary);
        }
        .nav .btn-download {
            padding: 10px 20px;
            border-radius: 12px;
            border: 1px solid rgba(20, 184, 166, 0.4);
            color: var(--teal-primary);
            background: transparent;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav .btn-download:hover {
            background: linear-gradient(135deg, #14b8a6, #06b6d4);
            color: white;
            border-color: transparent;
        }
        .nav .btn-download svg {
            width: 17px;
            height: 17px;
        }
        .mobile-menu-btn {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: 1px solid rgba(30, 41, 59, 0.6);
            background: rgba(17, 24, 39, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.2s;
        }
        .mobile-menu-btn:hover {
            color: var(--teal-primary);
            border-color: rgba(20, 184, 166, 0.5);
        }

        @media (min-width: 1024px) {
            .nav {
                display: flex;
            }
            .mobile-menu-btn {
                display: none;
            }
        }

        /* ===== ГЕРОЙ ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 100px;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(20, 184, 166, 0.08), transparent);
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            background: linear-gradient(90deg, var(--bg-primary) 0%, rgba(10, 15, 26, 0.85) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 672px;
            margin: 0 auto;
            text-align: center;
            padding: 20px 0;
        }
        @media (min-width: 640px) {
            .hero-content {
                margin: 0;
                text-align: left;
            }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 500;
            background: rgba(20, 184, 166, 0.1);
            color: var(--teal-primary);
            border: 1px solid rgba(20, 184, 166, 0.2);
            font-family: 'Ubuntu';
        }
        @media (min-width: 640px) {
            .hero-badge {
                font-size: 16px;
                padding: 10px 16px;
            }
        }
        .hero-title {
            margin-top: 16px;
            font-size: 1.85rem;
            line-height: 1.15;
            font-weight: 800;
            font-family: 'Ubuntu', sans-serif;
            letter-spacing: -0.02em;
        }
        @media (min-width: 640px) {
            .hero-title {
                font-size: 2.4rem;
            }
        }
        @media (min-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
        }
        @media (min-width: 1024px) {
            .hero-title {
                font-size: 4rem;
            }
        }
        .hero-title span {
            color: var(--teal-primary);
        }
        .hero-features {
            margin-top: 24px;
            max-width: 576px;
            font-size: 15px;
            font-family:  monospace;
        }
        .hero-features ul {
            list-style: none;
            margin-top: 32px;
            text-align: left;
        }
        .hero-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }
        .hero-features li svg {
            flex-shrink: 0;
            margin-top: 2px;
            color: var(--teal-primary);
        }

        .hero-tags {
            margin-top: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px 12px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--text-muted);
        }
        @media (min-width: 640px) {
            .hero-tags {
                justify-content: flex-start;
            }
        }
        .hero-tags span.sep {
            color: var(--border);
        }

        /* ===== КНОПКИ СКАЧИВАНИЯ В ГЕРОЕ ===== */
        .hero-download-wrapper {
            display: none;
            flex-direction: row;
            gap: 16px;
            margin-top: 32px;
            margin-bottom: 32px;
            width: 100%;
        }

        @media (min-width: 768px) {
            .hero-download-wrapper {
                display: flex !important;
            }
        }

        .hero-download-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 24px;
            border-radius: 12px;
            font-family: 'Ubuntu', sans-serif;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s;
            flex: 1;
            border: 1px solid transparent;
            background: linear-gradient(135deg, #0a0f1a, #111827);
            box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
            color: var(--text-primary);
            cursor: pointer;
        }
        .hero-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.9);
        }
        .hero-download-btn svg {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
        }
        .hero-download-btn .badge {
            font-size: 10px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 9999px;
            font-family: 'JetBrains Mono', monospace;
            background: rgba(20, 184, 166, 0.15);
            color: var(--teal-primary);
            border: 1px solid rgba(20, 184, 166, 0.2);
        }
        .hero-download-btn.windows {
            color: #a2aaad;
            white-space: nowrap;
        }
        .hero-download-btn.windows:hover {
            background: linear-gradient(135deg, #0a0f1a, #004e8c);
            box-shadow: 0 0 30px rgba(0, 164, 239, 0.15);
        }
        .hero-download-btn.windows .badge {
            background: rgba(0, 164, 239, 0.15);
            color:  #a2aaad;
            border-color: rgba(0, 164, 239, 0.2);
        }
        .hero-download-btn.macos {
            color: #a2aaad;
            white-space: nowrap;
        }
        .hero-download-btn.macos:hover {
            background: linear-gradient(135deg, #0a0f1a, #2c2c2e);
            box-shadow: 0 0 30px rgba(162, 170, 173, 0.15);
        }
        .hero-download-btn.macos .badge {
            background: rgba(162, 170, 173, 0.15);
            color: #a2aaad;
            border-color: rgba(162, 170, 173, 0.2);
        }

        /* ===== СЕКЦИИ ===== */
        section {
            padding: 96px 0;
        }
        @media (min-width: 768px) {
            section {
                padding: 144px 0;
            }
        }

        .section-title {
            text-align: center;
            margin-bottom: 64px;
        }
        .section-title h2 {
            font-size: 1.875rem;
            font-weight: 800;
            font-family: 'Ubuntu', sans-serif;
            letter-spacing: -0.02em;
        }
        @media (min-width: 768px) {
            .section-title h2 {
                font-size: 3rem;
            }
        }
        .section-title p {
            margin-top: 16px;
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 672px;
            margin-left: auto;
            margin-right: auto;
        }

        .grid-2 {
            display: grid;
            gap: 24px;
        }
        .grid-3 {
            display: grid;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .grid-2 {
                grid-template-columns: 1fr 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }

        /* ===== КАРТОЧКИ ===== */
        .card {
            padding: 24px;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: var(--bg-secondary);
            transition: all 0.3s;
            height: 100%;
        }
        .card:hover {
            border-color: rgba(20, 184, 166, 0.25);
        }

        .card-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .card-feature .icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(20, 184, 166, 0.1);
            border: 1px solid rgba(20, 184, 166, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal-primary);
            flex-shrink: 0;
        }
        .card-feature .icon svg {
            width: 24px;
            height: 24px;
        }
        .card-feature h3 {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            font-family: 'Ubuntu';
        }
        .card-feature p {
            margin-top: 4px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== РЕШЕНИЯ ===== */
        .solutions-grid {
            display: grid;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .solutions-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .solution-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: var(--bg-secondary);
            transition: all 0.3s;
        }

        .solution-card:hover {
            border-color: rgba(20, 184, 166, 0.25);
        }

        .solution-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 16px;
        }

        .solution-card-top .icon {
            flex-shrink: 0;
        }

        .solution-card h3 {
            font-size: 24px;
            font-weight: 700;
            font-family: 'Ubuntu', sans-serif;
            margin-bottom: 8px;
        }

        .solution-card p {
            font-size: 14px;
            line-height: 1.6;
        }

        .solution-card p:first-of-type {
            color: var(--text-secondary);
        }
        .solution-card p:last-of-type {
            color: var(--text-muted);
        }

        .price {
            display: inline-flex;
            padding: 6px 16px;
            border-radius: 9999px;
            border: 1px solid rgba(20, 184, 166, 0.25);
            background: rgba(20, 184, 166, 0.1);
            font-size: 14px;
            font-weight: 500;
            color: var(--teal-primary);
            font-family: 'Alef' , 'Ubuntu';
            flex-shrink: 0;
            white-space: nowrap;
        }
        .price-plus {
            background: rgba(94, 234, 212, 0.15);
            color: var(--teal-light);
            border-color: rgba(94, 234, 212, 0.25);
            font-family: 'Alef', 'Ubuntu';
        }

        /* ===== ТАБЛИЦА ===== */
        .table-wrap {
            border-radius: 16px;
            border: 1px solid var(--border);
            background: var(--bg-secondary);
            overflow: hidden;
            overflow-x: auto;
        }
        .table-wrap table {
            min-width: 1080px;
            width: 100%;
            border-collapse: collapse;
        }
        .table-wrap th {
            padding: 20px 24px;
            text-align: left;
            font-size: 14px;
            font-weight: 600;
            background: linear-gradient(180deg, rgba(20, 184, 166, 0.08), rgba(17, 24, 39, 0.92));
        }
        .table-wrap th:not(:first-child) {
            text-align: center;
        }
        .table-wrap td {
            padding: 12px 24px;
            font-size: 14px;
            color: var(--text-secondary);
            border-top: 1px solid var(--border);
        }
        .table-wrap td:first-child {
            font-weight: 500;
            color: var(--text-primary);
        }
        .table-wrap .category td {
            font-weight: 600;
            color: var(--text-primary);
            background: rgba(17, 24, 39, 0.5);
        }
        .table-wrap .category td:first-child {
            font-size: 15px;
        }
        .table-wrap .sub td {
            padding-left: 48px;
            font-size: 13px;
            color: var(--text-muted);
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .table-wrap .sub td:first-child {
            font-weight: 400;
            color: var(--text-muted);
        }
        .check-cell {
            text-align: center;
            vertical-align: middle;
        }
        .check {
            color: var(--success);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .minus {
            color: var(--text-muted);
            font-size: 14px;
        }
        .table-wrap tr:not(.category):hover {
            background: rgba(17, 24, 39, 0.7);
        }
        .table-wrap tr.category:not(:first-child) td {
            border-top: 2px solid var(--border);
        }

        /* ===== ПРЕИМУЩЕСТВА ===== */
        .advantage-card {
            padding: 24px;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: var(--bg-secondary);
            height: 100%;
        }
        .advantage-card .icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(20, 184, 166, 0.1);
            border: 1px solid rgba(20, 184, 166, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal-primary);
        }
        .advantage-card .icon svg {
            width: 20px;
            height: 20px;
        }
        .advantage-card p {
            margin-top: 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== СКАЧИВАНИЕ (КАРТОЧКИ) ===== */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

        .download-card {
            position: relative;
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: var(--bg-secondary);
            text-align: center;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }

        .download-card:hover {
            border-color: rgba(20, 184, 166, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4);
        }

        .download-card-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: rgba(20, 184, 166, 0.1);
            border: 1px solid rgba(20, 184, 166, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            flex-shrink: 0;
        }

        .download-card-icon svg {
            color: var(--teal-primary);
        }

        .download-card h3 {
            font-size: 24px;
            font-weight: 700;
            font-family: 'Ubuntu', sans-serif;
            margin-bottom: 8px;
        }

        .download-description {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            font-family: 'JetBrains Mono', monospace;
            flex-grow: 1;
            max-width: 280px;
        }

        .download-btn-wrapper {
            width: 100%;
            margin-top: auto;
            padding-top: 8px;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 12px;
            font-family: 'Ubuntu', sans-serif;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s;
            background: linear-gradient(135deg, #0a0f1a, #111827);
            color: var(--text-primary);
            border: 1px solid transparent;
            box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.4);
            cursor: pointer;
            width: 100%;
            justify-content: center;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.6);
        }

        .download-btn.windows {
            color:  #a2aaad;
        }
        .download-btn.windows:hover {
            background: linear-gradient(135deg, #0a0f1a, #004e8c);
            box-shadow: 0 0 30px rgba(0, 164, 239, 0.15);
        }

        .download-btn.macos {
            color: #a2aaad;
        }
        .download-btn.macos:hover {
            background: linear-gradient(135deg, #0a0f1a, #2c2c2e);
            box-shadow: 0 0 30px rgba(162, 170, 173, 0.15);
        }

        .download-btn svg {
            flex-shrink: 0;
        }

        /* ===== ОТЗЫВЫ ===== */
        .case-card {
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: var(--bg-secondary);
            height: 100%;
            transition: border-color 0.3s;
        }
        .case-card:hover {
            border-color: rgba(20, 184, 166, 0.25);
        }
        .case-card .top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
        }
        .case-card .top .icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(20, 184, 166, 0.1);
            border: 1px solid rgba(20, 184, 166, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal-primary);
            flex-shrink: 0;
        }
        .case-card .top .icon svg {
            width: 22px;
            height: 22px;
        }
        .case-card .label {
            padding: 4px 12px;
            border-radius: 9999px;
            font-size: 12px;
            font-weight: 500;
            background: rgba(20, 184, 166, 0.1);
            color: var(--teal-primary);
            border: 1px solid rgba(20, 184, 166, 0.2);
        }
        .case-card .label-plus {
            background: rgba(94, 234, 212, 0.15);
            color: var(--teal-light);
            border-color: rgba(94, 234, 212, 0.25);
        }
        .case-card .audience {
            margin-top: 24px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--text-muted);
        }
        .case-card h3 {
            margin-top: 12px;
            font-size: 24px;
            font-weight: 700;
            font-family: 'Ubuntu', sans-serif;
        }
        .case-card .quote-box {
            margin-top: 24px;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: rgba(17, 24, 39, 0.35);
        }
        .case-card .quote-box svg {
            color: rgba(20, 184, 166, 0.6);
        }
        .case-card .quote-box p {
            margin-top: 12px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== FAQ ===== */
        .faq-item {
            border-bottom: 1px solid var(--border);
        }
        .faq-item button {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            text-align: left;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
            transition: color 0.2s;
        }
        .faq-item button:hover {
            color: var(--teal-primary);
        }
        .faq-item button .icon {
            color: var(--text-muted);
            transition: color 0.2s;
            flex-shrink: 0;
            font-size: 20px;
        }
        .faq-item button:hover .icon {
            color: var(--teal-primary);
        }
        .faq-item .answer {
            padding-bottom: 24px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: none;
        }
        .faq-item .answer.open {
            display: block;
        }

        /* ===== ФУТЕР ===== */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 48px 0;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .footer-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .footer-top .logo {
            gap: 8px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 1.5fr 2fr;
                gap: 48px;
                margin-top: 32px;
            }
        }
        .footer-info p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .footer-info .block {
            margin-top: 16px;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: rgba(17, 24, 39, 0.35);
        }
        .footer-info .block p {
            color: var(--text-primary);
            font-weight: 500;
        }
        .footer-info .block .small {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 14px;
        }
        .footer-info .block a {
            display: block;
            margin-top: 4px;
            font-size: 14px;
            color: var(--text-muted);
            transition: color 0.2s;
        }
        .footer-info .block a:hover {
            color: var(--teal-primary);
        }
        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            font-family: 'Ubuntu';
        }
        @media (min-width: 768px) {
            .footer-links {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        .footer-links h4 {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            font-size: 14px;
            color: var(--text-muted);
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--teal-primary);
        }
        .footer-bottom {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
            text-align: center;
        }
        @media (min-width: 1024px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }
        .footer-bottom p {
            font-size: 14px;
            color: var(--text-muted);
        }
        .footer-bottom .tags {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--text-muted);
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-bottom .tags span.sep {
            color: var(--border);
        }

        /* ===== СТРЕЛКА ВНИЗ ===== */
        .scroll-down {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            color: var(--text-muted);
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(8px);
            }
        }

        /* ===== АНИМАЦИИ ===== */


        /* ===== СКРОЛЛБАР ===== */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--teal-primary);
        }

        /* ===== МЕДИА ===== */
        @media (max-width: 640px) {
            .hero-title {
                font-size: 1.85rem;
            }
            .container {
                padding: 0 16px;
            }
            section {
                padding: 64px 0;
            }
            .section-title h2 {
                font-size: 1.5rem;
            }
            .table-wrap table {
                min-width: 800px;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-features {
                font-size: 14px;
            }
        }

        /* Плавное появление попапа */
#downloadPopup {
    opacity: 0;
    transition: opacity 0.3s ease;
}
#downloadPopup[style*="display: flex"] {
    opacity: 1;
}

/* Пульсация прогресс-бара */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
#downloadPopup .downloading #progressBar {
    animation: pulse 1s infinite;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-primary), var(--teal-light));
    opacity: 0;
    transition: opacity 0.3s;
}
/* 
.service-card:hover::before {
    opacity: 1;
} */

.service-card .badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-popular {
    background: rgba(245, 158, 11, 0.15);
    color: var(--price-highlight);
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.badge-premium {
    background: rgba(20, 184, 166, 0.15);
    color: var(--teal-primary);
    border: 1px solid rgba(20, 184, 166, 0.3);
}
.badge-express {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.badge-standard {
    background: rgba(148, 163, 184, 0.15);
    color: var(--text-secondary);
    border: 1px solid rgba(148, 163, 184, 0.2);
}
.badge-business {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}
.badge-law {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-primary);
    font-size: 24px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 10px;
}

.service-card .description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0;
    color: var(--text-secondary);
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
}

.service-features li i {
    color: var(--teal-primary);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.service-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.service-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 11px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    color: var(--teal-primary);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Ubuntu';
    flex-wrap: wrap;
}

.service-price .from {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'Ubuntu';
}

.service-price .price-number {
    font-family: 'Alef';
    font-weight: 600;
    font-size: 20px;
}

.service-price .currency {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'Ubuntu', sans-serif;
}

.service-price .price-range-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.service-price .price-range-item .from {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    font-family: 'Ubuntu', sans-serif;
}

.service-price .price-range-item .price-number {
    font-family: 'Alef', 'Ubuntu', monospace;
    font-weight: 700;
    font-size: 18px;
}

.service-price .price-range-item .currency {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    font-family: 'Ubuntu', sans-serif;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 12px;
    border: 1px solid var(--teal-primary);
    color: var(--teal-primary);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    flex-shrink: 0;
}

.service-btn:hover {
    background: var(--teal-primary);
    color: white;
}

.service-btn i {
    transition: transform 0.3s;
}

.service-btn:hover i {
    transform: translateX(4px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--teal-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-primary);
    font-size: 24px;
    margin-bottom: 16px;
}

.modal h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 6px;
}

.modal .modal-sub {
    color: var(--text-secondary);
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 24px;
}

.modal .modal-sub .service-name-display {
    color: var(--teal-primary);
    font-weight: 600;
}

.modal .form-group {
    margin-bottom: 16px;
}

.modal .form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
}

.modal .form-group input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    transition: border-color 0.2s;
    outline: none;
}

.modal .form-group input:focus {
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.modal .form-group input::placeholder {
    color: var(--text-muted);
}

.modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.modal .submit-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: var(--teal-primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.modal .submit-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.modal .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .modal {
        padding: 28px 20px;
    }
    .modal .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== NAV LICENSE BUTTON ===== */
.nav-license-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 5px;
    background: var(--teal-primary);
    color: white !important;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.nav-license-btn:hover {

    transform: translateY(-2px);
    color: white !important;
}

.nav-license-btn svg {
    flex-shrink: 0;
    stroke: white;
}

.nav-license-btn span {
    color: white !important;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .nav-license-btn {
        padding: 6px 14px;
        font-size: 13px;
    }
    .nav-license-btn svg {
        width: 14px;
        height: 14px;
    }
}

.hint-text {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #888;
}

.hint-text.error {
    color: #ef4444;
}

.hint-text.success {
    color: #22c55e;
}