:root {

    --bone-white: #F5F5F2;

    --arctic-blue: #00B4FF;

    --graphite: #1A1A1A;    

    --ash-gray: #CDCCCC;    

}



/* БАЗОВЫЕ НАСТРОЙКИ */

* { margin: 0; padding: 0; box-sizing: border-box; }



body {

    background: var(--bone-white);

    font-family: 'Montserrat', sans-serif;

    color: var(--graphite);

    line-height: 1.4;

    overflow-x: hidden;

    /* ЗАЩИТА ОТ КОПИРОВАНИЯ (Глобальная) */

    -webkit-user-select: none;

    -ms-user-select: none;

    user-select: none;

}



/* Скроллбар в стиле бренда */

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background: var(--bone-white); }

::-webkit-scrollbar-thumb { background: var(--graphite); border: 2px solid var(--bone-white); }

::-webkit-scrollbar-thumb:hover { background: var(--arctic-blue); }



/* Разрешаем выделение в полях ввода */

input, textarea {

    -webkit-user-select: text;

    -ms-user-select: text;

    user-select: text;

}



/* ИСКЛЮЧЕНИЕ ДЛЯ КОПИРОВАНИЯ КОНТАКТОВ */

.contact-info-text,

.contact-info-text p,

.contact-info-text a,

.member-info {

    -webkit-user-select: text !important;

    -ms-user-select: text !important;

    user-select: text !important;

}



.wrap { max-width: 1400px; margin: 0 auto; padding: 0 60px; }



.bg-geometry {

    position: fixed; top: 0; right: 0;

    width: 40vw; height: 100vh;

    background: var(--ash-gray);

    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);

    z-index: -1;

}



/* НАВИГАЦИЯ */

.nav-monolith {

    padding: 30px 0; border-bottom: 2px solid var(--graphite);

    background: var(--bone-white); position: sticky; top: 0; z-index: 1000;

}

.header-flex { display: flex; justify-content: space-between; align-items: center; }



.logo-group { text-decoration: none; display: block; }

.logo-main {

    font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900;

    color: var(--graphite); text-transform: uppercase; line-height: 1;

}

.logo-main span { color: var(--arctic-blue); }

.logo-tag { font-size: 9px; letter-spacing: 2px; font-weight: 800; color: var(--arctic-blue); margin-top: 8px; }



.nav-links { display: flex; gap: 30px; }

.nav-item {

    font-size: 11px; font-weight: 900; text-transform: uppercase;

    color: var(--graphite); text-decoration: none; border-bottom: 2px solid transparent; padding-bottom: 4px;

}

.nav-item:hover, .nav-item.active { border-color: var(--arctic-blue); color: var(--arctic-blue); }



/* ТИПОГРАФИКА */

.main-title {

    font-family: 'Playfair Display', serif;

    font-size: clamp(45px, 7vw, 90px);

    line-height: 0.85; font-weight: 900;

    text-transform: uppercase; margin: 60px 0;

}

.label-blue { color: var(--arctic-blue); font-size: 10px; font-weight: 900; letter-spacing: 2px; margin-bottom: 15px; display: block; }



/* СЕТКА КАРТОЧЕК */

.brutal-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

    gap: 60px;

    margin-bottom: 100px;

}



.brutal-wrapper { position: relative; }



.brutal-card {

    position: relative;

    border: 4px solid var(--graphite);

    padding: 50px;

    background: #FFFFFF;

    z-index: 2;

    height: 100%;

    transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);

}

.brutal-card.dark { background: var(--graphite); color: white; }

.brutal-card h3 { font-size: 28px; font-weight: 900; margin-bottom: 20px; line-height: 1.1; text-transform: uppercase; transition: 0.3s; }



/* ЭФФЕКТЫ ПРИ НАВЕДЕНИИ */

.brutal-wrapper:hover .brutal-card { transform: translate(-8px, -8px); }

.brutal-wrapper:hover .brutal-shadow { background: var(--arctic-blue); transform: translate(4px, 4px); }

.brutal-wrapper:hover .member-name { color: var(--arctic-blue); }



.brutal-shadow {

    position: absolute; top: 15px; left: 15px;

    width: 100%; height: 100%;

    background: var(--graphite); z-index: 1;

    transition: 0.3s;

}

.brutal-shadow.arctic { background: var(--arctic-blue); }



/* О ФИРМЕ */

.expertise-row {

    display: grid;

    grid-template-columns: 450px 1fr;

    gap: 80px;

    align-items: start;

    margin-bottom: 100px;

}

.card-border-frame {

    border: 4px solid var(--graphite);

    padding: 50px;

    background: #FFF;

    box-shadow: 15px 15px 0 var(--graphite);

    transition: 0.3s;

}

.card-border-frame:hover { box-shadow: 15px 15px 0 var(--arctic-blue); }



.founder-name-new { font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 900; line-height: 1; margin-bottom: 20px; }

.founder-desc-new { font-size: 14px; font-weight: 600; line-height: 1.6; }



.lead-box-new {

    border-left: 8px solid var(--arctic-blue);

    padding-left: 40px;

    font-size: 24px;

    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 40px;

    text-transform: uppercase;

}

.details-box-new p { font-size: 17px; margin-bottom: 25px; }



/* КОМАНДА */

.member-photo { width: 100%; height: 420px; background: var(--ash-gray); border: 2px solid var(--graphite); margin-bottom: 25px; overflow: hidden; }

.member-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; pointer-events: none; }

.member-photo img:hover { filter: grayscale(0%); }

.member-name { font-size: 24px; font-weight: 900; line-height: 1.1; margin-bottom: 10px; text-transform: uppercase; transition: 0.3s; }

.member-info { font-size: 13px; font-weight: 700; opacity: 0.7; text-transform: uppercase; }



/* КОНТАКТЫ */

.contact-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; margin-top: 40px; }

.brutal-input {

    width: 100%; border: 4px solid var(--graphite); padding: 22px;

    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; outline: none;

    transition: 0.2s;

}

.brutal-input:focus { box-shadow: 8px 8px 0 var(--arctic-blue); }



.brutal-btn {

    background: var(--graphite); color: white; border: none; padding: 25px 60px;

    font-weight: 900; text-transform: uppercase; cursor: pointer; transition: 0.3s;

}

.brutal-btn:disabled { background: var(--ash-gray); cursor: not-allowed; opacity: 0.6; }

.brutal-btn:not(:disabled):hover { background: var(--arctic-blue); color: var(--graphite); box-shadow: 10px 10px 0 var(--graphite); }



/* ФУТЕР */

.footer-minimal { border-top: 2px solid var(--graphite); padding: 50px 0; margin-top: 100px; }

.f-content { display: flex; justify-content: space-between; align-items: center; }



@media (max-width: 1000px) {

    .wrap { padding: 0 30px; }

    .expertise-row, .contact-container { grid-template-columns: 1fr; gap: 50px; }

    .bg-geometry { display: none; }

}

/* ОТРАСЛЕВОЙ ОПЫТ */

.industry-divider {

    width: 100%;

    height: 1px;

    background: var(--graphite);

    margin: 60px 0 30px 0;

}



.industry-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    margin-bottom: 80px;

}



.industry-item {

    border-left: 4px solid var(--arctic-blue);

    padding: 15px 20px;

    background: #fff;

    transition: 0.3s;

}



/* Убираем эффект смены цвета при наведении */

.industry-item:hover {

    background: #fff; /* Оставляем белый фон */

    color: var(--graphite); /* Оставляем темный текст */

    transform: none; /* Убираем масштабирование */

}



.industry-number {

    font-size: 10px;

    font-weight: 900;

    color: var(--arctic-blue);

    margin-bottom: 5px;

    display: block;

}



.industry-name {

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

    line-height: 1.3;

}



/* МОДАЛЬНОЕ ОКНО ЛИЦЕНЗИЙ */

.modal-overlay {

    position: fixed;

    top: 0; left: 0;

    width: 100%; height: 100%;

    background: rgba(26, 26, 26, 0.95);

    display: none; /* Скрыто по умолчанию */

    justify-content: center;

    align-items: center;

    z-index: 2000;

}



.modal-content {

    background: var(--bone-white);

    padding: 40px;

    border: 4px solid var(--arctic-blue);

    max-width: 900px;

    width: 90%;

    max-height: 80vh;

    overflow-y: auto;

    position: relative;

}



.close-modal {

    position: absolute;

    top: 20px; right: 20px;

    font-size: 24px;

    font-weight: 900;

    cursor: pointer;

    color: var(--graphite);

}



.license-preview-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 20px;

}



.license-card {

    border: 2px solid var(--graphite);

    padding: 20px;

    text-align: center;

}



.license-card img {

    width: 100%;

    height: auto;

    margin-bottom: 15px;

    filter: grayscale(100%);

}

/* СТИЛИ ССЫЛОК В ФУТЕРЕ */

.f-links a {

    text-decoration: none;

    color: var(--graphite);

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    margin-left: 20px;

    transition: 0.3s;

}



.f-links a:hover {

    color: var(--arctic-blue);

}/* Позиционирование ссылок в футере */

.f-content {

    display: flex;

    justify-content: space-between; /* Логотип справа, ссылки слева */

    align-items: center;

    flex-direction: row-reverse; /* Разворачиваем, чтобы ссылки были слева */

}



.f-links {

    display: flex;

    gap: 25px; /* Расстояние между ссылками */

}



.f-links a {

    text-decoration: none;

    color: var(--graphite);

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.3s;

}



.f-links a:hover {

    color: var(--arctic-blue);

}.license-card {

    transition: 0.3s ease;

    border: 2px solid var(--graphite);

    padding: 20px;

    background: #fff;

}



.license-card:hover {

    border-color: var(--arctic-blue);

    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(0,0,0,0.1);

}.cookie-banner {

    position: fixed;

    bottom: 20px;

    left: 20px;

    right: 20px;

    background: var(--graphite);

    color: #fff;

    padding: 20px;

    border: 3px solid var(--arctic-blue);

    z-index: 3000;

    display: flex;

    justify-content: center;

}
.cookie-content {

    max-width: 1200px;

    display: flex;

    align-items: center;

    gap: 20px;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}



.cookie-content a {

    color: var(--arctic-blue);

    text-decoration: underline;

}



.cookie-btn {

    background: var(--arctic-blue);

    color: #fff;

    border: none;

    padding: 10px 20px;

    font-weight: 900;

    cursor: pointer;

    font-size: 10px;

}



.cookie-btn:hover {

    background: #fff;

    color: var(--graphite);

}.cookie-banner {

    position: fixed;

    bottom: 0; left: 0; right: 0;

    background: var(--graphite);

    color: white;

    padding: 20px;

    z-index: 9999;

    justify-content: center;

    border-top: 4px solid var(--arctic-blue);

}

.cookie-content { display: flex; align-items: center; gap: 30px; }

.cookie-btn {

    background: var(--arctic-blue); color: white; border: none;

    padding: 10px 20px; font-weight: 900; cursor: pointer;

}

.cookie-btn:hover { background: white; color: var(--graphite); }

/* MOBILE OPTIMIZATION (ФИНАЛЬНЫЙ АДАПТИВ) */

@media (max-width: 768px) {

    /* 1. Навигация */

    .header-flex {

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 15px;

    }

    .nav-links {

        gap: 15px;

        flex-wrap: wrap;

        justify-content: center;

    }

    .logo-main { font-size: 24px; }

    .header-slogan-line { font-size: 8px; letter-spacing: 1px; }



    /* 2. Контент и карточки */

    .wrap { padding: 0 20px; } /* Уменьшаем боковые поля */

   

    .brutal-grid {

        grid-template-columns: 1fr; /* Только одна колонка */

        gap: 30px;

    }

    .brutal-card { padding: 30px 20px; } /* Уменьшаем внутренние отступы */

   

    .main-title { font-size: 32px !important; } /* Уменьшаем заголовки */



    /* 3. Отраслевой опыт */

    .industry-grid {

        grid-template-columns: 1fr;

        gap: 10px;

    }

    .industry-name { font-size: 12px; }



    /* 4. Футер */

    .f-content {

        flex-direction: column; /* Складываем ссылки и лого друг под друга */

        gap: 20px;

        text-align: center;

    }

    .f-links {

        flex-direction: column;

        gap: 15px;

        align-items: center;

    }

    .f-links a { margin: 0; }



    /* 5. Модальное окно (Лицензии) */

    .modal-content {

        padding: 20px;

        width: 95%;

    }

    .license-preview-grid {

        grid-template-columns: 1fr; /* Лицензии одна под другой */

    }

}
/* ==========================================================================
   DROPDOWN LANGUAGE SWITCHER - CONTRAST MONOLITH
   ========================================================================== */
.lang-dropdown {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Основная кнопка (RU) */
.lang-current {
    background: #E8E8E8; /* Заметно темнее основного белого */
    color: #00A3FF;      /* Твой Arctic Blue */
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #1A1A1A; /* Брутальная черная линия */
    cursor: pointer;
    transition: 0.2s ease;
}

.lang-current .arrow {
    font-size: 8px;
    color: #1A1A1A;
}

/* Выпадающий список */
.lang-list {
    display: none; 
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #E8E8E8; /* Тот же серый цвет */
    border-bottom: 2px solid #1A1A1A;
}

.lang-list a {
    display: block;
    padding: 12px 24px;
    color: #00A3FF;
    text-decoration: none;
    transition: 0.2s;
    /* Тонкий разделитель между языками */
    border-top: 1px solid rgba(26, 26, 26, 0.1); 
}

/* Эффекты взаимодействия */
.lang-dropdown:hover .lang-list {
    display: block;
}

/* При наведении на пункт список становится еще чуть темнее */
.lang-list a:hover {
    background: #DCDCDC;
    color: #0082CC;
}

/* Поворот стрелочки */
.lang-dropdown:hover .lang-current .arrow {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .lang-dropdown {
        top: auto;
        bottom: 25px;
        right: 25px;
    }
}