/*
Theme Name: Midas Supply
Author: Midas
Version: 1.1
*/

/* Сброс и база */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Верхняя полоска */
.top-bar {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Хедер */
.site-header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Меню */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 4px;
    transition: 0.2s ease-in-out;
}

.main-navigation a:hover {
    color: #2c3e50;
    background: #f8f9fa;
}

.main-navigation a.active {
    background-color: #1c2b39; /* Тот самый темно-синий */
    color: #ffffff !important;
}










/* --- 1. СТИЛИ БАННЕРА (Чтобы все было ровно) --- */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;   /* Центр по вертикали */
    justify-content: center; /* Центр по горизонтали */
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif; /* Твой шрифт */
    font-size: clamp(40px, 5vw, 64px); /* Адаптивный размер */
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn-wrapper {
    margin-top: 20px;
}

/* --- 2. ТВОИ СТИЛИ КНОПКИ (Без изменений) --- */

/* Базовый стиль всех кнопок */
.btn-primary, .btn-secondary, .btn-white, .btn-black {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px; /* Делает кнопку круглой по бокам (таблетка) */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Плавная анимация */
    cursor: pointer;
    border: none;
    text-align: center;
}

/* Синяя кнопка (как Nature-Related Risks) */
.btn-primary {
    background-color: #0056e0; /* Яркий синий из дизайна */
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 86, 224, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: #0046b8;
    transform: translateY(-3px); /* Подпрыгивание */
    box-shadow: 0 8px 25px rgba(0, 86, 224, 0.4);
}

/* Эффект блика */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s;
}

.btn-primary:hover::after {
    left: 120%;
}

/* Черная кнопка (как Social Responsibility) */
.btn-black {
    background-color: #000000;
    color: #ffffff !important;
}

.btn-black:hover {
    background-color: #222222;
    transform: scale(1.05); /* Легкое увеличение */
}

/* Анимация нажатия для всех кнопок */
.btn-primary:active, .btn-black:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* --- Адаптив для мобильных --- */
@media (max-width: 768px) {
    .hero-btn-wrapper {
        width: 100%;
    }
    .btn-primary {
        width: 100%; /* Кнопка на всю ширину на телефоне */
    }
}










/* --- БЛОК ПРЕИМУЩЕСТВ (ОХУЕННЫЙ) --- */

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feat-item {
    position: relative;
    padding: 60px 40px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

/* Огромная цифра на заднем плане */
.feat-num {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 86, 224, 0.03); /* Очень бледный синий */
    line-height: 1;
    z-index: -1;
    transition: all 0.6s ease;
}

.feat-item h3 {
    font-size: 24px;
    color: #0a1622;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.feat-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    max-width: 90%;
}

/* Декоративная линия, которая «заряжается» */
.feat-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #0056e0, #4a90e2);
    transition: width 0.5s ease;
}

/* Эффекты при наведении */
.feat-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 86, 224, 0.1);
    border-color: rgba(0, 86, 224, 0.1);
}

.feat-item:hover .feat-num {
    color: rgba(0, 86, 224, 0.08);
    transform: scale(1.2) translate(-20px, 20px);
}

.feat-item:hover h3 {
    color: #0056e0;
}

.feat-item:hover::after {
    width: 100%;
}












/* Поставщики */
.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.supplier-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    text-align: left;
}

.supplier-card strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a2b3a;
}

.supplier-card p {
    color: #666;
    font-size: 14px;
}

/* Кнопки */
.btn-primary {
    background: #1c2b39;
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.btn-primary:hover { background: #000; }

/* Адаптив */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .hero-content h1 { font-size: 40px; }
    .suppliers-grid { grid-template-columns: 1fr 1fr; }
}

/* Базовый стиль всех кнопок */
.btn-primary, .btn-secondary, .btn-white, .btn-black {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px; /* Делает кнопку круглой по бокам (таблетка) */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Плавная анимация */
    cursor: pointer;
    border: none;
    text-align: center;
}

/* Синяя кнопка (как Nature-Related Risks) */
.btn-primary {
    background-color: #0056e0; /* Яркий синий из дизайна */
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 86, 224, 0.2);
}

.btn-primary:hover {
    background-color: #0046b8;
    transform: translateY(-3px); /* Подпрыгивание */
    box-shadow: 0 8px 25px rgba(0, 86, 224, 0.4);
}

/* Черная кнопка (как Social Responsibility) */
.btn-black {
    background-color: #000000;
    color: #ffffff !important;
}

.btn-black:hover {
    background-color: #222222;
    transform: scale(1.05); /* Легкое увеличение */
}

/* Анимация нажатия для всех кнопок */
.btn-primary:active, .btn-black:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s;
}

.btn-primary:hover::after {
    left: 120%;
}


/* --- ИСПРАВЛЕННЫЙ БЛОК DRIVING PROGRESS --- */
.driving-progress {
    background-color: #ffffff;
    padding: 120px 0; /* Увеличил отступы сверху и снизу */
}

.display-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.1;
}

.main-description {
    font-size: 18px;
    color: #444;
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.7;
}









/* Сетка для двух колонок */
.progress-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.progress-column h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1c2b39;
    margin-bottom: 20px;
}

.progress-column p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    min-height: 100px; /* Чтобы кнопки были на одном уровне */
}

/* Адаптивность для мобилок */
@media (max-width: 768px) {
    .progress-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .display-title {
        font-size: 32px;
    }
}










/* --- ИСПРАВЛЕННЫЙ WORKWEAR --- */
.workwear-section {
    background-color: #ffffff;
    padding: 120px 0 0 0; /* Паддинг только сверху */
}

.workwear-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.workwear-content {
    flex: 1.2;
    padding-bottom: 120px;
}

.workwear-image {
    flex: 0.8;
    display: flex;
    align-items: flex-end;
}

.workwear-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Мобильная адаптация */
@media (max-width: 992px) {
    .feature-list-center {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .workwear-flex {
        flex-direction: column;
        text-align: center;
    }
}









/* --- ИСПРАВЛЕННЫЙ БЛОК SUSTAINABILITY (ТЕМНЫЙ) --- */
.interactive-manifest {
    position: relative;
    overflow: hidden;
    background: #050b10;
    padding: 140px 0; /* Даем блоку "дышать" */
    text-align: center; /* Центрируем всё содержимое */
}

.sustainability-full-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.massive-title-white {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.description-large {
    font-size: 20px;
    line-height: 1.6;
    color: #d1d8e0;
    max-width: 850px;
    margin: 0 auto 60px; /* Центрируем описание */
}

/* Центрируем список (исправлено на flex-center) */
.feature-list-center {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center; /* ЭТО КЛЮЧЕВОЕ */
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-list-center li {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-left: 25px;
    display: flex;
    align-items: center;
}

.feature-list-center li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #0056e0;
    border-radius: 50%;
    position: absolute;
    left: 0;
}





/* --- БЛОК ПОСТАВЩИКОВ (КРЕАТИВНЫЙ) --- */

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.supplier-card {
    position: relative;
    background: #fff;
    padding: 50px 40px;
    border-radius: 4px; /* Острые или почти острые углы выглядят строже */
    border: 1px solid #eee;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Фоновый градиент-вспышка при ховере */
.supplier-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 86, 224, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.supplier-card strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #1a2b3a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

/* Маленькая синяя точка перед заголовком */
.supplier-card strong::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #0056e0;
    border-radius: 50%;
    margin-right: 12px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.supplier-card p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Ховер эффекты */
.supplier-card:hover {
    border-color: #0056e0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
}

.supplier-card:hover::before {
    opacity: 1;
}

.supplier-card:hover strong {
    color: #0056e0;
}

.supplier-card:hover strong::before {
    transform: scale(1);
}

/* Адаптив для карточек */
@media (max-width: 768px) {
    .supplier-card {
        padding: 30px;
        text-align: center;
    }
    .supplier-card strong::before {
        display: none;
    }
}







/* Премиальный Футер */
.site-footer {
    background-color: #071018; /* Еще глубже синего, почти черный */
    color: #ffffff;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Первая колонка шире */
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1); /* Делает логотип белым, если он был темным */
    margin-bottom: 25px;
}

.footer-brand p {
    color: #a0aab5;
    font-size: 15px;
    line-height: 1.7;
    max-width: 350px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
}

/* Красивая полоска под заголовком */
.footer-column h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #0056e0;
    margin-top: 10px;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #a0aab5;
}

.footer-links a {
    color: #a0aab5;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px; /* Маленький эффект движения */
}

.footer-contact strong {
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

/* Нижняя часть футера */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #6a7682;
}

.footer-social a {
    color: #6a7682;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #0056e0;
}

/* Адаптивность */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}





/* Обертка всей шапки */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Верхняя полоска — делаем её полупрозрачной и стильной */
.top-bar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.top-email {
    color: #1c2b39;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.top-email:hover { color: #0056e0; }

/* Сама шапка — эффект матового стекла */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px); /* Тот самый эффект премиального стекла */
    padding: 25px 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* Эффект при скролле (добавится через JS) */
.header-wrapper.scrolled {
    transform: translateY(-32px); /* Прячем топ-бар */
}

.header-wrapper.scrolled .site-header {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Навигация с умным подчеркиванием */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.main-navigation a {
    position: relative;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    transition: 0.3s;
}

/* Плавная линия под пунктами меню */
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0056e0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation a:hover::after {
    width: 30px;
}

.main-navigation a:hover {
    color: #0056e0;
}

/* Активная кнопка-таблетка (как ты любишь) */
.main-navigation a.active {
    background: #1c2b39;
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 22px;
}

.main-navigation a.active::after { display: none; }







/* Финальная секция - Тотальный экстаз */
.last-cta {
    position: relative;
    padding: 140px 0;
    background: #050b10; /* Ультра-черный */
    overflow: hidden;
    text-align: center;
}

/* Эффект свечения на фоне */
.cta-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 224, 0.15) 0%, rgba(5, 11, 16, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.relative-z { position: relative; z-index: 2; }

.ultra-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.ultra-title span {
    background: linear-gradient(90deg, #ffffff, #0056e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.white-text { color: #0056e0 !important; font-size: 14px; margin-bottom: 20px; }

.cta-description {
    font-size: 20px;
    color: #a0aab5;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Огромная кнопка-таблетка */
.btn-massive {
    padding: 22px 50px !important;
    font-size: 18px !important;
    box-shadow: 0 15px 40px rgba(0, 86, 224, 0.3) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 15px;
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.btn-massive:hover .btn-arrow {
    transform: translateX(8px);
}

.cta-sub-info {
    margin-top: 40px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a5561;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.cta-sub-info .divider { color: #1c2b39; }

/* Добавим легкий дрейф фона */
@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
}

.cta-overlay {
    animation: pulseGlow 8s infinite ease-in-out;
}









.about-modern {
    background: #ffffff;
    padding: 140px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: start;
    margin-bottom: 100px;
}

.massive-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    color: #0a1622;
}

.text-accent {
    color: #0056e0;
    display: block;
}

.subtitle-reveal {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #999;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

/* Бейдж с годами опыта */
.experience-badge {
    display: flex;
    align-items: center;
    gap: 20px;
}

.experience-badge .number {
    font-size: 80px;
    font-weight: 800;
    color: #0a1622;
    line-height: 1;
}

.experience-badge .label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    color: #0056e0;
}

/* Карточки внизу */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.feat-item {
    transition: all 0.4s ease;
}

.feat-num {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0056e0;
    margin-bottom: 15px;
}

.feat-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0a1622;
}

.feat-item p {
    color: #666;
    font-size: 16px;
}

/* Эффект при наведении на всю секцию или элементы */
.feat-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .massive-title { font-size: 48px; }
    .about-features-grid { grid-template-columns: 1fr; }
}









/* Прячем бургер на компах */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #0a1622;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Мобильные стили */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex; /* Показываем бургер */
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%; /* Прячем меню за экран */
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 10000;
    }

    .main-navigation.active {
        right: 0; /* Выезжаем при клике */
    }

    .main-navigation ul {
        flex-direction: column;
        text-align: center;
        gap: 30px !important;
    }

    .main-navigation a {
        font-size: 24px !important;
        font-weight: 700;
    }

    /* Анимация превращения бургера в крестик */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}








.sustainability-full-content {
    max-width: 900px;
    margin: 0 auto;
}

.massive-title-white {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.description-large {
    font-size: 22px;
    line-height: 1.6;
    color: #d1d8e0;
    margin-bottom: 50px;
}

/* Центрируем список и делаем его стильным */
.feature-list-center {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-list-center li {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
}

.feature-list-center li::before {
    content: "•";
    color: #0056e0;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Адаптивность для мобилок */
@media (max-width: 768px) {
    .massive-title-white { font-size: 36px; }
    .feature-list-center { flex-direction: column; gap: 15px; align-items: center; }
}



.interactive-manifest {
    position: relative;
    overflow: hidden;
    background: #050b10; /* Еще глубже синий */
}

/* Световое пятно, которое будет бегать за мышкой */
.glow-cursor {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 224, 0.12) 0%, rgba(5, 11, 16, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.interactive-manifest:hover .glow-cursor {
    opacity: 1;
}

/* Эффект появления текста */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Задержки для каждого элемента, чтобы они вылетали по очереди */
.sustainability-full-content .reveal-up:nth-child(1) { transition-delay: 0.1s; }
.sustainability-full-content .reveal-up:nth-child(2) { transition-delay: 0.2s; }
.sustainability-full-content .reveal-up:nth-child(3) { transition-delay: 0.3s; }
.feature-list-center li:nth-child(1) { transition-delay: 0.4s; }
.feature-list-center li:nth-child(2) { transition-delay: 0.5s; }
.feature-list-center li:nth-child(3) { transition-delay: 0.6s; }

/* Ховер эффект для пунктов списка */
.feature-list-center li {
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: default;
}

.feature-list-center li:hover {
    transform: scale(1.1);
    color: #4a90e2;
}

















/* --- SUSTAINABILITY PAGE STYLES --- */

/* Переменные для этой страницы */
:root {
    --sus-dark: #0a1622;
    --sus-blue: #0056e0;
    --sus-gray: #f4f7f6;
}

/* 1. Hero Section */
.sus-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sus-dark);
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.sus-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    animation: susZoom 20s infinite alternate; /* Медленное приближение */
}

@keyframes susZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.sus-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,22,34,0.4) 0%, rgba(10,22,34,1) 100%);
}

.relative-z { position: relative; z-index: 2; }

.sus-hero-content h1 {
    font-size: clamp(40px, 6vw, 80px); /* Адаптивный шрифт */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sus-hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.8);
}

.sus-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

/* 2. Manifest Section */
.sus-manifest {
    padding: 120px 0;
    background: #fff;
}

.sus-manifest-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.sus-manifest-title h2 {
    font-size: 56px;
    line-height: 1;
    color: var(--sus-dark);
    font-weight: 800;
}

.sus-manifest-text .lead {
    font-size: 24px;
    color: var(--sus-dark);
    font-weight: 500;
    margin-bottom: 30px;
}

.sus-check-list {
    list-style: none;
    margin-top: 40px;
    padding: 0;
}

.sus-check-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-weight: 600;
    color: #444;
}

.sus-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sus-blue);
    font-weight: bold;
}

/* 3. Pillars Grid */
.sus-pillars {
    padding: 100px 0;
    background: var(--sus-gray);
}

.sus-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.sus-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 4px; /* Индустриальный стиль - острые углы */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-bottom: 3px solid transparent;
}

.sus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-bottom-color: var(--sus-blue);
}

.sus-card-icon {
    font-size: 60px;
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    margin-bottom: 20px;
    font-family: serif; /* Для контраста */
}

.sus-card h3 {
    font-size: 22px;
    color: var(--sus-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.sus-link {
    color: var(--sus-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
    transition: 0.3s;
}

.sus-card:hover .sus-link { margin-left: 10px; }

/* 4. Impact Section */
.sus-impact {
    padding: 120px 0;
    background: #fff;
}

.sus-impact-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.sus-impact-img {
    flex: 1;
    position: relative;
}

.sus-impact-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Декоративный квадрат за фото */
.sus-impact-img::before {
    content: "";
    position: absolute;
    top: -30px; left: -30px;
    width: 100%; height: 100%;
    border: 2px solid var(--sus-blue);
    z-index: -1;
}

.sus-impact-content { flex: 1; }

.sus-impact-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--sus-dark);
    font-weight: 800;
}

.sus-stat-row {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.sus-stat .num {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--sus-blue);
}

.sus-stat .desc {
    font-size: 14px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}

/* 5. CTA Section */
.sus-cta {
    padding: 100px 0;
    background: var(--sus-dark);
    text-align: center;
    color: #fff;
}

.sus-cta h2 { font-size: 42px; margin-bottom: 20px; }
.sus-cta p { font-size: 18px; color: #a0aab5; margin-bottom: 40px; }

.btn-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 992px) {
    .sus-manifest-grid { grid-template-columns: 1fr; gap: 40px; }
    .sus-impact-wrapper { flex-direction: column; }
    .sus-impact-img::before { display: none; }
    .sus-stat-row { justify-content: space-between; }
    .btn-row { flex-direction: column; }
    .sus-hero-content h1 { font-size: 42px; }
}






























/* --- OPERATIONS PAGE: ULTRA MODE --- */

:root {
    --ops-dark: #02060b;
    --ops-panel: #0b141d;
    --ops-accent: #00f2ff; /* Кибер-неон (циан) */
    --ops-text: #8b9bb4;
}

/* 1. HERO SECTION */
.ops-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-color: var(--ops-dark);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Фоновая сетка, которая движется в 3D */
.ops-grid-bg {
    position: absolute;
    width: 200%; height: 200%;
    top: -50%; left: -50%;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

/* Сканирующая линия */
.ops-scan-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: rgba(0, 242, 255, 0.5);
    box-shadow: 0 0 20px var(--ops-accent);
    animation: scanDown 4s ease-in-out infinite;
    opacity: 0.3;
    z-index: 1;
}

@keyframes scanDown {
    0% { top: -10%; opacity: 0; }
    50% { opacity: 0.5; }
    100% { top: 110%; opacity: 0; }
}

.ops-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Индикатор статуса */
.ops-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ops-accent);
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 5px 15px;
    background: rgba(0, 242, 255, 0.05);
}

.status-dot {
    width: 8px; height: 8px;
    background: var(--ops-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ops-accent);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Заголовок */
.glitch-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.ops-lead {
    font-size: 22px;
    color: var(--ops-text);
    max-width: 600px;
    margin-bottom: 50px;
}

/* Статистика внизу хедера */
.ops-hero-stats {
    display: flex;
    gap: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.ops-stat-item { display: flex; flex-direction: column; }
.ops-stat-item .val { font-size: 32px; font-weight: 700; color: #fff; }
.ops-stat-item .lbl { font-size: 12px; text-transform: uppercase; color: var(--ops-accent); letter-spacing: 1px; }

/* 2. MARQUEE (Бегущая строка) */
.ops-marquee {
    background: var(--ops-accent);
    color: #000;
    padding: 15px 0;
    overflow: hidden;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ops-marquee .track {
    display: inline-block;
    animation: marqueeScroll 20s linear infinite;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* 3. GLASS CARDS */
.ops-process {
    padding: 140px 0;
    background: var(--ops-dark);
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    color: #fff;
    margin-bottom: 80px;
}

.section-title-center .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--ops-accent);
}

.ops-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ops-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.ops-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--ops-accent);
}

.step-num {
    font-size: 60px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 20px; right: 20px;
    transition: 0.4s;
}

.ops-glass-card:hover .step-num { color: rgba(0, 242, 255, 0.2); }

.ops-glass-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    position: relative; z-index: 2;
}

.ops-glass-card p {
    color: var(--ops-text);
    line-height: 1.6;
    position: relative; z-index: 2;
}

/* Свечение при наведении */
.card-glow {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    transition: 0.5s;
}

.ops-glass-card:hover .card-glow { left: 100%; transition: 0.7s; }

/* 4. RADAR SECTION */
.ops-radar-section {
    padding: 150px 0;
    background: radial-gradient(circle at center, #0e1a2b 0%, var(--ops-dark) 70%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.ops-radar-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    pointer-events: none;
    opacity: 0.3;
}

.radar-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--ops-accent);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.c1 { width: 300px; height: 300px; opacity: 0.8; }
.c2 { width: 600px; height: 600px; opacity: 0.5; }
.c3 { width: 900px; height: 900px; opacity: 0.2; }

/* Вращающийся радар */
.radar-sweep {
    position: absolute;
    top: 50%; left: 50%;
    width: 400px; height: 400px;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 242, 255, 0.1) 60deg, transparent 60.1deg);
    transform-origin: top left;
    animation: radarSpin 4s linear infinite;
}

@keyframes radarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ops-radar-content h2 { font-size: 56px; margin-bottom: 20px; }
.ops-radar-content p { color: var(--ops-text); font-size: 20px; margin-bottom: 40px; }

.ops-locations {
    display: inline-flex;
    gap: 40px;
    list-style: none;
    padding: 0;
}

.ops-locations li span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--ops-accent);
}

.ops-locations li { color: #fff; font-size: 14px; text-transform: uppercase; }

/* 5. CTA NEON BUTTON */
.ops-cta {
    padding: 100px 0;
    background: #000;
    text-align: center;
}

.ops-cta h2 { color: #fff; margin-bottom: 40px; font-size: 36px; }

.btn-neon {
    position: relative;
    display: inline-block;
    padding: 20px 60px;
    color: var(--ops-accent);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    border: 2px solid var(--ops-accent);
    transition: 0.3s;
    overflow: hidden;
    z-index: 1;
}

.btn-neon:hover {
    background: var(--ops-accent);
    color: #000;
    box-shadow: 0 0 50px var(--ops-accent);
}

.btn-neon .reflection {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
    transition: 0.5s;
    z-index: -1;
}

.btn-neon:hover .reflection {
    left: 150%;
    transition: 0.7s;
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .ops-hero-stats { flex-direction: column; gap: 20px; }
    .ops-locations { flex-direction: column; gap: 30px; }
    .glitch-title { font-size: 48px; }
}































/* =========================================
   MODERN DYNAMIC CSS
   ========================================= */

:root {
    /* ЦВЕТОВАЯ СХЕМА - МЕНЯЙ ЗДЕСЬ ПОД ГЛАВНУЮ */
    --bg-dark: #0b0c10;       /* Глубокий черный/синий фон */
    --bg-card: rgba(31, 40, 51, 0.6); /* Полупрозрачный фон карточек */
    --primary-color: #66fcf1; /* Яркий неон (циан/бирюза) - замени на свой цвет */
    --secondary-color: #45a29e; /* Более темный акцент */
    --text-main: #ffffff;
    --text-muted: #c5c6c7;
    
    --font-head: 'Montserrat', sans-serif; /* Подключи эти шрифты если нет */
    --font-body: 'Open Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

.about-modern-page {
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--secondary-color); }
    50% { box-shadow: 0 0 20px var(--primary-color); }
    100% { box-shadow: 0 0 5px var(--secondary-color); }
}

/* Классы для JS анимации */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* --- HERO SECTION --- */
.hero-section {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1f2833 0%, var(--bg-dark) 70%);
}

/* Анимированный фон (сетка или круги) */
.hero-bg-anim {
    position: absolute;
    width: 200%;
    height: 200%;
    background: transparent;
    background-image: 
        linear-gradient(rgba(102, 252, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 252, 241, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: float 10s infinite linear;
    top: -50%;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-section h1 {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(102, 252, 241, 0.3);
}

.hero-sub {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 10px;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
}

.scroll-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    margin: 10px auto;
    border-radius: 50%;
    animation: float 1.5s infinite;
}

/* --- MARQUEE STRIP --- */
.marquee-strip {
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    transform: rotate(-1deg) scale(1.05); /* Немного наклонена для динамики */
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.4);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* --- SECTIONS COMMON --- */
.section-dark {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title .accent {
    color: var(--primary-color);
}

/* --- GLASS CARDS --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.glass-effect {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-effect:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(102, 252, 241, 0.15);
}

.info-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* --- STRATEGY (Flex) --- */
.section-image-text {
    padding: 100px 0;
    background: linear-gradient(to right, var(--bg-dark), #15171e);
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-block { flex: 1; }
.visual-block { flex: 1; height: 400px; position: relative; }

.abstract-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
    border: 2px solid var(--primary-color);
}

.styled-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.styled-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
}

.styled-list li::before {
    content: '→';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* --- CULTURE CARDS --- */
.cards-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    width: 300px;
    border-top: 3px solid var(--primary-color);
    position: relative;
    transition: 0.3s;
}

.feature-card:hover {
    background: var(--secondary-color);
    color: #fff;
}

.icon-box {
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* --- TIMELINE MODERN --- */
.history-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.timeline-modern {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.1);
}

.t-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.t-item.right { flex-direction: row-reverse; }

.t-item .year {
    width: 45%;
    text-align: right;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    padding: 20px;
}

.t-item.right .year { text-align: left; }

.t-item .t-content {
    width: 45%;
    position: relative;
}

/* Точки на линии */
.t-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-color);
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 3rem; }
    .flex-row { flex-direction: column; }
    .timeline-modern::before { left: 20px; }
    .t-item { flex-direction: column; padding-left: 50px; }
    .t-item.right { flex-direction: column; }
    .t-item .year { width: 100%; text-align: left; margin-bottom: 10px; padding: 0; }
    .t-item .t-content { width: 100%; }
    .t-item::after { left: 20px; }
}





















/* =========================================
   LIGHT ENERGY CONTACT STYLES (High-Tech Lab)
   ========================================= */

:root {
    /* Меняем палитру на Светлую */
    --bg-deep: #ffffff;          /* Чистый белый */
    --bg-secondary: #f4f7f6;     /* Очень легкий серый для контраста */
    --text-white: #1a1a1a;       /* Темный текст вместо белого */
    --text-grey: #555555;        /* Серый текст */
    --accent-blue: #0056e0;      /* Тот же синий, он отлично работает на белом */
    --accent-glow: rgba(0, 86, 224, 0.15); /* Легкое синее свечение */
    --card-bg: rgba(255, 255, 255, 0.8);   /* Полупрозрачный белый */
    --border-light: rgba(0, 0, 0, 0.08);   /* Легкие границы */
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.05); /* Мягкая тень */
    --font-main: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: var(--font-main);
}

.contact-dark-page {
    overflow-x: hidden;
    position: relative;
    padding-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* --- 1. GLOW CURSOR & BACKGROUND --- */
.interactive-manifest {
    background: var(--bg-deep);
    min-height: 100vh;
    position: relative;
}

/* Световое пятно теперь работает как мягкая подсветка */
.glow-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 800px;
    height: 800px;
    /* Синий градиент на белом */
    background: radial-gradient(circle, rgba(0, 86, 224, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: width 0.3s, height 0.3s;
    /* Убираем mix-blend-mode screen, так как фон белый */
}

/* Сетка на фоне (теперь темная и едва заметная) */
.cyber-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    /* Маска, чтобы сетка исчезала к низу */
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* --- 2. TYPOGRAPHY --- */
.massive-title-white {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-white); /* Теперь темный */
}

.blue-stroke {
    color: var(--accent-blue); /* Просто синий текст для читаемости */
    /* Или можно сделать контурным: */
    /* color: transparent; -webkit-text-stroke: 1px var(--accent-blue); */
    text-shadow: 0 5px 20px rgba(0, 86, 224, 0.3);
    position: relative;
}

.description-large {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Список по центру */
.feature-list-center {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.feature-list-center li {
    font-size: 16px;
    font-weight: 700; /* Чуть жирнее для белого фона */
    position: relative;
    padding-left: 20px;
    transition: 0.3s;
    color: var(--text-white);
}

.feature-list-center li::before {
    content: "•";
    color: var(--accent-blue);
    position: absolute;
    left: 0;
    font-size: 20px;
}

.feature-list-center li:hover {
    color: var(--accent-blue);
    transform: scale(1.1);
}

/* --- 3. SPLIT LAYOUT --- */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 100px;
}

/* --- 4. NEON CARDS (Light Version) --- */
.neon-card {
    background: rgba(255, 255, 255, 0.7); /* Стекло */
    border: 1px solid var(--border-light);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.neon-card:hover {
    border-color: var(--accent-blue);
    /* Тень становится синей и глубокой */
    box-shadow: 0 15px 40px rgba(0, 86, 224, 0.15);
    transform: translateY(-5px) scale(1.02);
    background: #fff;
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 15px;
    /* Убираем drop-shadow, на белом лучше просто цвет */
    color: var(--accent-blue); 
}

.neon-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 800;
}

.neon-card p {
    color: var(--text-grey);
    line-height: 1.6;
}

.big-num {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-blue);
    letter-spacing: 1px;
}

.status-badge {
    display: inline-block;
    font-size: 0.8rem;
    color: #00aa00; /* Зеленый потемнее для контраста */
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
    animation: blink 2s infinite;
}

@keyframes blink { 50% { opacity: 0.5; } }

/* --- 5. ENERGY FORM (Light Version) --- */
.form-container-dark {
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08); /* Глубокая тень вместо прозрачности */
}

.form-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    font-weight: 800;
}

.energy-form .input-group {
    position: relative;
    margin-bottom: 40px;
}

.energy-form input,
.energy-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0e0e0; /* Светло-серая линия */
    color: var(--text-white);
    font-size: 1.1rem;
    padding: 10px 0;
    outline: none;
    transition: 0.3s;
    font-family: var(--font-main);
}

.energy-form label {
    position: absolute;
    top: 10px; left: 0;
    color: #999;
    pointer-events: none;
    transition: 0.3s;
    font-weight: 600;
}

/* Анимация лейбла */
.energy-form input:focus ~ label,
.energy-form input:valid ~ label,
.energy-form textarea:focus ~ label,
.energy-form textarea:valid ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: bold;
}

/* Энергетическая полоска (Синий лазер) */
.energy-bar {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent-blue);
    transition: 0.4s;
    box-shadow: 0 0 10px rgba(0, 86, 224, 0.4);
}

.energy-form input:focus ~ .energy-bar,
.energy-form textarea:focus ~ .energy-bar {
    width: 100%;
}

/* Кнопка */
.cyber-btn-glow {
    position: relative;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--accent-blue); /* Жирнее границы */
    color: var(--accent-blue);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s;
    width: 100%;
    letter-spacing: 2px;
}

.cyber-btn-glow:hover {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 86, 224, 0.3);
}

/* --- 6. BLUE MAP (Light Mode) --- */
.cyber-map-section {
    position: relative;
    height: 400px;
    border-top: 4px solid var(--accent-blue);
}

.cyber-map-section iframe {
    /* Делаем карту черно-белой для стиля */
    filter: grayscale(100%);
    opacity: 0.9;
    transition: 0.5s;
}

.cyber-map-section:hover iframe {
    opacity: 1;
    /* При наведении возвращаем цвет */
    filter: grayscale(0%);
}

/* --- ANIMATION CLASSES --- */
.reveal-up, .reveal-left, .reveal-right, .reveal-text {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .contact-split-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .massive-title-white { font-size: 2.5rem; }
    
    .feature-list-center {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .form-container-dark { 
        padding: 30px 20px; 
        box-shadow: none; 
        border: 1px solid #eee;
    }
    
    .cyber-map-section iframe { height: 300px; }
    
    /* Отключаем параллакс и курсор на телефоне для скорости */
    .glow-cursor { display: none; }
    .neon-card { transform: none !important; }

    /* Исправление инпутов для iPhone */
    .energy-form input,
    .energy-form textarea {
        font-size: 16px;
    }
}














/* =========================================
   SUPPLIERS LAB STYLES
   ========================================= */

:root {
    --bg-white: #ffffff;
    --text-dark: #111111;
    --text-grey: #666666;
    --accent-blue: #0056e0;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --card-shadow-hover: 0 15px 40px rgba(0, 86, 224, 0.15);
}

.suppliers-page {
    background-color: #f9f9f9; /* Чуть сероватый фон для контраста с белыми карточками */
    padding-bottom: 100px;
}

/* --- HERO --- */
.suppliers-hero {
    background: var(--bg-white);
    padding: 120px 0 60px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.blue-highlight {
    color: var(--accent-blue);
    position: relative;
    display: inline-block;
}

/* Подчеркивание под словом Partners */
.blue-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: rgba(0, 86, 224, 0.1);
    z-index: -1;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 40px;
}

/* --- SEARCH BAR --- */
.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    border-radius: 50px;
    border: 2px solid #eee;
    font-size: 1.1rem;
    outline: none;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.search-wrapper input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 5px 20px rgba(0, 86, 224, 0.1);
}

.search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* --- MASONRY GRID (4 COLUMNS) --- */
.suppliers-content {
    padding: 60px 0;
}

.masonry-grid {
    column-count: 4;
    column-gap: 30px;
}

.supplier-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px; /* Отступ снизу */
    break-inside: avoid; /* Запрещает разрывать карточку между колонками */
    box-shadow: var(--card-shadow);
    transition: 0.3s ease;
    border: 1px solid transparent;
    display: inline-block; /* Важно для Masonry */
    width: 100%;
}

.supplier-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(0, 86, 224, 0.3);
}

/* --- CARD CONTENT --- */
.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.line-accent {
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
    margin-bottom: 20px;
    border-radius: 2px;
}

.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-item {
    font-size: 0.95rem;
    color: var(--text-grey);
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: 0.2s;
    cursor: default;
}

.brand-item:last-child {
    border-bottom: none;
}

.brand-item:hover {
    color: var(--accent-blue);
    padding-left: 5px; /* Легкий сдвиг вправо */
}

.no-results {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-grey);
    margin-top: 50px;
}

/* --- ANIMATIONS --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .masonry-grid { column-count: 3; }
}

@media (max-width: 992px) {
    .masonry-grid { column-count: 2; }
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .masonry-grid { column-count: 1; }
    .search-wrapper input { padding: 15px 20px; font-size: 1rem; }
}