/* --- Сброс стилей и Переменные --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #002D62; /* Темно-синий OMEGATEL */
    --accent-blue: #0066CC;  /* Яркий синий */
    --text-dark: #333;
    --text-light: #fff;
    --gray-bg: #f4f7f6;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ХЭДЕР (ШАПКА) --- */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Логотип (ссылка-обертка) */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
/* Новая картинка логотипа */
.main-logo {
    height: 120px; /* Устанавливаем высоту, ширина подстроится автоматически */
    width: auto;
    display: block; /* Убирает лишние отступы снизу картинки */
}
/* Эффект при наведении на логотип */
.logo {
    transition: transform 0.3s ease, opacity 0.3s ease; /* Плавность */
}

.logo:hover {
    opacity: 0.8;       /* Слегка становится прозрачным */
    transform: scale(1.05); /* Едва заметно увеличивается (эффект "нажатия") */
    cursor: pointer;    /* Курсор точно станет "рукой" */
}

/* Навигация */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

/* Кнопки в меню */
.btn-quote {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-quote:hover {
    background-color: #004499;
}

.btn-contact {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-contact:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Языковой свитчер */
.lang-switcher {
    cursor: pointer;
    position: relative;
    font-weight: 600;
}
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}
.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher.active .lang-dropdown {
    display: block;
}

/* --- СТИЛИ ДЛЯ БУРГЕРА (КНОПКА МЕНЮ) --- */
.burger {
    display: none; /* На ПК скрыт */
    cursor: pointer;
    z-index: 2000; /* ВАЖНО: Кнопка должна быть ПОВЕРХ выпадающего меню */
}

/* --- СТИЛИ ДЛЯ ПАЛОЧЕК --- */
.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 5px;
    transition: all 0.3s ease;
    /* Важно: сохраняем позицию, чтобы трансформации работали от центра */
    position: relative; 
}

/* --- АНИМАЦИЯ ПРЕВРАЩЕНИЯ В КРЕСТИК (ИДЕАЛЬНАЯ) --- */

/* 1. Верхняя палочка: Опускается на 8px вниз и поворачивается */
.toggle .line1 {
    transform: translateY(8px) rotate(45deg);
}

/* 2. Средняя исчезает (становится прозрачной) */
.toggle .line2 {
    opacity: 0;
}

/* 3. Нижняя палочка: Поднимается на 8px вверх и поворачивается */
.toggle .line3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- ABOUT US (ПРЯМОЙ ГРАДИЕНТ И АНИМАЦИЯ) --- */
/* --- ВЕРТИКАЛЬНАЯ ФОРМУЛА (Math Style) --- */
.formula-vertical {
    display: inline-flex; /* Блок занимает столько места, сколько нужно тексту */
    flex-direction: column; /* Вертикальный стек */
    align-items: flex-start; /* Выравнивание по левому краю */
    gap: 5px; /* Отступ между строками */
    margin-bottom: 40px; /* Отступ от формулы до текста ниже */
    
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Жирный шрифт */
    font-size: 24px;  /* Крупный размер */
    color: var(--primary-blue); /* Темно-синий */
}

/* Плюсики и Равно делаем чуть светлее или цветными */
.formula-vertical span {
    color: var(--accent-blue); /* Ярко-синий для знаков */
    margin-right: 10px; /* Отступ от знака до текста */
    display: inline-block;
    width: 20px; /* Фиксированная ширина, чтобы текст ровно стоял */
}

/* Итоговая строка (= Best Price) */
.formula-result {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 3px solid #e0e0e0; /* Линия "итого" как в чеке */
    width: 100%; /* Линия на всю ширину текста */
    color: var(--accent-blue); /* Результат выделяем ярким цветом */
}

.about-section {
    padding: 40px 0; /* Уменьшили отступы сверху и снизу (было 80px) */
    background: linear-gradient(105deg, #ffffff 45%, var(--primary-blue) 100%);
    position: relative;
}

.about-section h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 40px;
    color: #666;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

/* --- АНИМАЦИЯ ПАРЕНИЯ --- */
@keyframes float-img {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes shadow-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.2;
        filter: blur(15px);
    }
    50% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.1;
        filter: blur(25px);
    }
}

/* Контейнер картинки */
.about-image-container {
   flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    
    /* Еще выше */
    margin-top: -130px; 
    
    /* Сдвигаем вправо (добавляем отступ слева) */
    padding-left: 80px;
}

/* Картинка (Сим-карта) */
.about-image {
    width: 80%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
    animation: float-img 5s ease-in-out infinite;
}

/* Тень на полу */
.about-image-container::after {
    content: '';
    position: absolute;
    bottom: -30px; /* Тень под картинкой */
    left: 65%;
    width: 80%;
    height: 35px;
    background: #000;
    border-radius: 50%;
    z-index: 1;
    animation: shadow-pulse 5s ease-in-out infinite;
}




/* --- PARTNERS STATIC --- */
.partners-section {
    padding: 60px 0;
    background-color: #ffffff; 
    border-top: none; /* Стык цвета с синим фоном About будет четким */
    border-bottom: 1px solid #e0e0e0;
}

.partners-section h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #888;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Контейнер для логотипов */
.slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* Убираем overflow: hidden, чтобы тени не обрезались, если они есть */
    overflow: visible; 
}

/* Трек теперь становится просто гибким контейнером */
.slide-track {
    display: flex;
    justify-content: center; /* Центрируем логотипы */
    flex-wrap: wrap;       /* Разрешаем перенос на новую строку на мобильных */
    gap: 40px;             /* Расстояние между логотипами */
    
    /* УБИРАЕМ АНИМАЦИЮ И ФИКСИРОВАННУЮ ШИРИНУ */
    width: auto; 
    animation: none; 
}

/* Слайд (Ячейка логотипа) */
.slide {
    height: 100px; /* Чуть меньше высота, так как нет движения */
    width: 200px;  /* Оптимальная ширина для статики */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Картинки */
.slide img {
    max-width: 100%;
    max-height: 80px; /* Размер логотипа */
    width: auto;
    object-fit: contain;
    
    /* Стили: цветные, но чуть прозрачные */
    filter: none;
    opacity: 1; 
    mix-blend-mode: multiply; /* Убирает белый фон у jpg */
 
}


/* УБИРАЕМ ТЕНИ ПО БОКАМ (Они нужны только для карусели) */
.slider::before,
.slider::after {
    display: none;
}

/* --- TEAM --- */
.team-section {
    padding: 80px 0;
}
.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-blue);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.team-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
}
.team-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.team-photo {
    width: 150px;         /* Размер фото */
    height: 150px;
    object-fit: cover;    /* Чтобы фото не сплющивалось, если оно не квадратное */
    border-radius: 50%;   /* Делает фото круглым */
    margin: 0 auto 20px;  /* Центрирует */
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Легкая тень для красоты */
}

/* --- ОБЩИЕ СТИЛИ ДЛЯ БЛОКА ИНДУСТРИИ (Исправление высоты) --- */
.industry-item {
    height: 400px; /* Фиксированная высота, чтобы картинки не были узкими */
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
    overflow: hidden; /* Чтобы увеличенный текст не вылезал за рамки */
}

/* Заголовок секции */
.section-title-center {
    text-align: center;
    font-size: 52px;
    color: var(--primary-blue);
    margin: 50px 0 30px;
}

/* --- ОВЕРЛЕЙ И КОНТЕНТ (Всегда виден) --- */
.industry-overlay {
    /* ТЕПЕРЬ ТЕМНЕЕ: 
       Было 0.5 и 0.6 (полупрозрачно)
       Стало 0.7 и 0.8 (более плотный фон) 
    */
    background: linear-gradient(to right, rgba(0, 45, 98, 0.7), rgba(0, 0, 0, 0.8));
    
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    
    transition: background 0.4s ease;
}

/* Эффект при наведении: ЕЩЕ ЧУТЬ ТЕМНЕЕ */
.industry-item:hover .industry-overlay {
    /* При наведении затемняем почти полностью (до 0.9), чтобы текст "горел" */
    background: linear-gradient(to right, rgba(0, 45, 98, 0.8), rgba(0, 0, 0, 0.9));
}

/* --- ЗАГОЛОВОК (Слева) --- */
.industry-overlay h3 {
    flex: 1; /* Занимает левую половину */
    text-align: right; /* Прижат к центру */
    padding-right: 30px; /* Отступ от разделительной линии */
    
    color: white;
    font-size: 52px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Тень, чтобы читалось на светлом фото */
    
    /* Заголовок статичен, не прыгает */
    transition: transform 0.4s ease;
}

/* --- ОПИСАНИЕ (Справа, Всегда видно) --- */
.industry-desc {
    flex: 1; /* Занимает правую половину */
    list-style: none; /* Отключаем стандартные скучные точки */
    color: #f0f0f0;
    font-size: 25px;
    line-height: 1.5;
    
    /* Линия-разделитель */
    border-left: 2px solid #00aaff;
    padding-left: 30px; /* Отступ текста от линии */
    
    /* Настройки анимации (Zoom) */
    transform: scale(1); 
    transform-origin: left center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Настройки каждого пункта */
.industry-desc li {
    position: relative; /* Чтобы позиционировать буллит */
    padding-left: 20px; /* Место для буллита слева от текста */
    margin-bottom: 8px; /* Расстояние между строками */
}

/* --- СТИЛЬНЫЕ СИНИЕ БУЛЛИТЫ --- */
.industry-desc li::before {
    content: "■"; /* Квадратный символ (можно поменять на "•" для круга) */
    color: #00aaff; /* Ярко-синий цвет (Accent Blue) */
    font-size: 10px; /* Размер квадратика */
    position: absolute;
    left: 0;      /* Прижимаем влево */
    top: 4px;     /* Чуть опускаем вниз для ровности */
    line-height: 15px;
}

/* --- ЭФФЕКТЫ ПРИ НАВЕДЕНИИ (ZOOM) --- */
.industry-item:hover .industry-desc {
    transform: scale(1.1); /* Увеличение */
    color: white; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* При наведении буллиты тоже могут чуть ярко светиться (по желанию) */
.industry-item:hover .industry-desc li::before {
    text-shadow: 0 0 5px #00aaff;
}

.industry-desc li {
    margin-bottom: 6px;
}

/* --- ЭФФЕКТЫ ПРИ НАВЕДЕНИИ (ZOOM) --- */

/* 1. Текст описания становится больше и ярче */
.industry-item:hover .industry-desc {
    transform: scale(1.1); /* Увеличиваем на 10% */
    color: white; /* Делаем текст ярко-белым */
    text-shadow: 0 2px 10px rgba(0,0,0,0.8); /* Добавляем тень для контраста */
}

/* 2. Заголовок чуть отодвигается влево (для баланса) */
.industry-item:hover h3 {
    transform: translateX(-10px);
}


/* --- ФОНЫ ДЛЯ КОНКРЕТНЫХ ИНДУСТРИЙ (PNG) --- */

.industry-security { 
    background-image: url('../assets/images/security.jpeg'); 
}

.industry-transport { 
    background-image: url('../assets/images/transport.jpeg'); 
}

.industry-logistics { 
    background-image: url('../assets/images/logistics.jpeg'); 
}

.industry-automotive { 
    background-image: url('../assets/images/automotive.jpeg'); 
}

.industry-construction { 
    background-image: url('../assets/images/construction.jpeg'); 
}

.industry-agriculture { 
    background-image: url('../assets/images/agriculture.jpeg'); 
}

.industry-mobility { 
    background-image: url('../assets/images/mobility.jpeg'); 
}
/* --- FOOTER --- */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}


/* --- СТИЛИ ДЛЯ СТРАНИЦЫ QUOTE И CONTACT --- */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.form-section {
    padding: 60px 0;
    background-color: #fff;
}

.form-container {
    max-width: 800px; /* Делаем форму уже, чем весь экран */
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical; /* Можно растягивать только вниз */
}

.form-btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.form-btn:hover {
    background-color: var(--accent-blue);
}
/* --- FOOTER (MINIMALIST & ELEGANT) --- */
footer {
    background-color: #121212; /* Почти черный */
    color: #999; /* Серый текст */
    padding: 70px 0 30px;
    font-size: 14px;
}

.footer-container {
    max-width: 600px; /* Ограничиваем ширину контейнера, чтобы линия была не во весь экран */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- СТИЛИ БЛОКОВ --- */
.footer-section {
    width: 100%; /* Чтобы линия была во всю ширину контейнера (600px) */
    padding-bottom: 30px; /* Отступ текста от линии */
    margin-bottom: 30px;  /* Отступ линии от следующего блока */
}

/* МАГИЯ: Делаем линию только у ПЕРВОГО блока (About), отделяя его от Legal */
.footer-section:first-child {
    border-bottom: 1px solid #333; /* Тонкая темная линия */
}

/* --- ЗАГОЛОВКИ (About, Legal) --- */
.footer-section h4 {
    color: #fff; /* Белый цвет */
    font-weight: 400; /* Убираем жирность (было bold) */
    font-size: 12px;  /* Делаем шрифт меньше */
    text-transform: uppercase;
    letter-spacing: 2px; /* Разряжаем буквы для стиля */
    margin-bottom: 20px;
    opacity: 0.8; /* Чуть приглушаем яркость */
}

/* --- ТЕКСТ (About) --- */
.footer-about-text {
    line-height: 1.8; /* Делаем текст "воздушным" */
    font-size: 13px;
    color: #888;
}

/* --- ССЫЛКИ (Legal) --- */
.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px; /* Больше воздуха между ссылками */
    padding: 0;
    margin: 0;
}

.footer-links li a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400; /* Тонкий шрифт */
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #fff; /* При наведении становятся белыми */
}

/* --- КОПИРАЙТ (Самый низ) --- */
.footer-bottom {
    margin-top: 40px;
    font-size: 11px;
    color: #444; /* Очень тусклый текст, чтобы не отвлекал */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
/* --- LEGAL PAGES (Privacy & Cookies) --- */
.legal-header {
    background: #f4f7f6;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.legal-header h1 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.legal-header p {
    color: #666;
    font-size: 14px;
}

.legal-content {
    max-width: 800px; /* Узкий контейнер для удобного чтения */
    margin: 60px auto;
    padding: 0 20px;
}

.legal-content h2 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.legal-content h3 {
    font-size: 18px;
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    color: #555;
    margin-bottom: 15px;
    text-align: justify; /* Выравнивание текста для аккуратности */
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.legal-content ul li {
    margin-bottom: 10px;
}
/* --- COOKIE BANNER (COMPACT & INLINE) --- */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #ccc;
    padding: 10px 0; /* Уменьшили высоту полоски */
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    display: none;
}

.cookie-banner.show {
    bottom: 0;
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    display: flex;
    align-items: center;
    justify-content: center; /* Центрируем всё (текст и кнопки рядом) */
    gap: 30px; /* Небольшой отступ между текстом и кнопками */
}

/* Текст */
.cookie-content p {
    font-size: 12px; /* Уменьшили шрифт */
    margin: 0;
    line-height: 1.4;
    color: #848383;
}

.cookie-content a {
    color: #b6b4b4;
    text-decoration: underline;
}

/* Контейнер кнопок */
.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Кнопки (Сделали меньше и компактнее) */
.btn-accept {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 6px 15px; /* Уменьшили отступы внутри кнопки */
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px; /* Уменьшили шрифт кнопки */
    transition: 0.3s;
    white-space: nowrap;
}

.btn-accept:hover {
    background-color: var(--accent-blue);
}

.btn-decline {
    background-color: transparent;
    color: #999;
    border: 1px solid #444;
    padding: 6px 15px; /* Уменьшили отступы внутри кнопки */
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px; /* Уменьшили шрифт кнопки */
    transition: 0.3s;
    white-space: nowrap;
}

.btn-decline:hover {
    border-color: #fff;
    color: #fff;
}
/* --- МОБИЛЬНАЯ ВЕРСИЯ (ПОЛНОЭКРАННОЕ МЕНЮ) --- */
@media (max-width: 768px) {
    
    /* 1. Меню выезжает от самого верха */
    .nav-links {
        position: fixed;
        right: 0px;
        top: 0px;
        height: 100vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        
        /* Сдвигаем контент вниз */
        padding-top: 100px; 
        justify-content: flex-start;
        
        /* УВЕЛИЧИЛИ ОТСТУП МЕЖДУ КНОПКАМИ */
        gap: 50px; /* Было 25px. Теперь кнопки стоят широко и красиво */
        
        z-index: 1500;
    }

    /* 2. Жестко фиксируем кнопку (бургер/крестик) в углу */
    .burger {
        display: block;
        position: fixed; /* Кнопка всегда видна в углу */
        top: 25px;       /* Отступ сверху */
        right: 25px;     /* Отступ справа */
        z-index: 2000;   /* Самый верхний слой */
    }
    /* --- ЯЗЫКИ НА МОБИЛЬНОМ (Вертикальный список) --- */
    
    /* Сам контейнер (Глобус + EN) */
    .lang-switcher {
        display: flex;
        flex-direction: column; 
        align-items: center;
        gap: 15px; 
        width: 100%; 
        margin-bottom: 30px; /* Добавим отступ снизу для воздуха */
    }

    /* Блок с кнопками (FR, ZH) */
    .lang-dropdown {
        display: flex !important; 
        position: static; 
        
        /* ИЗМЕНЕНИЕ: Ставим в колонку (список) */
        flex-direction: column; 
        
        gap: 15px; 
        box-shadow: none;
        background: transparent;
        border: none;
        width: auto;
        padding: 0;
    }

    /* Стиль кнопок языков */
    .lang-dropdown a {
        background-color: #f0f4f8; 
        color: var(--primary-blue);
        padding: 12px 0; /* Отступы только сверху и снизу */
        
        /* ИЗМЕНЕНИЕ: Фиксированная ширина, чтобы кнопки были одинаковыми */
        width: 200px;    
        
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        border: 1px solid #e1e1e1;
        text-decoration: none; /* Убираем подчеркивание, если есть */
    }
    .nav-active {
        transform: translateX(0%);
    }
    
    /* Анимация ссылок */
    .nav-links li {
        opacity: 0;
        width: 100%;
        text-align: center;
    }

    @keyframes navLinkFade {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0px); }
    }

    .formula-vertical {
        font-size: 20px;
    }
    /* --- Стили для контента на мобильном --- */
    .about-content {
        flex-direction: column;
    }
    
    .about-image-container {
        margin-top: 40px; /* Чуть больше отступ сверху */
        padding-left: 0;  /* ВАЖНО: Убираем сдвиг вправо, который был на ПК */
        width: 100%;
        
        /* ЯВНО центрируем содержимое */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* НОВОЕ: Исправляем положение тени на мобильном */
    .about-image-container::after {
        left: 50%; /* Ставим точку отсчета по центру */
        /* Сдвигаем влево на 50% своей ширины, чтобы встать идеально ровно */
        transform: translateX(-50%) scale(1); 
        width: 60%; /* Тень чуть уже на телефонах */
        bottom: -20px;
    }

    .about-section {
        background: linear-gradient(to bottom, #ffffff 40%, var(--primary-blue) 100%);
        padding-bottom: 80px;
    }

    /* --- УВЕЛИЧЕНИЕ ФОТО КОМАНДЫ (MOBILE) --- */
    .team-photo {
        width: 210px;  /* Было 150px. Стало на 40% больше */
        height: 210px; 
        margin-bottom: 25px; /* Чуть больше отступ снизу до имени */
    }

    .partners-section {
        margin-top: -30px;
        padding-top: 40px;
    }

    .section-title-center {
        font-size: 25px;
        margin: 30px 0 20px;
    }

    .industry-item {
        min-height: 220px; /* Было 300-400px. Стало компактнее */
        height: auto;
    }

    .industry-overlay {
        flex-direction: column; /* Вертикально */
        text-align: center;
        /* Возвращаем старый градиент */
        background: linear-gradient(to bottom, rgba(0, 45, 98, 0.6), rgba(0, 0, 0, 0.7));
        padding: 15px 10px; /* Уменьшили внутренние отступы */
    }

    .industry-overlay h3 {
        text-align: center;
        padding-right: 0;
        padding-bottom: 10px; /* Чуть меньше отступ */
        flex: 0; 
        font-size: 25px; /* Заголовок карточки */
        width: 100%;
    }

        /* Контейнер списка */
    .industry-desc {
        border-left: none;
        border-top: 2px solid #00aaff;
        padding-top: 10px;
        font-size: 14px;
        line-height: 1.3;
        
        /* ТРЮК: Центрируем блок, но текст внутри ровняем влево для буллитов */
        display: inline-block; /* Блок занимает ширину контента */
        margin: 0 auto;        /* Центрируем сам блок */
        text-align: left;      /* Текст внутри по левому краю */
        padding-left: 0;
    }
    
/* ВЕРНУЛИ БУЛЛИТЫ */
    .industry-desc li::before {
        display: block;        /* Показываем их */
        content: "■";
        color: #00aaff;
        font-size: 8px;
        position: absolute;
        left: -15px;           /* Ставим слева от текста */
        top: 5px;
    }
    
    .industry-desc li {
        position: relative;
        margin-left: 15px;     /* Отступ для текста, чтобы влез буллит */
        margin-bottom: 4px;
    }
    
    /* Легкий зум */
    .industry-item:hover .industry-desc {
        transform: none;
    }
    .industry-item:hover h3 {
        transform: none;
    }
    
    /* Cookie баннер на мобильном */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}


