/*
 * 369 SeCuRe mobile centering
 * Влияет только на экраны шириной до 768px.
 */

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    body {
        box-sizing: border-box;
        padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    }

    /*
     * Главные кнопки:
     * «Начать бесплатно» и «Скачать приложения».
     */
    .v3m-main-action {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: min(374px, calc(100vw - 32px)) !important;
        max-width: calc(100vw - 32px) !important;

        margin-left: auto !important;
        margin-right: auto !important;

        box-sizing: border-box !important;
        text-align: center !important;
    }

    /*
     * Карточки преимуществ:
     * Скорость / Шифрование / Маршрутизация.
     */
    .v3m-feature-card {
        display: flex !important;

        width: min(374px, calc(100vw - 32px)) !important;
        max-width: calc(100vw - 32px) !important;

        margin-left: auto !important;
        margin-right: auto !important;

        box-sizing: border-box !important;
    }

    /*
     * Нижняя панель:
     * ЛК / Telegram / донат.
     *
     * Нижнюю координату не меняем —
     * только центрируем по горизонтали.
     */
    .v3m-bottom-dock {
        left: 50% !important;
        right: auto !important;

        transform: translateX(-50%) !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: max-content !important;
        max-width: calc(100vw - 24px) !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        gap: 10px !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
    }

    .v3m-bottom-dock > * {
        flex-shrink: 0 !important;
    }
}
