@charset "UTF-8";

        li {
            margin-bottom: 10px;
        }

        a {
            text-decoration: none;
            color: #333;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            transition: color 0.2s ease;
        }

        /* Цвет иконки Telegram при наведении */
        a:hover {
            color: #24A1DE;
        }

        /* Специфичный цвет для иконки почты при наведении */
        a[href^="mailto:"]:hover {
            color: #e44d26;
        }

        /* **************** */

        /* Базовые стили списка */
        .social-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .social-list li {
            margin-bottom: 12px;
        }

        /* Настройка ссылок */
        .social-list a {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            /* Расстояние между SVG и текстом */
            text-decoration: none;
            font-family: sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: #4A5568;
            /* Спокойный серый цвет текста */
            transition: color 0.2s ease;
        }

        /* Общие настройки для всех SVG-иконок */
        .social-list .icon {
            width: 24px;
            height: 24px;
            fill: #A0AEC0;
            /* Исходный блеклый цвет иконок */
            transition: fill 0.2s ease;
        }

        /* Эффект наведения для Telegram (Ссылки подсвечиваются фирменным цветом) */
        .social-list a:hover {
            color: #0088cc;
        }

        .social-list a:hover .icon {
            fill: #0088cc;
            /* Иконка красится вместе с текстом */
        }

        /* Эффект наведения конкретно для почты */
        .social-list a.mail-link:hover {
            color: #E24A3D;
            /* Красный цвет для почты */
        }

        .social-list a.mail-link:hover .icon {
            fill: #E24A3D;
        }


        :root {
            --bs-primary: #1b4d3e;
            --bs-primary-rgb: 27, 77, 62;
            --bs-body-bg: #e2f0e8;
            --bs-body-color: #212529;
            --bs-navbar-color: #ffffff;
            --bs-dark: #13372c;
            --bs-dark-rgb: 19, 55, 44;
        }

        section {
            padding-top: 4rem;
            padding-bottom: 4rem;
            background-color: #f8f9fa;

        }

        /* Плавный эффект наведения для карточек-ссылок */
        .transition-card {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .transition-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08) !important;
        }

        /* Общая обёртка: чекбоксы и кнопка на одной оси по центру */
        .hero-actions {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 2rem;
        }

        .hero-actions-inner {
            width: min(28rem, calc(100% - 2rem));
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2.5rem;
        }

        .hero-actions-inner .trial-btn-wrap {
            text-align: center;
        }

        header .consent-block {
            margin: 0;
            padding: 0;
            text-align: left;
            box-sizing: border-box;
        }

        header .consent-block .form-check {
            display: flex;
            align-items: flex-start;
            gap: 0.625rem;
            padding-left: 0 !important;
            margin-bottom: 0.3rem;
            min-height: 0;
        }

        header .consent-block .form-check:last-child {
            margin-bottom: 0;
        }

        header .consent-block .form-check-label {
            font-size: 0.95rem;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
        }

        header .consent-block .form-check-input {
            flex-shrink: 0;
            float: none !important;
            margin-left: 0 !important;
            margin-top: 0.2em !important;
            cursor: pointer;
            position: static;
        }

        .consent-block .form-check-input:focus {
            border-color: #fff;
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }

        header .consent-block a {
            display: inline;
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        header .consent-block a:hover {
            color: #e2f0e8;
        }

        #trial-btn.disabled {
            opacity: 0.55;
            pointer-events: none;
            cursor: not-allowed;
        }

        #tgproxy-qr-box {
            margin: 0 auto;
            width: 100%;
        }

        #tgproxy-qr-panel {
            width: min(100%, 512px);
            aspect-ratio: 1 / 1;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-sizing: border-box;
        }

        #tgproxy-qr-panel img {
            width: min(64vw, 340px);
            height: auto;
            max-height: 100%;
            object-fit: contain;
        }

        @media (max-width: 576px) {
            #tgproxy-qr-panel {
                width: 100%;
                max-width: 100%;
                padding: 1rem !important;
            }

            #tgproxy-qr-panel img {
                width: 62vw;
                max-width: 240px;
            }
        }
