/* ========== CSS ПЕРЕМЕННЫЕ ========== */
    :root {
        /* ---------- ЦВЕТА ---------- */
        --color-dark: rgba(43, 43, 44, 1);
        --color-black: rgba(15, 18, 23, 1);
        --color-white: rgba(255, 255, 255, 1);
        --color-green-primary: rgba(76, 197, 116, 1);
        --color-green-button: rgba(85, 205, 108, 1);
        --color-green-button-light: rgba(97, 215, 119, 1);
        --color-green-dark: rgba(61, 158, 93, 1);
        --color-green-card-bg: rgba(183, 232, 199, 1);
        --color-gray-text: rgba(85, 86, 88, 1);
        --color-gray-text-secondary: #555658;
        --color-gray-subtitle: rgba(128, 130, 132, 1);
        --color-gray-bg: rgba(238, 239, 241, 1);
        --color-gray-icon: rgba(170, 173, 176, 0.4);
        --color-gray-line: rgba(230, 232, 234, 1);
        --color-gray-border: rgba(213, 216, 220, 1);
        --color-blue-dark: rgba(74, 90, 114, 1);

        /* ---------- РАЗМЕРЫ И ОТСТУПЫ ---------- */
        --container-width: 1200px;
        --section-padding: 80px 30px;
        --padding-tablet: 60px 30px;
        --padding-mobile: 60px 15px 60px 15px;
        --padding-card: 30px 20px;
        --padding-horizontal: 0 20px;
        --padding-small: 15px;
        --margin-large: 50px;
        --margin-medium: 30px;
        --gap-small: 20px;
        --border-radius-sm: 10px;
        --border-radius-md: 15px;
        --border-radius-btn: 119px;

        /* ---------- ТИПОГРАФИКА ---------- */
        --font-family-primary: 'Open Sans', sans-serif;
        --font-family-secondary: 'Inter', sans-serif;
        --font-size-h1: 40px;
        --font-size-h2: 20px;
        --font-size-text: 16px;
        --font-size-small: 14px;
        --font-size-xs: 11px;
        --font-size-mobile: 12px;
        --font-size-large: 50px;
        --font-size-medium: 18px;
        --font-size-tablet-h1: 27px;
        --font-weight-semibold: 600;
        --line-height: 1.4;

        /* ---------- СПЕЦИФИЧЕСКИЕ ЗНАЧЕНИЯ ---------- */
        --max-width-text: 741px;
    }
    h1, h2, h3 {
        font-family: inherit;
        margin-bottom: 0;
    }
    /* ========== АНИМАЦИИ ПОЯВЛЕНИЯ ЭЛЕМЕНТОВ ========== */

    /* Базовые стили для элементов, которые появляются снизу вверх */
    .fade-in-up {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
    }

    /* Класс для активации анимации */
    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Задержки для последовательного появления элементов */
    .fade-in-up.delay-1 { transition-delay: 0.1s; }
    .fade-in-up.delay-2 { transition-delay: 0.2s; }
    .fade-in-up.delay-3 { transition-delay: 0.3s; }
    .fade-in-up.delay-4 { transition-delay: 0.4s; }
    .fade-in-up.delay-5 { transition-delay: 0.5s; }
    .fade-in-up.delay-6 { transition-delay: 0.6s; }
    .fade-in-up.delay-7 { transition-delay: 0.7s; }
    .fade-in-up.delay-8 { transition-delay: 0.8s; }

    /* Задержки для карточек с большей задержкой */
    .fade-in-up.card-delay-1 { transition-delay: 0.2s; }
    .fade-in-up.card-delay-2 { transition-delay: 0.4s; }
    .fade-in-up.card-delay-3 { transition-delay: 0.6s; }
    .fade-in-up.card-delay-4 { transition-delay: 0.8s; }
    .fade-in-up.card-delay-5 { transition-delay: 1.0s; }
    .fade-in-up.card-delay-6 { transition-delay: 1.2s; }

    /* ========== БАЗОВЫЕ СТИЛИ ========== */

    /* Reset стили для всех элементов */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Основные стили HTML */
    html {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Основные стили Body */
    body {
        font-family: var(--font-family-primary);
        font-weight: 400;
        background-color: var(--color-white);
        line-height: var(--line-height);
        hyphens: none;
        word-break: keep-all;
        overflow-wrap: normal;
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }

    /* Контейнеры */
    .main-container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-container {
        max-width: var(--container-width);
        margin: 0 auto;
        width: 100%;
    }

    /* BLOCK2-GLAV: О нас */
    .block2-glav {
        background-color: var(--color-gray-bg);
        padding: var(--section-padding);
    }

    .block2-glav-h1 {
        font-weight: var(--font-weight-semibold);
        font-size: var(--font-size-h1);
        color: var(--color-dark);
        margin-bottom: var(--margin-large);
    }

    .block2-glav-text {
        font-size: var(--font-size-text);
        color: var(--color-gray-text);
    }

    /* BLOCK3-GLAV: Статистика */
    /* BLOCK4-GLAV: Этапы работ */
    .block4-glav {
        background-color: var(--color-gray-bg);
        padding: var(--section-padding);
    }

    /* Контейнеры карточек */
    .block4-glav-cards {
        display: flex;
        flex-direction: column;
        gap: 44px;
    }

    .block4-glav-cards-row {
        display: flex;
        gap: 37px;
    }

    .block4-glav-cards-row-top {
        justify-content: flex-end;
        gap: 24px;
    }

    .block4-glav-cards-group {
        display: flex;
        gap: 37px;
    }

    .block4-glav-cards-row-bottom {
        justify-content: flex-start;
    }

    /* Единый блок для десктопной и мобильной версий */
    .block4-glav-unified {
        display: flex;
        flex-direction: column;
        gap: 44px;
    }

    /* Десктопная версия: структура через классы, добавляемые JS */
    .block4-glav-unified.desktop-layout {
        display: flex;
        flex-direction: column;
        gap: 44px;
    }

    .block4-glav-unified.desktop-layout .block4-glav-cards-row-top {
        display: flex;
        justify-content: flex-end;
        gap: 24px;
    }

    .block4-glav-unified.desktop-layout .block4-glav-cards-group {
        display: flex;
        gap: 37px;
    }

    .block4-glav-unified.desktop-layout .block4-glav-cards-row-bottom {
        display: flex;
        justify-content: flex-start;
        gap: 37px;
    }

    /* Заголовок секции */
    .block4-glav-cards-empty {
        width: 389px;
        display: flex;
        align-items: center;
    }

    .block4-glav-cards-empty-h1 {
        font-size: var(--font-size-h1);
        font-weight: var(--font-weight-semibold);
        color: var(--color-dark);
        max-width: 389px;
        line-height: 1.2;
    }

    .block4-glav-cards-empty-h1-green {
        color: var(--color-green-primary);
    }

    /* Адаптивный текст для заголовка */
    .block4-text-auto {
        display: none;
    }

    .block4-text-sea {
        display: inline;
    }

    /* Карточки этапов */
    .block4-glav-kv {
        width: 375px;
        background-color: var(--color-white);
        border: 1px solid var(--color-gray-icon);
        border-radius: var(--border-radius-md);
        transition: background-color 0.3s ease;
    }

    .block4-glav-kv:hover {
        background-color: var(--color-blue-dark);
    }

    .block4-glav-kv-content {
        display: flex;
        flex-direction: column;
    }

    /* Заголовки карточек */
    .block4-glav-kv-h2 {
        font-size: var(--font-size-h2);
        font-weight: 400;
        color: var(--color-black);
        margin-bottom: 15px;
        padding: 0 26px;
        transition: color 0.3s ease;
    }

    .block4-glav-kv:hover .block4-glav-kv-h2 {
        color: var(--color-white);
    }

    .block4-glav-kv-h2-with-badge {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--padding-horizontal);
    }

    .block4-glav-cards-group .block4-glav-kv:nth-child(1) .block4-glav-kv-h2 { margin-top: 50px; }

    .block4-glav-kv:nth-child(2) .block4-glav-kv-h2 { margin-top: 42px; }
    .block4-glav-cards-row-bottom .block4-glav-kv:nth-child(1) .block4-glav-kv-h2 { margin-top: 50px; }
    .block4-glav-cards-row-bottom .block4-glav-kv:nth-child(2) .block4-glav-kv-h2 { margin-top: 42px; }
    .block4-glav-cards-row-bottom .block4-glav-kv:nth-child(3) .block4-glav-kv-h2 { margin-top: 50px; }

    /* Тексты карточек */
    .block4-glav-kv-text {
        font-size: var(--font-size-text);
        color: var(--color-gray-subtitle);
        line-height: 1.3;
        padding: 0px 20px 0px 20px;
        transition: color 0.3s ease;
        margin: 0;
    }

    .block4-glav-kv:hover .block4-glav-kv-text {
        color: var(--color-white);
    }


    .block4-glav-cards-group .block4-glav-kv:nth-child(1) .block4-glav-kv-text { margin-bottom: 33px; }
    .block4-glav-kv:nth-child(2) .block4-glav-kv-text { margin-bottom: 42px; }
    .block4-glav-cards-row-bottom .block4-glav-kv:nth-child(1) .block4-glav-kv-text { margin-bottom: 50px; }
    .block4-glav-cards-row-bottom .block4-glav-kv:nth-child(2) .block4-glav-kv-text { margin-bottom: 42px; }
    .block4-glav-cards-row-bottom .block4-glav-kv:nth-child(3) .block4-glav-kv-text { margin-bottom: 50px; }

    /* Бейджи с датами */
    .block4-glav-kv-badge {
        width: 102px;
        height: 42px;
        border: 1px solid var(--color-gray-icon);
        border-radius: var(--border-radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 10px 10px 10px;
        font-size: var(--font-size-small);
        color: var(--color-dark);
        flex-shrink: 0;
        background-color: transparent;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .block4-glav-kv:hover .block4-glav-kv-badge {
        background-color: var(--color-white);
        color: var(--color-dark);
    }

    .block4-glav-cards-row-bottom .block4-glav-kv:nth-child(2) .block4-glav-kv-badge {
        width: 94px;
    }

    .block4-glav-cards-row-bottom .block4-glav-kv:nth-child(3) .block4-glav-kv-badge {
        width: 90px;
    }

    /* Адаптивная версия */
    .block4-glav-adaptive {
        display: none;
    }

    /* Адаптивная структура для единого блока */
    .block4-glav-unified.adaptive-layout {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .block4-glav-unified.adaptive-layout .block4-glav-adaptive-row-1 {
        display: flex;
        gap: 20px;
    }

    .block4-glav-unified.adaptive-layout .block4-glav-adaptive-row-2 {
        display: flex;
        gap: 30px;
        justify-content: space-between;
    }

    .block4-glav-unified.adaptive-layout .block4-glav-adaptive-left,
    .block4-glav-unified.adaptive-layout .block4-glav-adaptive-right {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .block4-glav-unified.adaptive-layout .block4-glav-adaptive-right {
        max-width: 265px;
    }

    /* Мобильная структура */
    .block4-glav-unified.mobile-layout {
        display: flex;
        flex-direction: column;
        gap: var(--gap-small);
    }

    .block4-glav-unified.mobile-layout .block4-glav-adaptive-row-1 {
        flex-direction: column;
        gap: var(--gap-small);
    }

    .block4-glav-unified.mobile-layout .block4-glav-adaptive-row-2 {
        flex-direction: column;
        gap: var(--gap-small);
    }

    .block4-glav-unified.mobile-layout .block4-glav-adaptive-left,
    .block4-glav-unified.mobile-layout .block4-glav-adaptive-right {
        max-width: none;
        width: 100%;
        gap: var(--gap-small);
        display: contents;
    }

    /* BLOCK8-GLAV: Стабильность в сотрудничестве */
    .block8-glav {
        background-color: var(--color-white);
        padding: var(--section-padding);
    }

    .block8-glav-h1,
    .block7-glav-h1,
    .block15-glav-h1 {
        font-family: var(--font-family-primary);
        font-size: 40px;
        font-weight: var(--font-weight-semibold);
        color: var(--color-dark);
        line-height: var(--line-height);
    }
    .block8-glav-h1 {
        text-align: center;
        margin-bottom: 30px;
    }
    .block7-glav-h1 {
        margin-bottom: 30px;
    }
    .block15-glav-h1 {
        margin-bottom: 30px;
        width: 551px;
    }

    .block8-glav-img {
        width: 236px;
        height: 236px;
        display: block;
        margin: 50px auto;
    }

    .block8-glav-text {
        font-size: var(--font-size-text);
        color: var(--color-gray-text);
        text-align: center;
        line-height: var(--line-height);
        margin-bottom: 50px;
    }

    /* Три части текста для разрешения 1200px */
    /* Адаптивная версия текста для мобильной версии (800px) */
    .block8-glav-name-h2 {
        font-size: var(--font-size-h2);
        font-weight: 400;
        color: rgba(0, 0, 0, 1);
        text-align: center;
        margin-bottom: 10px;
    }

    .block8-glav-position-text {
        font-size: 12px;
        font-weight: 300;
        color: var(--color-dark);
        text-align: center;
    }

    /* BLOCK6-GLAV: Типы грузов */
    .block6-glav {
        background-color: var(--color-green-dark);
        padding: var(--section-padding);
    }

    .block6-glav-h1 {
        font-size: var(--font-size-h1);
        font-weight: 600;
        color: var(--color-white);
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .block6-glav-h1.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .block6-glav-h2 {
        font-size: var(--font-size-h2);
        font-weight: 400;
        color: var(--color-white);
        margin-bottom: 65px;
        margin-top: 25px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
    }

    .block6-glav-h2.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .block6-glav-cards {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .block6-glav-cards-row {
        display: flex;
        gap: 65px;
    }

    .block6-glav-cards-row-bottom {
        gap: 0;
        align-items: center;
    }

    .block6-glav-kv {
        width: auto;
        height: 100%;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .block6-glav-kv.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .block6-glav-kv:nth-child(1) {
        transition-delay: 0.4s;
        width: 336px;
        flex: 0 0 336px;
    }

    .block6-glav-kv:nth-child(2) {
        transition-delay: 0.6s;
        width: 252px;
        flex: 0 0 252px;
    }

    .block6-glav-kv:nth-child(3) {
        transition-delay: 0.8s;
        width: 271px;
        flex: 0 0 271px;
    }

    .block6-glav-kv:nth-child(4) {
        transition-delay: 1.0s;
        width: 154px;
        flex: 0 0 154px;
    }

    .block6-glav-kv-icon {
        width: 60px;
        height: 60px;
    }

    .block6-glav-kv-h2 {
        font-size: var(--font-size-h2);
        font-weight: 400;
        color: var(--color-white);
        margin-top: 30px;
    }

    .block6-glav-text-h2 {
        font-size: var(--font-size-h2);
        font-weight: 700;
        color: var(--color-white);
        display: flex;
        align-items: center;
        height: 100%;
        width: auto;
        flex: 1;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease 0.8s, transform 0.7s ease 0.8s;
    }

    .block6-glav-text-h2.animate {
        opacity: 1;
        transform: translateY(0);
    }


    /* BLOCK7-GLAV */
    .block7-glav {
        background-color: #EEEFF1;
        padding: var(--section-padding);
    }

    .block7-glav-h2 {
        font-family: var(--font-family-primary);
        font-size: var(--font-size-h2);
        font-weight: 400;
        color: #000000;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .block7-glav-table {
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        overflow: hidden;
        margin-top: 30px;
    }

    .block7-glav-table-row {
        display: flex;
        height: 42px;
    }

    .block7-glav-table-row:nth-child(odd) {
        background-color: #DDE0E3;
    }

    .block7-glav-table-row:nth-child(even) {
        background-color: #FFFFFF;
    }

    .block7-glav-table-row:first-child {
        border-radius: 10px 10px 0 0;
    }

    .block7-glav-table-header {
        height: 45px !important;
    }

    .block7-glav-table-cell {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 0 10px;
        font-family: var(--font-family-primary);
        font-size: var(--font-size-text);
        color: #000000;
    }

    .block7-glav-table-cell-left {
        justify-content: flex-start;
    }

    .block7-glav-table-cell-right {
        justify-content: flex-end;
        font-weight: var(--font-weight-semibold);
        padding-right: 50px;
        color: #2B2B2C;
    }

    .block7-glav-table-header .block7-glav-table-cell {
        font-weight: 700;
    }

    .block7-glav-table-row-border {
        border-top: 1px solid #D5D8DC;
        border-bottom: 1px solid #D5D8DC;
    }

    .block7-glav-table-row-gray {
        background-color: #FFFFFF !important;
    }

    .block7-glav-table-row-white {
        background-color: #FFFFFF !important;
    }

    .block7-glav-table-row:hover {
        background-color: #EEEFF1 !important;
    }

    .block7-glav-table-row-last {
        border-radius: 0 0 10px 10px;
    }

    .block7-glav-note {
        font-family: var(--font-family-primary);
        font-size: var(--font-size-text);
        font-weight: 700;
        color: var(--color-gray-text-secondary);
        margin: 30px 0 15px;
    }

    .block7-glav-note-text {
        font-family: var(--font-family-primary);
        font-size: 14px;
        color: var(--color-gray-text-secondary);
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.4;
    }

    /* BLOCK9-GLAV: Сроки и стоимость */
    .block9-glav {
        background-color: var(--color-gray-bg);
        padding: var(--section-padding);
    }

    .block9-glav-h1 {
        font-size: var(--font-size-h1);
        font-weight: 600;
        color: var(--color-black);
        margin-bottom: 40px;
    }

    .block9-glav-subtitle {
        display: none;
        font-family: var(--font-family-primary);
        font-size: var(--font-size-text);
        font-weight: 400;
        color: var(--color-gray-text-secondary);
        margin-bottom: 30px;
    }

    .block9-glav-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 50px;
    }

    .block9-glav-left {
        flex: 1;
        max-width: 45%;
    }

    .block9-glav-text-small {
        font-family: var(--font-family-primary);
        font-size: var(--font-size-text);
        font-weight: 400;
        color: var(--color-gray-text-secondary);
    }

    .block9-glav-list {
        font-family: var(--font-family-primary);
        font-size: var(--font-size-text);
        font-weight: 400;
        color: var(--color-gray-text-secondary);
        line-height: var(--line-height);
        margin-bottom: 20px;
        list-style: none;
        padding-left: 0;
    }

    .block9-glav-list-item {
        position: relative;
        padding-left: 20px;
    }

    .block9-glav-list-item::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--color-gray-text-secondary);
    }

    .block9-glav-text {
        font-family: var(--font-family-primary);
        font-size: var(--font-size-text);
        font-weight: 400;
        color: var(--color-gray-text-secondary);
        line-height: var(--line-height);
    }

    /* Анимация для десктопной версии */
    .block9-glav-text-small {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .block9-glav-text-small.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .block9-glav-list {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
    }

    .block9-glav-list.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .block9-glav-text {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .block9-glav-text.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .block9-glav-right .block9-glav-image-top {
        opacity: 0;
        transform: translateY(-50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .block9-glav-right .block9-glav-image-top.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .block9-glav-right .block9-glav-image-bottom {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .block9-glav-right .block9-glav-image-bottom.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .block9-glav-right {
        flex: 1;
        max-width: calc(50% + 20px);
        position: relative;
        height: 492px;
        margin-right: -20px;
    }

    .block9-glav-image-top {
        position: absolute;
        top: 0;
        left: 0;
        width: 90%;
        aspect-ratio: 588 / 330;
        object-fit: cover;
        border-radius: var(--border-radius-sm);
        z-index: 2;
    }

    .block9-glav-image-bottom {
        position: absolute;
        bottom: 0;
        right: -30px;
        width: 80%;
        aspect-ratio: 498 / 330;
        object-fit: cover;
        border-radius: var(--border-radius-sm);
        z-index: 1;
    }

    /* Мобильная версия изображений */
    .block9-glav-mobile-images {
        display: none;
        position: relative;
        width: 100%;
        height: 466px;
        margin-bottom: 20px;
    }

    /* BLOCK11-GLAV: Виды грузов */
    /* BLOCK15-GLAV: Форма расчета стоимости */
    .block15-glav {
        background-color: var(--color-gray-bg);
        padding: var(--section-padding);
    }

    .block15-glav-content {
        display: flex;
        gap: 31px;
        align-items: flex-start;
        justify-content: space-between;
    }

    .block15-glav-left {
        max-width: 496px;
    }

    .block15-glav-right {
        margin-top: 20px;
        min-width: 500px;
    }


    .block15-glav-text {
        font-size: var(--font-size-text);
        color: var(--color-dark);
        line-height: 1.2;
    }
    .block15-glav-h1-mobile,
    .block15-glav-text-mobile {
        display: none;
    }

    .block15-glav-form {
        margin-top: 30px;
    }

    .block15-glav-form-label {
        font-size: var(--font-size-text);
        color: var(--color-black);
        margin: 30px 0 10px;
        display: block;
    }

    .block15-glav-form-input {
        width: 100%;
        height: 48px;
        padding: 0 15px;
        font-size: var(--font-size-text);
        color: var(--color-black);
        background-color: var(--color-white);
        border: 1px solid var(--color-gray-icon);
        border-radius: 0;
        outline: none;
        box-sizing: border-box;
    }

    .block15-glav-form-textarea {
        width: 100%;
        height: 48px;
        padding: var(--padding-small);
        font-size: var(--font-size-text);
        color: var(--color-black);
        background-color: var(--color-white);
        border: 1px solid var(--color-gray-icon);
        border-radius: 0;
        outline: none;
        resize: none;
        box-sizing: border-box;
        overflow: hidden;
    }

    .block15-glav-form-label .required {
        color: red;
    }

    .block15-glav-checkbox-group {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    /* Переключатель согласия: влево = выкл (серый), вправо = вкл (зелёный) */
    .block15-glav-checkbox {
        width: 28px;
        height: 12px;
        background-color: #C5C8CC;
        border-radius: 30px;
        position: relative;
        cursor: pointer;
        border: none;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
        flex-shrink: 0;
    }

    .block15-glav-checkbox:checked {
        background-color: rgba(76, 197, 116, 1);
    }

    .block15-glav-checkbox::after {
        content: '';
        position: absolute;
        top: 1px;
        left: 1px;
        width: 10px;
        height: 10px;
        background-color: #F0F1F3;
        border-radius: 50%;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .block15-glav-checkbox:checked::after {
        transform: translateX(16px);
        background-color: #ffffff;
    }

    .block15-glav-checkbox-text {
        font-size: 11px;
        font-weight: 300;
        color: var(--color-dark);
        line-height: var(--line-height);
    }

    .block15-glav-checkbox-text a {
        text-decoration: underline;
        color: var(--color-dark);
    }

    .block15-glav-button {
        width: 100%;
        height: 51px;
        background-color: var(--color-green-button-light);
        border-radius: var(--border-radius-btn);
        border: none;
        font-size: var(--font-size-text);
        font-weight: 700;
        color: var(--color-white);
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 30px;
        text-align: center;
    }

    .block15-glav-button:hover {
        background-color: var(--color-green-primary);
    }

    .block15-glav-button:disabled,
    .block15-glav-button[disabled] {
        background-color: #C5C8CC;
        color: #F5F6F7;
        cursor: not-allowed;
        opacity: 1;
    }

    .block15-glav-button:disabled:hover,
    .block15-glav-button[disabled]:hover {
        background-color: #C5C8CC;
        cursor: not-allowed;
    }

    .block15-glav-img {
        width: 100%;
        height: 100%;
        max-height: 604px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
    }

    /* BLOCK12-GLAV: Отзывы клиентов */
    .block12-glav {
        background-color: var(--color-white);
        padding: var(--section-padding);
    }

    .block12-glav-title {
        font-size: var(--font-size-h1);
        font-weight: 600;
        color: var(--color-dark);
        margin-bottom: 50px;
        margin-left: 49px;
    }

    .block12-glav-flamp-widget-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .block12-glav-flamp-widget-container img {
        max-width: 98%;
        height: auto;
    }

    /* Десктопное изображение видно по умолчанию */
    .block12-glav-flamp-widget-desktop {
        display: block;
    }

    /* Мобильное изображение скрыто по умолчанию */
    .block12-glav-flamp-widget-mobile {
        display: none;
    }

    .flamp-widget {
        display: block;
    }

    .block12-glav-cards-container {
        display: flex;
        justify-content: center;
        gap: 90px;
        margin: 30px auto 0;
        max-width: 1033px;
    }

    .block12-glav-card-link {
        display: block;
        width: 254px;
        height: 169px;
        text-decoration: none;
        color: inherit;
    }

    .block12-glav-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.25);
        border-radius: 10px;
        transition: transform 0.2s, box-shadow 0.2s;
        cursor: pointer;
        border: 1px solid #AAADB066;
    }

    .block12-glav-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .block12-glav-card-image {
        width: 224px;
        height: 56px;
        object-fit: contain;
        margin-bottom: 25px;
    }

    .block12-glav-card-image2 {
        width: 188px;
        height: 56px;
        object-fit: contain;
        margin-bottom: 25px;
    }

    .block12-glav-card-image3 {
        width: 211px;
        height: 56px;
        object-fit: contain;
        margin-bottom: 25px;
    }

    .block12-glav-rating-container {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .block12-glav-rating-number {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-size: 40px;
        line-height: 100%;
        color: #2B2B2C;
        margin-right: 15px;
    }

    .block12-glav-stars-and-label {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .block12-glav-stars {
        display: flex;
    }

    .block12-glav-star {
        width: 26px;
        height: 26px;
    }

    .block12-glav-rating-label {
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        margin-top: 5px;
        width: 100%;
        color: #1B2024;
    }

    /* Анимация появления для block12-glav */
    .block12-glav-flamp-widget-container {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .block12-glav-flamp-widget-container.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .block12-glav-card-link {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .block12-glav-card-link.animate {
        opacity: 1;
        transform: translateX(0);
    }

    /* BLOCK16-GLAV: Другие услуги */
    .block16-glav {
        background-color: #3D9E5D;
        padding: var(--section-padding);
    }

    .block16-glav-h1 {
        font-family: var(--font-family-primary);
        font-size: 40px;
        font-weight: var(--font-weight-semibold);
        color: #FFFFFF;
        margin-bottom: 50px;
    }

    .block16-glav-cards {
        display: flex;
        gap: 30px;
        overflow: hidden;
        position: relative;
    }

    .block16-glav-cards-wrapper {
        display: flex;
        gap: 30px;
        transition: transform 0.6s ease-in-out;
        will-change: transform;
    }

    .block16-glav-card {
        flex: 0 0 calc((100% - 60px) / 3);
        max-width: calc((100% - 60px) / 3);
        min-width: calc((100% - 60px) / 3);
        height: 132px;
        border: 2px solid #FFFFFF;
        border-radius: 10px;
        background-color: transparent;
        padding: 25px 5px 25px 5px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
        overflow: hidden;
    }

    .block16-glav-card-h2 {
        font-family: var(--font-family-primary);
        font-size: var(--font-size-h2);
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 8px;
        margin: 0 0 8px 0;
    }

    .block16-glav-card-text {
        font-family: var(--font-family-primary);
        font-size: var(--font-size-text);
        font-weight: 400;
        color: #FFFFFF;
        margin: 0;
        line-height: 1.3;
    }

    /* Эффект при наведении на карточку */
    .block16-glav-card:hover {
        background-color: var(--color-white);
        border-color: var(--color-green-button);
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .block16-glav-card:hover .block16-glav-card-h2 {
        color: var(--color-green-button);
        transition: color 0.3s ease;
    }

    .block16-glav-card:hover .block16-glav-card-text {
        color: var(--color-green-button);
        transition: color 0.3s ease;
    }

    .block16-glav-pagination {
        display: flex;
        justify-content: flex-end;
        gap: 14px;
        margin-top: 30px;
    }

    .block16-glav-pagination-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #FFFFFF;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .block16-glav-pagination-dot:not(.active) {
        background-color: #DBDEE3;
        opacity: 1;
    }

    .block16-glav-pagination-dot:hover {
        opacity: 0.8;
    }

    /* BLOCK13-GLAV: FAQ */
    .block13-glav {
        background-color: var(--color-gray-bg);
        padding: var(--section-padding);
    }

    .block13-glav-title {
        font-size: var(--font-size-h1);
        font-weight: 600;
        color: var(--color-dark);
        margin-bottom: 50px;
    }

    .block13-glav-container {
        display: flex;
        flex-direction: column;
    }

    .block13-glav-question {
        padding: 15px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: 1px solid #AAADB066;
        border-radius: 10px;
        background-color: white;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
        height: 80px;
        margin-bottom: 30px;
    }

    .block13-glav-question-text {
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        color: #555658;
    }

    .block13-glav-arrow {
        width: 20px;
        height: 13px;
        transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .block13-glav-answer-content {
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        color: #555658;
    }

    .block13-glav-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(0);
        transition: max-height 0.7s ease-in-out,
        padding 0.7s ease-in-out,
        opacity 0.5s ease-in-out,
        transform 0.5s ease-in-out,
        margin-top 0.7s ease-in-out,
        margin-bottom 0.7s ease-in-out;
        border: 1px solid #AAADB066;
        border-top: none;
        border-radius: 0 0 10px 10px;
        background-color: transparent;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: -1px;
        margin-bottom: 0;
    }

    .block13-glav-item.active .block13-glav-answer {
        padding: 15px 15px;
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        margin-top: -30px;
        margin-bottom: 30px;
    }

    .block13-glav-item.active .block13-glav-arrow {
        transform: rotate(180deg);
    }

    /* Анимация появления для block13-glav-item */
    .block13-glav-item {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .block13-glav-item.animate {
        opacity: 1;
        transform: translateY(0);
    }

    /* ========== МЕДИА-ЗАПРОСЫ ========== */

    /* Desktop: 1300px */

    /* Desktop: 1200px */
    @media (max-width: 1200px) and (min-width: 1001px) {
        /* block8-glav: разбиение текста на три части */


    }

    /* Desktop: 1069px */
    @media (max-width: 1069px) and (min-width: 1000px) {

        .block4-glav-cards-row {
            gap: 20px;
        }

        .block15-glav {
            padding: 80px 20px;
        }

    }

    /* Tablet: 1000px */
    @media (max-width: 1000px)  {
        body {
            overflow-x: hidden;
        }

        .block2-glav {
            padding: var(--padding-tablet);
        }


        .block2-glav-h1 {
            font-size: var(--font-size-tablet-h1);
            margin-bottom: var(--margin-medium);
        }

        .block2-glav-text {
            max-width: var(--max-width-text);
        }

        .block4-glav {
            padding: var(--padding-tablet);
        }

        .block4-glav-cards {
            display: none;
        }

        .block4-glav::after {
            content: '';
            display: block;
        }

        /* Стили для адаптивной структуры, создаваемой JS */
        .block4-glav-unified.adaptive-layout .block4-glav-adaptive-row-1 {
            display: flex;
            gap: 20px;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-adaptive-row-2 {
            display: flex;
            gap: 30px;
            justify-content: space-between;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-adaptive-left,
        .block4-glav-unified.adaptive-layout .block4-glav-adaptive-right {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-adaptive-right {
            max-width: 265px;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-kv {
            width: auto !important;
            height: auto !important;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-adaptive-row-1 .block4-glav-kv {
            max-height: 180px !important;
            max-width: 487px !important;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-adaptive-left .block4-glav-kv:nth-child(2) {
            height: 100% !important;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-kv-h2 {
            font-size: var(--font-size-text);
            margin-top: 30px;
            padding: var(--padding-horizontal);
            margin-bottom: 10px;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-kv-badge {
            font-size: 10px;
            border-radius: 6px;
            color: #2B2B2C;
            font-weight: 300;
            padding: 6px 6px 6px 6px;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-adaptive-left .block4-glav-kv:nth-child(1) .block4-glav-kv-badge {
            display: none;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-adaptive-left .block4-glav-kv:nth-child(2) .block4-glav-kv-badge {
            height: 27px;
            width: 64px;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-adaptive-right .block4-glav-kv:nth-child(2) .block4-glav-kv-badge {
            height: 27px;
            width: 63px;
        }


        .block4-glav-kv-text {
            padding: 0px 20px 37px 20px;
        }

        .block4-glav-unified.adaptive-layout .block4-glav-cards-group .block4-glav-kv:nth-child(1) .block4-glav-kv-h2 { margin-top: 30px; }
        .block4-glav-unified.adaptive-layout .block4-glav-kv:nth-child(2) .block4-glav-kv-h2 { margin-top: 30px; }

        .block4-glav-unified.adaptive-layout .block4-glav-kv-h2{
            font-weight: var(--font-weight-semibold);
        }

        /* Возврат текста "по доставке морем" при разрешении 1000px */
        .block4-text-sea {
            display: none;
        }

        .block4-text-auto {
            display: inline;
        }

        .block8-glav {
            padding: var(--padding-tablet);
        }

        .block8-glav-h1,
        .block6-glav-h1,
        .block7-glav-h1,
        .block4-glav-cards-empty-h1{
            font-size: var(--font-size-tablet-h1);
        }

        .block8-glav-img {
            margin: 30px auto;
        }

        .block8-glav-text {
            max-width: 621px;
            margin: 0 auto 15px;
        }

        .block12-glav-title {
            font-size: var(--font-size-tablet-h1);
            text-align: center;
        }

        .block13-glav-title {
            font-size: var(--font-size-tablet-h1);
        }

        .block6-glav {
            padding: 60px 30px;
        }

        .block6-glav-h2 {
            margin-top: 20px;
            margin-bottom: 30px;
            font-size: 16px;
        }

        .block6-glav-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            row-gap: 30px;
        }

        .block6-glav-cards-row {
            display: contents;
        }

        .block6-glav-kv {
            width: auto;
            flex: 1 1 auto;
        }

        .block6-glav-kv:nth-child(1),
        .block6-glav-kv:nth-child(2),
        .block6-glav-kv:nth-child(3),
        .block6-glav-kv:nth-child(4) {
            width: auto;
            flex: 1 1 auto;
        }

        .block6-glav-kv-h2 {
            font-size: var(--font-size-h2);
        }



        .block7-glav {
            padding: var(--padding-tablet);
        }

        .block7-glav-h1 {
            margin-bottom: 20px;
            color: #0F1217;
        }

        .block7-glav-h2 {
            font-size: var(--font-size-text);
            margin-bottom: 62px;
            color: var(--color-gray-text-secondary);
        }


        .block15-glav {
            padding: var(--padding-tablet);
        }

        .block15-glav-h1-mobile {
            display: block;
            font-size: var(--font-size-h1);
            font-weight: var(--font-weight-semibold);
            color: var(--color-dark);
            margin-bottom: 25px;
            line-height: 1.2;
            width: 100%;
        }

        .block15-glav-text-mobile {
            display: block;
            font-size: var(--font-size-text);
            color: var(--color-dark);
            line-height: 1.2;
            margin-bottom: 30px;
            width: 100%;
        }

        .block15-glav-left .block15-glav-h1,
        .block15-glav-left .block15-glav-text {
            display: none;
        }

        .block15-glav-content {
            display: flex;
            flex-direction: column;
            gap: 0px;
        }

        .block15-glav-right {
            order: 1;
            margin-top: 0;
            width: 100%;
        }

        .block15-glav-left {
            order: 2;
            max-width: none;
            width: 100%;
        }

        .block15-glav-img {
            width: 100%;
            height: 716px;
            border-radius: 12px;
            object-position: top;
            box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
        }

        .block9-glav {
            padding: var(--padding-tablet);
        }

        .block9-glav-content {
            flex-direction: column;
            gap: 30px;
        }

        .block9-glav-mobile-images{
            display: block;
        }

        .block9-glav-left,
        .block9-glav-right {
            max-width: 100%;
        }

        .block9-glav-right {
            height: 350px;
        }

        .block9-glav-h1 br {
            display: none;
        }

        .block9-glav-subtitle {
            display: block;
        }

        /* block12-glav-cards-container: уменьшение отступов и размеров карточек */
        .block12-glav-cards-container {
            gap: 25px;
        }

        .block12-glav-card-link {
            width: 215px;
            height: 133px;
        }

        .block12-glav-card {
            padding: 12px;
        }

        .block12-glav-card-image {
            width: 187px;
            height: 47px;
        }

        .block12-glav-card-image2 {
            width: 175px;
            height: 52px;
        }

        .block12-glav-card-image3 {
            width: 191px;
            height: 50px;
        }

        .block12-glav-star{
            width: 23px;
            height: 23px;
        }

        /* block12-glav-title: убрать выравнивание по центру и левый маргин */
        .block12-glav-title {
            text-align: left;
            margin-left: 0;
        }

        /* block16-glav: предотвращение растягивания карточек */
        .block16-glav-cards {
            overflow: hidden;
        }

        .block16-glav-cards-wrapper {
            gap: 3vw !important;
        }

        .block16-glav-card {
            flex: 0 0 calc((100% - 3vw) / 2) !important;
            max-width: calc((100% - 3vw) / 2) !important;
            min-width: calc((100% - 3vw) / 2) !important;
        }
    }

    /* Tablet: 800px */
    @media (max-width: 800px) {
        .block4-glav-cards-group .block4-glav-kv:nth-child(1) .block4-glav-kv-text {
            margin-bottom: 0;
        }
        .block4-glav-kv:nth-child(2) .block4-glav-kv-text {
            margin-bottom: 0;
        }

        /* block4-glav-kv: margin-bottom только для 2-й карточки в block4-glav-adaptive-right */
        .block4-glav-adaptive-right .block4-glav-kv:nth-child(2) .block4-glav-kv-text {
            margin-bottom: 74px;
        }

        .block6-glav-cards-row:last-child .block6-glav-kv:first-child {
            order: 3;
        }

        .block6-glav-text-h2 {
            font-size: var(--font-size-text);
        }

        .block9-glav-h1{
            font-size: var(--font-size-tablet-h1);
            margin-bottom: 25px;
        }

        .block9-glav-right {
            display: none;
        }

        /*.block9-glav-list-item::before{*/
        /*    display: none;*/
        /*}*/

        /*.block9-glav-list-item{*/
        /*    padding: 0px;*/
        /*}*/

        .block9-glav-mobile-images {
            display: block;
        }

        .block9-glav-mobile-images .block9-glav-image-top,
        .block9-glav-mobile-images .block9-glav-image-bottom {
            position: absolute;
            width: 67%;
            height: 76%;
            object-fit: cover;
            border-radius: var(--border-radius-sm);
        }

        .block9-glav-mobile-images .block9-glav-image-top {
            top: 0;
            left: 0;
            z-index: 2;
        }

        .block9-glav-mobile-images .block9-glav-image-bottom {
            bottom: 0;
            right: 0px;
            z-index: 1;
        }

        /* Анимация для мобильной версии при разрешении 800px */
        .block9-glav-h1 {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .block9-glav-h1.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .block9-glav-subtitle {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
        }

        .block9-glav-subtitle.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .block9-glav-mobile-images .block9-glav-image-top {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out 0.6s, transform 0.8s ease-out 0.6s;
        }

        .block9-glav-mobile-images .block9-glav-image-top.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .block9-glav-mobile-images .block9-glav-image-bottom {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s;
        }

        .block9-glav-mobile-images .block9-glav-image-bottom.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .block9-glav-text-small,
        .block9-glav-list,
        .block9-glav-text {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out 1.2s, transform 0.6s ease-out 1.2s;
        }

        .block9-glav-text-small.animate,
        .block9-glav-list.animate,
        .block9-glav-text.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .block15-glav-h1-mobile{
            width: 525px;
        }

        /* Кнопки: размер текста 14px */
        .block15-glav-button,
        .block12-glav-button {
            font-size: 14px;
        }

        /* Заголовки h2: выравнивание по центру */
        .block7-glav-h2,
        .block8-glav-name-h2 {
            text-align: center;
        }

        /* block6-glav-kv-h2: шрифт regular */
        .block6-glav-kv-h2 {
            font-weight: 700;
        }




        .footer-columns {
            flex-direction: column;
            gap: 30px;
        }

        .footer-column__contacts .footer-btn {
            display: none;
        }

        .container-footer .footer__politic {
            display: none;
        }
    }

    /* Mobile: 700px */
    @media (max-width: 700px) {
        /* footer-column__contacts: показать кнопку "Заказать обратный звонок" */
        .footer-column__contacts .footer-btn {
            padding: 0;
            text-align: center;
            padding-top: 12px;
            display: block;
            margin-top: 30px;
            width: 357px;
        }

        /* block16-glav: показать секцию на мобильной версии */
        .block16-glav {
            display: block;
            padding: var(--padding-mobile);
        }

        .block16-glav-h1 {
            font-size: 30px;
            margin-bottom: 30px;
            text-align: center;
        }

        .block16-glav-cards {
            gap: 20px;
            overflow: visible;
        }

        .block16-glav-cards-wrapper {
            flex-direction: column;
            flex-wrap: nowrap;
            gap: 20px;
            transform: none !important;
        }

        .block16-glav-card {
            flex: 0 0 auto !important;
            max-width: 100% !important;
            min-width: 100% !important;
            height: auto;
            min-height: 120px;
            padding: 20px;
            width: 100%;
        }

        .block16-glav-pagination {
            display: none !important;
        }

        .block16-glav-card-h2 {
            font-size: 18px;
        }

        .block16-glav-card-text {
            font-size: 15px;
        }

        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }
        body {
            position: relative;
        }
        * {
            max-width: 100%;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .block2-glav {
            padding: var(--padding-mobile);
        }


        .block2-glav-text {
            font-size: var(--font-size-small);
            max-width: var(--max-width-text);
        }

        .block4-glav {
            padding: var(--padding-mobile);
        }

        .block4-glav-cards {
            display: none;
        }

        /* Стили для мобильной структуры, создаваемой JS */
        .block4-glav-unified.mobile-layout .block4-glav-adaptive-row-1 {
            flex-direction: column;
            gap: var(--gap-small);
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-row-2 {
            flex-direction: column;
            gap: var(--gap-small);
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-left,
        .block4-glav-unified.mobile-layout .block4-glav-adaptive-right {
            max-width: none;
            width: 100%;
            gap: var(--gap-small);
            display: contents;
        }

        .block4-glav-unified.mobile-layout .block4-glav-kv {
            width: 100%;
            border-radius: 10px;
        }

        .block4-glav-cards-empty-h1,
        .block8-glav-h1,
        .block6-glav-h1,
        .block9-glav-h1,
        .block15-glav-h1-mobile,
        .block12-glav-title,
        .block13-glav-title {
            font-size: var(--font-size-tablet-h1);
        }

        .block4-glav-cards-empty-h1 {
            margin-bottom: 10px;
        }

        /* Переключение текста при разрешении 1000px */
        .block4-text-sea {
            display: inline;
        }

        .block4-text-auto {
            display: none;
        }

        .block4-glav-unified.mobile-layout .block4-glav-kv-h2 {
            font-weight: 700;
            font-size: var(--font-size-small);
            margin-top: 15px;
            padding: 0 15px;
        }

        .block4-glav-unified.mobile-layout .block4-glav-kv-h2-with-badge {
            margin-top: 15px;
        }

        .block4-glav-unified.mobile-layout .block4-glav-kv-text {
            font-size: var(--font-size-small);
            padding: 0 15px 15px 15px;
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-right .block4-glav-kv:nth-child(1) .block4-glav-kv-text {
            margin-bottom: 0px;
        }

        .block4-glav-unified.mobile-layout .block4-glav-kv-badge {
            margin: 0 15px;
            font-weight: 300;
        }

        .block4-glav-unified.mobile-layout .block4-glav-kv-h2-with-badge {
            justify-content: flex-start;
        }

        .block4-glav-unified.mobile-layout .block4-glav-cards-group .block4-glav-kv:nth-child(1) .block4-glav-kv-h2 {
            margin-top: 15PX;
        }
        .block4-glav-unified.mobile-layout .block4-glav-kv:nth-child(2) .block4-glav-kv-h2 {
            margin-top: 15PX;
        }

        .block4-glav-unified.mobile-layout .block4-glav-kv-badge {
            border-radius: var(--border-radius-sm);
            font-weight: 300;
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-row-2 {
            display: flex;
            flex-direction: column;
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-left .block4-glav-kv:nth-child(1) {
            order: 1;
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-left .block4-glav-kv:nth-child(2) {
            order: 2;
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-right .block4-glav-kv:nth-child(1) {
            order: 3;
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-right .block4-glav-kv:nth-child(2) {
            order: 4;
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-right .block4-glav-kv:nth-child(2) .block4-glav-kv-text{
            margin-bottom: 0px;
        }

        .block8-glav {
            padding: var(--padding-mobile);
        }

        .block8-glav-h1 {
            max-width: 330px;
            margin: 0 auto;
        }

        .block8-glav-text {
            font-size: var(--font-size-small);
            margin-top: 30px;
        }

        .block8-glav-position-text {
            max-width: 160px;
            margin: 0 auto;
        }

        .block8-glav-name-h2.animate {
            font-size: 18px;
        }

        .block6-glav {
            padding: 60px 15px 60px 18px;
        }

        .block6-glav-h2 {
            font-size: 18px;
            margin-top: 30px;
            margin-bottom: 40px;
        }

        .block6-glav-cards {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .block6-glav-cards-row {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .block6-glav-kv {
            width: 100%;
        }

        .block6-glav-kv-h2 {
            font-size: 14px;
        }

        .block6-glav-text-h2 {
            font-size: 14px;
            order: 5;
        }

        .block7-glav {
            padding: var(--padding-mobile);
        }

        .block7-glav-h1 {
            font-size: 30px;
            margin-bottom: 30px;
            color: #0F1217;
        }

        .block7-glav-h2 {
            font-size: 15px;
            margin-bottom: 30px;
            color: var(--color-gray-text-secondary);
        }

        .block7-glav-table-cell {
            font-size: 14px;
            flex: none;
        }

        .block7-glav-table-header .block7-glav-table-cell {
            justify-content: center;
            font-size: var(--font-size-text);
        }

        .block7-glav-table-header .block7-glav-table-cell-right {
            display: none;
        }

        .block7-glav-table-row {
            justify-content: space-between;
        }

        .block7-glav-table-cell-left {
            flex: 1;
            margin-right: 10px;
        }

        .block7-glav-table-cell-right {
            flex: none;
            padding-right: 10px;
        }

        .block9-glav {
            padding: 60px 16px 60px 18px;
        }

        .block9-glav-h1 {
            max-width: 320px;
        }

        .block9-glav-content {
            flex-direction: column;
            gap: 20px;
        }

        .block9-glav-left,
        .block9-glav-right {
            max-width: 100%;
        }


        .block9-glav-mobile-images {
            height: 330px;
        }

        .block9-glav-mobile-images .block9-glav-image-top,
        .block9-glav-mobile-images .block9-glav-image-bottom {
            position: absolute;
            width: 81%;
            height: 64%;
            object-fit: cover;
            border-radius: var(--border-radius-sm);
        }

        .block9-glav-mobile-images .block9-glav-image-top {
            top: 0;
            left: 0;
            z-index: 2;
        }

        .block9-glav-mobile-images .block9-glav-image-bottom {
            bottom: 0;
            right: 0px;
            z-index: 1;
        }

        /* Анимация для мобильной версии */
        .block9-glav-h1 {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .block9-glav-h1.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .block9-glav-subtitle {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
        }

        .block9-glav-subtitle.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .block9-glav-mobile-images .block9-glav-image-top {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out 0.6s, transform 0.8s ease-out 0.6s;
        }

        .block9-glav-mobile-images .block9-glav-image-top.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .block9-glav-mobile-images .block9-glav-image-bottom {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s;
        }

        .block9-glav-mobile-images .block9-glav-image-bottom.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .block9-glav-text-small,
        .block9-glav-list,
        .block9-glav-text {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out 1.2s, transform 0.6s ease-out 1.2s;
        }

        .block9-glav-text-small.animate,
        .block9-glav-list.animate,
        .block9-glav-text.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .block15-glav {
            padding: var(--padding-mobile);
        }

        .block15-glav-h1-mobile {
            margin-bottom: 10px;
        }

        .block15-glav-text-mobile {
            font-size: var(--font-size-small);
            margin-bottom: 0px;
        }

        .block15-glav-form-label {
            font-size: var(--font-size-small);
        }

        .block15-glav-button {
            margin-top: 46px;
            height: 54px;
            text-align: center;
        }

        .block15-glav-right {
            display: none;
        }

        .block12-glav {
            padding: var(--padding-mobile);
        }

        .block12-glav-title {
            text-align: center;
        }

        .block12-glav-flamp-widget-container {
            max-width: 100%;
            height: auto;
            min-height: 400px;
        }

        .block12-glav-cards-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        /* Переключение изображений в block12-glav-flamp-widget-container */
        .block12-glav-flamp-widget-desktop {
            display: none;
        }

        .block12-glav-flamp-widget-mobile {
            display: block;
        }

        .block12-glav-card-link {
            width: 100%;
            max-width: 254px;
        }

        .block13-glav {
            padding: var(--padding-mobile);
        }

        .block13-glav-title {
            text-align: center;
        }

        .block13-glav-container {
            gap: 20px;
        }

        .block13-glav-question {
            height: auto;
            min-height: 60px;
            padding: 12px 15px;
        }

        .block13-glav-question-text {
            font-size: 14px;
        }

        .block13-glav-answer-content {
            font-size: 14px;
            padding-top: 10px;
        }

        .block13-glav-arrow {
            width: 13.5px;
            height: 9px;
        }

        .block13-glav-question-height {
            height: auto;
            min-height: 80px;
        }

        .container-footer .footer__politic {
            display: block;
        }
    }

    @media (max-width: 394px) {
        .block4-glav-cards-empty-h1,
        .block8-glav-h1,
        .block6-glav-h1,
        .block9-glav-h1,
        .block15-glav-h1-mobile,
        .block12-glav-title,
        .block13-glav-title {
            font-size: 30px;
        }


        .block4-glav-unified.mobile-layout .block4-glav-adaptive-right .block4-glav-kv:nth-child(1) .block4-glav-kv-text {
            margin-bottom: 0px;
        }

        /* Поменять местами первый block4-glav-kv из block4-glav-adaptive-right со вторым из block4-glav-adaptive-left */
        .block4-glav-unified.mobile-layout .block4-glav-adaptive-right .block4-glav-kv:nth-child(1) {
            order: 2;
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-left .block4-glav-kv:nth-child(2) {
            order: 3;
        }

        .block4-glav-unified.mobile-layout .block4-glav-kv-text{
            padding: 0 15px 30px 15px;
        }

        .block4-glav-unified.mobile-layout .block4-glav-cards-group .block4-glav-kv:nth-child(1) .block4-glav-kv-h2{
            margin-top: 30px;
        }
        .block4-glav-unified.mobile-layout .block4-glav-kv:nth-child(2) .block4-glav-kv-h2{
            margin-top: 30px;
        }

        .block4-glav-unified.mobile-layout .block4-glav-adaptive-right .block4-glav-kv:nth-child(2) .block4-glav-kv-badge{
            margin: 0px;
            margin-left: 15px;
        }

        .block4-glav-unified.mobile-layout .block4-glav-kv-h2{
            margin-top: 30px;
        }

        .block6-glav-kv-h2{
            margin-top: 15px;
        }

        .block12-glav-card-image {
            width: 224px;
            height: 56px;
            object-fit: contain;
            margin-bottom: 25px;
        }

        .block12-glav-card-image2 {
            width: 189px;
            height: 56px;
            object-fit: contain;
            margin-bottom: 25px;
        }

        .block12-glav-card-image3 {
            width: 211px;
            height: 56px;
            object-fit: contain;
            margin-bottom: 25px;
        }

        .block12-glav-cards-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
        }

        .block12-glav-card-link {
            margin-bottom: 0;
        }

        .block12-glav-card{
            margin-bottom: 0;
        }

        .block13-glav-title,
        .block12-glav-title{
            text-align: left;
            margin-bottom: 30px;
        }

        .block13-glav-question{
            margin-bottom: 15px;
        }

        .block13-glav-item.active .block13-glav-answer{
            margin-bottom: 15px;
        }

        .block13-glav-container{
            gap: 0;
        }

    }

    @media (max-width: 360px) {
        .footer-column__contacts .footer-btn {
            padding: 0;
            text-align: center;
            padding-top: 12px;
            display: block;
            margin-top: 30px;
            width: 260px;
        }
    }

    /* ========== СТИЛИ ФУТЕРА ========== */

    /* Основной контейнер */
    .footer {
        padding-top: 80px;
        background-color: #4A5A72;
    }

    .container-footer {
        max-width: 1500px;
        margin-right: auto;
        margin-left: auto;
        padding: 0 30px;
    }

    /* Колонки футера */
    .footer-columns {
        color: #ffffff;
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
    }

    .footer-column {
        font-size: 16px;
        line-height: normal;
    }

    .footer-column__contacts {
        order: 1;
        width: 24%;
    }

    .footer-column__contacts .footer__title {
        margin-bottom: 24px;
    }

    .footer-column__categories {
        order: 0;
    }

    .footer-column__services {
        order: 0;
    }

    /* Заголовки и тексты */
    .footer__title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .footer-column__text {
        margin-bottom: 16px;
    }

    .footer-column__text a {
        color: #FFFFFF;
        text-decoration: none;
    }

    .footer-column__text a:hover {
        text-decoration: underline;
    }

    .footer-column__small-text {
        font-size: 11px;
        color: #DBDEE3;
        margin-top: 3px;
    }


    /* Меню */
    .menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-list li {
        list-style: none;
    }

    .menu-list li div {
        font-size: 16px;
    }

    .footer .menu-list > li {
        margin-bottom: 4px;
    }

    .footer .menu-list__item-heading {
        padding: 0;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        text-decoration: none;
    }

    .footer .menu-list__item-heading:hover {
        text-decoration: underline;
    }

    .list-unstyled > li {
        list-style-type: none;
    }

    /* Социальные иконки */
    .footer__social {
        margin-top: 83px;
        float: none;
    }

    .footer__social i {
        margin-right: 4px;
        color: #4A5A72;
        background-color: #ffffff;
        padding: 9px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .footer__social_inst i {
        padding: 8px 11px;
    }

    .footer__social .fa {
        font-size: 30px;
    }

    .logo-vc_ru {
        width: 50px;
        height: 50px;
        margin-bottom: -13px;
    }

    /* Кнопки */
    .footer-btn {
        width: 260px;
        height: 50px;
        border-radius: 30px;
        padding-top: 14px;
        padding-left: 20px;
        text-decoration-skip-ink: none;
        border: none;
        background-color: #55CD6C;
        color: #ffffff;
        cursor: pointer;
        font-size: 16px;
        display: none;
        text-align: center;
        line-height: 22px;
    }

    .footer-btn a {
        color: #ffffff;
        text-decoration: none;
    }

    .footer-btn:hover {
        background-color: #47AB5A;
    }

    /* Нижняя часть футера */
    .footer__info {
        margin-top: 62px;
        color: #ffffff;
        padding-top: 20px;
        font-size: 11px;
        display: flex;
        justify-content: space-between;
    }

    .footer__copyright {
        font-family: 'Open Sans', sans-serif;
        font-size: 11px;
        font-weight: 300;
        line-height: 14.98px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #FFFFFF;
    }

    .footer__politic {
        width: 24%;
        font-family: 'Open Sans', sans-serif;
        font-size: 11px;
        font-weight: 300;
        line-height: 14.98px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #FFFFFF;
        margin-bottom: 36px;
    }

    .footer__politic a {
        color: #FFFFFF;
        text-decoration: none;
    }

    .footer__politic a:hover {
        text-decoration: underline;
    }

    /* Мобильные элементы */
    .mobile-footer-wats-4 {
        display: flex;
        align-items: center;
    }

    .mobile-footer-wats-3 {
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        color: #FFFFFF;
        margin-top: 5px;
    }

    .mobile-footer-wats-1 {
        margin-right: 8px;
    }

    .mobile-footer-wats-2 {
        width: 28px;
        height: 28px;
    }

    /* Desktop: 1180px */
    @media (max-width: 1180px) {
        .button-media {
            font-size: 16px;
        }
    }

    /* Desktop: 1110px */
    @media (max-width: 1110px) {
        .button-media {
            font-size: 12px;
        }
    }

    /* Tablet: 998px */
    @media (max-width: 998px) {
        .footer-btn {
            width: 245px;
            padding-left: 14px;
            display: inline-block;
        }
    }

    /* Tablet: 920px */
    @media (max-width: 920px) {
        .footer-btn {
            width: 212px;
            padding-left: 12px;
            font-size: 14px;
        }
        .footer__info{
            margin-top: 0;
            padding-bottom: 30px;
        }
        .footer-columns{
            margin-bottom: 35px;
        }
    }

    /* Tablet: 780px */
    @media (max-width: 780px) {
        .footer-btn {
            width: 185px;
            font-size: 12px;
            height: 41px;
        }

    }

    /* Mobile: 650px */
    @media (max-width: 650px) {
        .footer-btn {
            width: 159px;
            font-size: 10px;
        }
    }

    /* Mobile: 561px */
    @media (max-width: 561px) {
        .footer {
            padding-left: 15px;
            padding-right: 15px;
            padding-top: 60px;
            padding-bottom: 60px;
        }

        .footer-columns {
            display: block;
        }

        .footer__info {
            display: block;
        }

        .footer-column__contacts {
            margin-bottom: 51px;
            width: 100%;
        }

        .footer-column__contacts .footer__title {
            margin-bottom: 18px;
        }

        .footer-column__contacts .footer-column__text {
            padding-right: 42px;
        }

        .footer .menu-list__sub-list_lvl_2 {
            display: none;
        }

        .footer .sprite_menu-toggler {
            display: none;
        }

        .footer-column__categories {
            margin-bottom: 51px;
        }

        .footer__politic, .footer__copyright {
            margin-bottom: 15px;
            width: 100%;
        }

        .button-media {
            width: 260px !important;
            height: 50px;
            font-size: 16px !important;
        }

        .footer-btn {
            width: 260px;
            font-size: 16px;
            height: 50px;
            padding-left: 20px;
        }

        .container-footer{
            padding: 0;
            padding-left: 10px;
        }
    }

    /* Mobile: 467px */
    @media (max-width: 467px) {
        .footer__social {
            text-align: left;
            margin-top: 17px;
        }

        .footer-btn .feedback-button {
            font-size: 15px;
            padding: 15px 24px 15px 19px;
        }

        .footer-column__categories .footer__title {
            margin-bottom: 11px;
        }

        .footer .menu-list > li {
            margin-bottom: 0;
        }

        .footer-column__services {
            padding-right: 24px;
        }

        .footer-column__services .footer__title {
            margin-bottom: 16px;
        }

        .footer .footer-column__services .menu-list__item-heading {
            line-height: 24px;
            margin-bottom: 7px;
        }

        .footer__info {
            margin-top: 47px;
        }
    }

    /* Mobile: 410px */
    @media (max-width: 410px) {
        .footer__copyright {
            font-family: 'Open Sans', sans-serif;
            font-size: 11px;
            font-weight: 300;
            line-height: 14.98px;
            text-align: left;
            text-underline-position: from-font;
            text-decoration-skip-ink: none;
        }

        .footer__politic {
            font-family: 'Open Sans', sans-serif;
            font-size: 11px;
            font-weight: 300;
            line-height: 14.98px;
            text-align: left;
            text-underline-position: from-font;
            text-decoration-skip-ink: none;
        }

        .footer__politic, .footer__copyright {
            width: 85%;
        }

        .button-media {
            font-size: 15px !important;
            width: 263px !important;
        }
    }
