        /* --- 1. Подключение шрифтов и иконок --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Ubuntu:wght@700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.0.0/fonts/remixicon.css');
        
        /* --- 1. CSS-переменные (Ваши стили) --- */
        :root {
            --color-primary: #538bff; /* Синий */
            --color-accent: #ff696a; /* Красный/Розовый акцент */
            --color-text: #1A202C; /* Темный текст */
            --color-secondary: #78d970; /* Зеленый */
            --color-light-bg: #f5f8fa; /* Очень светлый фон */
            --color-light-secondary: #e6f7e4; 
            --color-light-accent: #ffebe5; 
            --border-radius: 10px;

            /* Типографика */
            --font-heading-main: clamp(32px, 5vw, 56px); /* Чуть подкорректировал для мобилок */
            --font-subline: clamp(18px, 2vw, 24px);
            --font-section: clamp(24px, 4vw, 36px);
            --font-lead: clamp(18px, 2.5vw, 22px);
            --font-main: clamp(16px, 2.5vw, 18px);
            --font-small: clamp(14px, 1.2vw, 16px);

            /* Отступы */
            --section-padding-y: clamp(40px, 8vw, 80px);
            --container-width: 1200px;
        }

        /* --- 2. Базовые сбросы --- */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--color-text);
            line-height: 1.5;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            line-height: 1.2; 
            font-family: 'Ubuntu', sans-serif;
            margin-bottom: 1rem;
        }

        p { font-size: var(--font-main); margin-bottom: 1rem; }
        
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- 3. Утилиты --- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 32px;
            border-radius: var(--border-radius); /* Pill shape */
            font-weight: 700;
            font-size: var(--font-main);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 15px rgba(255, 105, 106, 0.3);
        }

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

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 105, 106, 0.4);
            background-color: #ff5051;
        }

        /* --- 4. Hero Section Styles --- */
        .hero {
            position: relative;
            min-height: 100vh; /* На весь экран */
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
            padding: var(--section-padding-y) 0;
            overflow: hidden;
        }

        /* Декоративные пятна на фоне */
        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--color-light-secondary) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
            opacity: 0.6;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, #eef5ff 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* Текстовая часть */
        .hero-content {
            max-width: 600px;
        }

        .hero-tag {
            display: inline-block;
            background-color: var(--color-light-secondary);
            color: #2c7a25;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: var(--font-small);
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: var(--font-heading-main);
            color: var(--color-text);
            margin-bottom: 20px;
        }

        .hero-title span {
            color: var(--color-primary);
            position: relative;
            z-index: 1;
        }
        
        /* Подчеркивание как в стиле Иврики */
        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: var(--color-light-secondary); /* Зеленоватый маркер */
            z-index: -1;
            opacity: 0.7;
            border-radius: 4px;
        }

        .hero-description {
            font-size: var(--font-lead);
            color: #4a5568;
            margin-bottom: 40px;
        }

        /* Форма внутри Hero */
        .hero-form-wrapper {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 40px rgba(83, 139, 255, 0.1);
            border: 1px solid #edf2f7;
            max-width: 480px;
        }

        .form-header {
            font-weight: 700;
            font-size: var(--font-main);
            margin-bottom: 15px;
            display: block;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            font-family: 'Montserrat', sans-serif;
            transition: border-color 0.3s;
            outline: none;
        }

        .form-input:focus {
            border-color: var(--color-primary);
        }

        .form-note {
            font-size: 14px;
            color: #718096;
            margin-top: 10px;
            text-align: center;
        }

        /* Изображение справа */
        .hero-image-container {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero-img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: var(--border-radius);
            /* Здесь можно поставить тень или маску, если нужно */
            position: relative;
            z-index: 2;
        }

        /* Плавающие элементы (иконки) */
        .floating-card {
            position: absolute;
            background: white;
            padding: 12px 20px;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 3;
            animation: float 6s ease-in-out infinite;
        }

        .card-icon {
            width: 40px;
            height: 40px;
            background: var(--color-light-accent);
            color: var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        
        .card-text {
            font-size: var(--font-small);
            line-height: 1.2;
        }

        .fc-1 { top: 10%; left: 0; animation-delay: 0s; }
        .fc-2 { bottom: 15%; right: -20px; animation-delay: 2s; }
        .fc-3 { top: 40%; right: -40px; animation-delay: 4s; display: none; } /* Скрыл 3-ю, чтобы не перегружать */

        .hero-cta-wrapper {
            margin-bottom: 40px; 
        }
        /* Увеличенная кнопка для Hero */
        .btn-lg {
            padding: 20px 40px;
            font-size: 18px;
            width: auto; /* На мобильном можно сделать 100% */
        }

        /* --- Стили для списка маркеров (как на скриншоте) --- */

        ul.value-markers {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            /* На десктопе 4 колонки в ряд */
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px;
            max-width: 600px; /* Ограничиваем ширину, чтобы было компактно под кнопкой */
        }

        /* Элемент списка li */
        ul.value-markers li {
            display: flex;
            flex-direction: column; /* Иконка сверху, текст снизу */
            align-items: center;    /* Центрируем по горизонтали */
            text-align: center;
        }

        /* Круглая подложка иконки */
        .value-icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            /* Светло-зеленый фон (как на скриншоте) */
            background-color: var(--color-light-secondary); 
            /* Зеленая иконка */
            color: var(--color-secondary); 
            border-radius: 50%;
            font-size: 28px;
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }

        ul.value-markers li:hover .value-icon-circle {
            transform: scale(1.1); /* Легкое увеличение при наведении */
        }

        /* Текст под иконкой */
        .marker-label {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
            color: var(--color-text);
        }

        /* --- Адаптив (Mobile) --- */
        @media (max-width: 600px) {
            ul.value-markers {
                /* На мобильном 2 колонки (квадрат 2x2) */
                grid-template-columns: repeat(2, 1fr); 
                gap: 20px 10px; /* Отступы: 20px вертикально, 10px горизонтально */
            }
            
            .value-icon-circle {
                width: 50px; /* Чуть меньше иконки на телефоне */
                height: 50px;
                font-size: 22px;
            }
            
            .marker-label {
                font-size: 13px;
            }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        /* --- 5. Анимация появления (Fade In Up) --- */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }

        /* --- 6. Адаптив --- */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 60px;
            }

            .hero-content {
                margin: 0 auto;
            }

            .hero-form-wrapper {
                margin: 0 auto;
            }

            .hero-title span::after {
                left: 50%;
                transform: translateX(-50%);
                width: 100%; /* или конкретное значение */
            }

            .fc-1 { left: 5%; }
            .fc-2 { right: 5%; }
        }

        @media (max-width: 480px) {
            .hero-title span::after { width: 90%;}
            .floating-card { display: none; } /* Убираем плашки на совсем мелких экранах */
        }

        /* --- Секция Benefits (Результаты) --- */
.benefits-section {
    padding: var(--section-padding-y) 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: var(--font-section);
    color: var(--color-primary); /* Синий цвет заголовка как на скриншоте */
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 колонки */
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Мягкая тень */
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px) !important; /* При наведении карточка всплывает */
    box-shadow: 0 15px 35px rgba(83, 139, 255, 0.15);
}

/* Стили для иконки с подложкой-кляксой */
.card-icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--color-light-secondary); /* Ваш светло-серый/голубой фон */
    border-radius: 50%; /* Идеальный круг */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-secondary); /* Иконка синяя (в цвет бренда) */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    
    /* Подключение анимации: 2 секунды, бесконечно */
    animation: pulse-soft 2s infinite;
}

/* Ключевые кадры для мягкой пульсации */
@keyframes pulse-soft {
    0% {
        /* Начало: тени нет, масштаб 1:1 */
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(83, 139, 255, 0.4); /* Полупрозрачный синий */
    }
    70% {
        /* Середина: тень расходится и исчезает */
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(83, 139, 255, 0); /* Тень стала широкой и прозрачной */
    }
    100% {
        /* Конец: сброс */
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(83, 139, 255, 0);
    }
}

/* Чтобы пульсация не была синхронной у всех (выглядит живее) */
.benefit-card:nth-child(1) .card-icon-circle { animation-delay: 0s; }
.benefit-card:nth-child(2) .card-icon-circle { animation-delay: 0.5s; }
.benefit-card:nth-child(3) .card-icon-circle { animation-delay: 1s; }
.benefit-card:nth-child(4) .card-icon-circle { animation-delay: 1.5s; }

.card-text {
    font-size: var(--font-small);
    line-height: 1.5;
    color: var(--color-text);
}

/* --- Анимация появления (Soft Fade Up) --- */
.animate-on-scroll {
    opacity: 0;
    /* Начинаем чуть ниже (50px), чтобы был виден путь */
    transform: translateY(50px) scale(0.95); 
    
    /* will-change помогает браузеру подготовиться к анимации (убирает дерганье) */
    will-change: opacity, transform, filter;
    
    /* 1.2s — время анимации (сделали медленнее).
       cubic-bezier(0.25, 0.46, 0.45, 0.94) — это формула "мягкого торможения". 
       Карточка вылетает бодро, но очень плавно останавливается.
    */
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1); /* Возвращаем на место и к 100% размеру */
}

/* Корректируем задержки, чтобы карточки не наплывали друг на друга слишком быстро,
   учитывая, что сама анимация стала длиннее.
*/
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }

/* --- Адаптив --- */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшете */
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* 1 колонка на мобильном */
        gap: 20px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
}

/* --- Секция Offer (Комплект) --- */
.offer-section {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-light-bg);
    padding: var(--section-padding-y);
    overflow: hidden;
    /* Важно: создаем новый контекст наложения */
    isolation: isolate; 
}

/* --- ДЕКОРАЦИИ --- */
.offer-section::before,
.offer-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    /* Уровень 0 (базовый) */
    z-index: 0; 
    /* !!! САМОЕ ВАЖНОЕ: делаем их "прозрачными" для кликов !!! */
    pointer-events: none; 
}

.offer-section::before {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-light-secondary) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.6;
}

.offer-section::after {
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-light-accent) 0%, rgba(255,255,255,0) 70%);
}

/* --- КОНТЕНТ --- */

/* 1. Поднимаем контейнер */
.offer-section .container {
    position: relative;
    z-index: 5;
}

/* 2. Дополнительно поднимаем сами блоки с контентом (форму и карточки) */
/* Это гарантирует, что они будут выше пятен на любых телефонах */
.offer-form-wrapper, 
.offer-content-col {
    position: relative;
    z-index: 10; 
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Левая колонка чуть уже, правая шире */
    gap: 40px;
    align-items: center;
}

/* --- Левая колонка: Форма --- */
.form-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-heading {
    font-size: 20px;
    margin-bottom: 5px;
    text-align: center;
}

.form-subheading {
    font-size: 14px;
    color: #718096;
    text-align: center;
    margin-bottom: 20px;
}

.input-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-full {
    width: 100%;
    margin-top: 15px;
}

/* Чекбоксы и мелкий текст */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.4;
    color: #4a5568;
    position: relative;
    padding-left: 25px; /* Место под галочку */
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Рисуем свою галочку */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 4px;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--color-primary);
}

/* Галочка внутри */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox a, .form-footer-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-footer-text {
    font-size: 12px;
    line-height: 1.3;
    color: #a0aec0;
    text-align: center;
    margin-top: 15px;
}

/* --- Правая колонка: Контент карточки --- */
.offer-content-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.content-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.icon-blue {
    background-color: var(--color-primary); /* Цвет PDF иконки */
}

.icon-video {
    background-color: var(--color-primary); /* Цвет Видео иконки */
}

.content-text-block h4 {
    font-size: var(--font-main);
    margin-bottom: 8px;
    color: var(--color-text);
}

.content-text-block p {
    font-size: var(--font-small);
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

/* --- Адаптив --- */
@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr; /* Одна колонка */
        gap: 50px;
    }
    
    .offer-form-wrapper {
        order: 2; /* На мобильном форма ВНИЗУ (обычно так удобнее, если это конец страницы) */
        /* Или order: -1; если хотите форму ПЕРЕД описанием */
    }
}

/* --- Стили для выделения формы --- */

/* Делаем форму относительной, чтобы иконка позиционировалась от нее */
.highlight-card {
    position: relative;
    /* Убедимся, что иконка не обрезается краями карточки */
    overflow: visible !important; 
    border: 2px solid rgba(83, 139, 255, 0.2); /* Легкая синяя обводка для акцента */
}

/* 1. Большая иконка в углу */
.form-badge-icon {
    position: absolute;
    top: -30px;  /* Вылезает вверх */
    left: -20px; /* Вылезает влево */
    width: 70px;
    height: 70px;
    background: var(--color-accent); /* Красный/Розовый фон */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(255, 105, 106, 0.4);
    z-index: 20; /* Поверх всего */
    
    /* Анимация пульсации */
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 105, 106, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 105, 106, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 105, 106, 0);
        transform: scale(1);
    }
}

/* 2. Стрелка между колонками */
.offer-content-col {
    position: relative; /* Чтобы стрелка позиционировалась от правой колонки */
}

.arrow-container {
    position: absolute;
    top: 10px; /* Высота расположения стрелки */
    left: -80px; /* Сдвигаем влево, в пространство между колонками */
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-10deg); /* Легкий наклон */
    pointer-events: none; /* Чтобы не мешала кликам */
    
    /* Анимация покачивания влево-вправо */
    animation: point-left 1.5s ease-in-out infinite alternate;
}

.arrow-text {
    font-family: 'Caveat', 'Ubuntu', sans-serif; /* Желательно рукописный шрифт */
    font-size: 18px;
    color: var(--color-accent);
    margin-top: 5px;
    font-weight: 700;
}

@keyframes point-left {
    0% { transform: translateX(0) rotate(-10deg); }
    100% { transform: translateX(-10px) rotate(-10deg); }
}

/* --- Адаптив --- */
@media (max-width: 992px) {
    /* На планшетах и телефонах стрелку скрываем, 
       так как колонки становятся друг под другом */
    .mobile-hidden {
        display: none;
    }
    
    /* Иконку на мобильном можно сделать чуть меньше и сдвинуть, 
       чтобы не вылезала за экран */
    .form-badge-icon {
        width: 60px;
        height: 60px;
        top: -20px;
        left: 20px; /* Сдвигаем внутрь, чтобы на телефоне не обрезалась слева */
        font-size: 26px;
    }
}

/* --- СЕКЦИЯ: ФУТЕР --- */
.main-footer {
    background-color: #EDF2F7; /* Светло-серый фон */
    padding: var(--section-padding-y) 0 0; /* Верхний отступ */
    color: var(--color-text);
}

.footer-grid {
    display: grid;
    /* 3 колонки: 1fr (инфо) + 1fr (документы) + 1fr (контакты) */
    grid-template-columns: 1.2fr 1fr 1fr; 
    gap: 40px;
    padding-bottom: 40px;
}

.footer-info .footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 5px;
}

.footer-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.footer-links-list a {
    color: var(--color-text);
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.2s;
}

.footer-links-list a:hover {
    color: var(--color-primary);
}

.footer-icon {
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 16px;
    margin-top: 2px;
}

/* Нижняя строка */
.footer-bottom {
    background-color:#dae3f0; /* Легкий фон для нижней полосы */
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.copyright-text {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        /* Из 3 колонок делаем 2 колонки на планшете */
        grid-template-columns: 1fr 1fr;
    }
    .footer-info {
        /* Растягиваем info-блок на всю ширину (100%) */
        grid-column: 1 / -1; 
        padding-bottom: 20px;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    }

}

@media (max-width: 576px) {
    .footer-grid {
        /* На мобильных делаем 1 колонку */
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-info {
        border-bottom: none;
        padding-bottom: 0;
    }
    .footer-links-block:nth-child(2) {
        /* Добавляем разделитель между блоками Документы и Контакты */
        border-top: 1px dashed rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }
}