/*
Theme Name: Verdi
Description: The Apex of Advisory. High-end, LIGHT CYBER-LUX, and dynamic.
Author: Verdi Global
Version: 2.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800;900&display=swap');

:root {
    --bg-white: #FFFFFF;
    --bg-off-white: #FAFAFA;
    --dark-blue: #0A1526; 
    --verdi-black: #000000;
    --accent-beige: #C8B598;
    --text-main: #1A1F2B;
    --text-muted: #717171;
    --border-light: rgba(0, 0, 0, 0.08);
    --glow-beige: rgba(200, 181, 152, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-off-white);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Жесткий блок горизонтального скролла */
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ================= TYPOGRAPHY & GLOBAL ================= */
h1, h2, h3 {
    color: var(--verdi-black);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.accent-beige { color: var(--accent-beige); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    border-bottom: 3px solid var(--accent-beige);
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}













/* ================= MASTER HERO: DARK CYBER-LUX (COMPACT) ================= */
.verdi-hero-master {
    position: relative;
    padding: 120px 0 80px; /* Сильно сжали отступы */
    min-height: 60vh; /* Убрали лишнюю высоту */
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #030811;
}

/* --- ФОН И МАСКА --- */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1.05);
    animation: slowZoom 25s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 8, 17, 0.7) 0%, #030811 100%);
}

/* --- КОНТЕНТ --- */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-ui-element {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem; /* Сжали отступ */
    padding: 6px 14px;
    background: rgba(200, 181, 152, 0.05);
    border: 1px solid rgba(200, 181, 152, 0.2);
    backdrop-filter: blur(4px);
}

.ui-dot {
    width: 6px; height: 6px;
    background: #C8B598;
    border-radius: 50%;
    box-shadow: 0 0 12px #C8B598;
    animation: pulseFast 1.5s infinite;
}

@keyframes pulseFast {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.ui-text {
    color: #C8B598;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* --- ТИПОГРАФИКА --- */
.hero-title-main {
    font-size: clamp(2.8rem, 6vw, 5.5rem); /* Сделали чуть аккуратнее */
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 1.5rem; /* Сжали отступ */
}

.hero-title-main .text-glow {
    color: #C8B598;
    text-shadow: 0 0 40px rgba(200, 181, 152, 0.4);
}

.hero-subtitle-main {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin-bottom: 2.5rem; /* Сжали отступ */
    font-weight: 300;
    border-left: 2px solid #C8B598;
    padding-left: 20px;
}

/* --- CYBER КНОПКА (ULTRA GLOW) --- */
.btn-cyber {
    position: relative;
    display: inline-flex;
    background: rgba(10, 21, 38, 0.4); /* Эффект тонированного стекла */
    backdrop-filter: blur(10px);
    color: #C8B598;
    padding: 1rem 3rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    border: 1px solid rgba(200, 181, 152, 0.4);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: btnPulse 3s infinite; /* Пульсация в покое */
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(200, 181, 152, 0.1); }
    50% { box-shadow: 0 0 20px rgba(200, 181, 152, 0.3); border-color: rgba(200, 181, 152, 0.6); }
}

/* Бегущий луч по кнопке */
.btn-cyber::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 181, 152, 0.4), transparent);
    transition: all 0.6s ease;
    transform: skewX(-20deg);
}

.btn-cyber:hover {
    background: rgba(200, 181, 152, 0.15);
    border-color: #C8B598;
    /* Двойной глоу: внутренний и внешний */
    box-shadow: 0 0 40px rgba(200, 181, 152, 0.3), inset 0 0 20px rgba(200, 181, 152, 0.2);
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    letter-spacing: 5px; /* Динамика текста */
    transform: translateY(-3px) scale(1.02); /* Приподнимаем и зумим */
    animation: none; /* Отключаем базовую пульсацию на ховере */
}

.btn-cyber:hover::before {
    left: 150%;
    transition: 0.8s ease;
}

/* --- УГЛОВЫЕ МАРКЕРЫ --- */
.cyber-corner {
    position: absolute;
    width: 40px; height: 40px; /* Чуть меньше для компактности */
    border: 2px solid rgba(200, 181, 152, 0.2);
    z-index: 2;
    transition: all 0.5s ease;
}

.verdi-hero-master:hover .cyber-corner { 
    border-color: rgba(200, 181, 152, 0.6); 
    box-shadow: 0 0 15px rgba(200, 181, 152, 0.2);
}

.top-left { top: 30px; left: 30px; border-right: 0; border-bottom: 0; }
.bottom-right { bottom: 30px; right: 30px; border-left: 0; border-top: 0; }

/* --- MOBILE --- */
@media (max-width: 992px) {
    .verdi-hero-master { padding: 90px 0 60px; min-height: auto; }
    .hero-title-main { letter-spacing: -1px; line-height: 1; }
    .hero-subtitle-main { padding-left: 15px; margin-bottom: 2rem; }
    .cyber-corner { display: none; }
    .btn-cyber { padding: 1rem 2rem; }
}

































/* ================= TEAM SECTION: LIGHT TERMINAL ================= */
.verdi-team-section {
    padding: 80px 0;
    background-color: #fafafa; /* Дорогой светло-серый фон */
    overflow: hidden;
}

.team-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #000000;
    padding-bottom: 15px;
}

.team-grid {
    display: grid;
    /* Компактные колонки. Влезет по 3-4 в ряд на десктопе */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px; /* Очень плотно */
}

.team-node {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
}

/* Боковой индикатор активности */
.team-node::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 100%;
    background: #C8B598;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

/* --- ФОТО И ГЛОУ --- */
.node-avatar {
    width: 50px; /* Идеальный размер для компактности */
    height: 50px;
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%) contrast(1.1); /* Строгость по дефолту */
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Неоновое кольцо вокруг фото (скрыто до ховера) */
.avatar-ring {
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border: 1px solid #C8B598;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* --- ТИПОГРАФИКА (ЖЕЛЕЗОБЕТОННАЯ) --- */
.node-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.team-node .name {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    margin: 0 0 2px;
    /* Убираем transition на font-size/letter-spacing, чтобы не прыгало */
    transition: color 0.3s ease;
}

.team-node .role {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888888;
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* ================= СЕКСУАЛЬНЫЕ ХОВЕРЫ ================= */
.team-node:hover {
    background: #ffffff;
    border-color: rgba(200, 181, 152, 0.3);
    box-shadow: 0 15px 35px rgba(200, 181, 152, 0.12);
    transform: translateY(-3px);
    z-index: 10;
}

/* Активация боковой линии */
.team-node:hover::before {
    transform: scaleY(1);
    box-shadow: 2px 0 10px rgba(200, 181, 152, 0.5);
}

/* Аватарка оживает */
.team-node:hover .node-avatar img {
    filter: grayscale(0%); /* Возвращаем цвет */
}

/* Кольцо разгорается */
.team-node:hover .avatar-ring {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 15px rgba(200, 181, 152, 0.4), inset 0 0 10px rgba(200, 181, 152, 0.2);
}

/* Текст меняет цвет (но не размер!) */
.team-node:hover .name {
    color: #C8B598;
}

.team-node:hover .role {
    color: #000000;
}

/* Эффект фокуса на активном узле */
.team-grid:hover .team-node:not(:hover) {
    opacity: 0.5;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}









/* ================= УНИКАЛЬНЫЕ ЦВЕТОВЫЕ АКЦЕНТЫ (GLOW) ================= */
/* Важно: в HTML у <div class="team-node ..."> должны стоять эти классы */

/* Node Founder: Золотое ядро */
.node-founder:hover::before { 
    background: #C8B598; 
    box-shadow: 2px 0 10px rgba(200, 181, 152, 0.5); 
}
.node-founder:hover .avatar-ring { 
    border-color: #C8B598; 
    box-shadow: 0 0 15px rgba(200, 181, 152, 0.4), inset 0 0 10px rgba(200, 181, 152, 0.2); 
}
.node-founder:hover .name { color: #C8B598; }

/* Node CEO: Серебряная сталь */
.node-ceo:hover::before { 
    background: #9CA3AF; 
    box-shadow: 2px 0 10px rgba(156, 163, 175, 0.5); 
}
.node-ceo:hover .avatar-ring { 
    border-color: #9CA3AF; 
    box-shadow: 0 0 15px rgba(156, 163, 175, 0.4), inset 0 0 10px rgba(156, 163, 175, 0.2); 
}
.node-ceo:hover .name { color: #9CA3AF; }

/* Node Execs: Глубокий корпоративный синий */
.node-exec:hover::before { 
    background: #0A1526; 
    box-shadow: 2px 0 10px rgba(10, 21, 38, 0.5); 
}
.node-exec:hover .avatar-ring { 
    border-color: #0A1526; 
    box-shadow: 0 0 15px rgba(10, 21, 38, 0.4), inset 0 0 10px rgba(10, 21, 38, 0.2); 
}
.node-exec:hover .name { color: #0A1526; }

/* Node Moscow: Ледяной неон */
.node-moscow:hover::before { 
    background: #3B82F6; 
    box-shadow: 2px 0 10px rgba(59, 130, 246, 0.5); 
}
.node-moscow:hover .avatar-ring { 
    border-color: #3B82F6; 
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4), inset 0 0 10px rgba(59, 130, 246, 0.2); 
}
.node-moscow:hover .name { color: #3B82F6; }


/* ================= MOBILE OPTIMIZATION (COMPACT LUX) ================= */
@media (max-width: 992px) {
    .hero-section, .services-section, .manifesto-section, .verdi-team-section, .verdi-intelligence-hub {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr; /* Одна строгая колонка */
        gap: 10px; /* Минимальный зазор для плотности */
    }
    
    .team-node {
        padding: 1rem; /* Сжимаем саму карточку */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}




























/* ================= TERMINAL FOOTER (ELITE DENSITY) ================= */
.verdi-terminal-footer {
    background-color: #030811; 
    color: #ffffff;
    font-family: 'Inter', -apple-system, sans-serif;
    border-top: 1px solid rgba(200, 181, 152, 0.5); /* Более тонкая и дорогая линия */
    position: relative;
    overflow: hidden;
}

/* Ticker Tape Widget */
.footer-ticker {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: #02050a;
    width: 100%;
    display: block;
}

.verdi-terminal-footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Mega Grid (Верхние 4 колонки - Плотные) */
.footer-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; /* Уменьшил дыры */
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-title {
    color: rgba(255, 255, 255, 0.4); /* Приглушенный цвет для статуса */
    font-size: 0.7rem; /* Микро-шрифт */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
}

.mega-title.accent-beige {
    color: #C8B598;
    border-bottom-color: rgba(200, 181, 152, 0.2);
    opacity: 0.8;
}

.mega-col ul, .monolith-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col li {
    margin-bottom: 0.6rem; /* Плотнее */
}

.mega-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem; /* Мелкий, аккуратный шрифт */
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
    position: relative;
}

/* Сексуальный легкий ховер */
.mega-col a:hover {
    color: #C8B598;
    transform: translateX(4px);
    text-shadow: 0 0 8px rgba(200, 181, 152, 0.3);
}

/* The Monolith (Нижний блок) */
.footer-monolith {
    display: flex;
    justify-content: space-between;
    padding: 4rem 0;
    gap: 3rem;
}

.monolith-left {
    flex: 1;
    max-width: 450px;
}

.monolith-logo {
    font-size: 1.8rem; /* Сделал компактнее */
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
}

.monolith-logo .v-mark {
    color: #C8B598;
    font-weight: 600;
}

.monolith-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: 0.8rem; /* Мелкий журнальный текст */
    font-weight: 300;
    text-align: justify; /* Добавил строгости кирпичом */
}

.monolith-right {
    flex: 1.5;
    display: flex;
    gap: 3rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 3rem;
}

.monolith-links {
    flex: 1;
}

.monolith-links li {
    margin-bottom: 0.8rem;
}

.monolith-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400; 
    transition: color 0.4s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

/* Элегантная выезжающая линия */
.monolith-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C8B598;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.monolith-links a:hover {
    color: #ffffff;
}

.monolith-links a:hover::after {
    width: 100%;
}

/* Absolute Bottom (Копирайт) */
.footer-absolute {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: #C8B598;
    transform: translateY(-2px);
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 992px) {
    .footer-mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-monolith {
        flex-direction: column;
        padding: 3rem 0;
    }
    .monolith-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 2rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .footer-mega-grid {
        grid-template-columns: 1fr;
    }
    .monolith-right {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-absolute {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

















































/* ================= TOP BAR (Micro-Navigation) ================= */
.verdi-topbar {
    background-color: #02060d;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem; /* Мелкий, статусный шрифт */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 1px solid rgba(200, 181, 152, 0.15);
}

.topbar-inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.topbar-left, .topbar-right { 
    display: flex; 
    gap: 1.5rem; 
    align-items: center;
}

.status-glow {
    color: #C8B598;
    position: relative;
    padding-left: 12px;
}

.status-glow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 4px; height: 4px;
    background: #C8B598;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(200, 181, 152, 0.8); /* Эффект живого терминала */
}

.topbar-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topbar-link:hover { color: #ffffff; }

/* ================= MAIN HEADER (The Core) ================= */
.verdi-header {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0; 
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Эффект при скролле */
.verdi-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    height: 75px; 
    transition: height 0.4s ease;
}

.verdi-header.scrolled .header-inner { height: 58px; }

/* Логотип */
.header-logo {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #0A1526;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-logo .v-mark { 
    color: #C8B598; 
    font-weight: 700; 
    margin-right: 10px;
}

/* Desktop Navigation */
.main-menu { 
    display: flex; 
    gap: 2.8rem; 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    height: 100%;
}

.main-menu > li {
    position: relative; /* КРИТИЧНО: Чтобы меню вылезало ПОД пунктом */
    display: flex;
    align-items: center;
}

.main-menu > li > a {
    color: #0A1526;
    text-decoration: none;
    font-size: 0.72rem; /* Сверх-компактно и сексуально */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

/* Линия при ховере */
.main-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 20%; 
    left: 0;
    width: 0; height: 1px;
    background: #C8B598;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-menu > li > a:hover { color: #C8B598; }
.main-menu > li > a:hover::after { width: 100%; }

/* Dropdown (Скрытая панель) */
.dropdown {
    position: absolute;
    top: 100%; 
    left: -15px; /* Небольшой вылет влево для баланса */
    background: #ffffff;
    min-width: 190px;
    padding: 1.2rem 0;
    list-style: none;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    opacity: 0; 
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
}

.main-menu > li:hover .dropdown { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}

.dropdown li a {
    display: block;
    padding: 10px 25px;
    color: rgba(10, 21, 38, 0.6);
    font-size: 0.68rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dropdown li a:hover {
    background: #F9FAFB;
    color: #0A1526;
    padding-left: 32px; /* Изящный сдвиг */
}

/* Connect Button */
.direct-call {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0A1526;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 22px;
    border: 1px solid rgba(10, 21, 38, 0.15);
    transition: all 0.4s ease;
}

.direct-call:hover {
    background: #0A1526;
    color: #ffffff;
    border-color: #0A1526;
    box-shadow: 0 8px 20px rgba(10, 21, 38, 0.15);
    transform: translateY(-1px);
}

/* Burger Button */
.burger-btn {
    display: none;
    width: 26px; 
    height: 14px;
    flex-direction: column;
    justify-content: space-between;
    background: none; 
    border: none; 
    cursor: pointer;
}

.burger-btn span { 
    width: 100%; 
    height: 1.5px; 
    background: #0A1526; 
}

/* ================= MOBILE DRAWER ================= */
.mobile-drawer {
    position: fixed; 
    top: 0; 
    right: -100%;
    width: 100%; 
    max-width: 340px; 
    height: 100vh;
    background: #02060d; 
    color: #fff;
    padding: 3rem; 
    z-index: 10000;
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active { right: 0; }

.mobile-menu { list-style: none; padding: 0; margin: 4rem 0; }

.mobile-menu a {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 300;
    text-decoration: none;
    margin-bottom: 1.8rem;
    transition: color 0.3s ease;
}

.mobile-menu a:hover { color: #C8B598; }

.drawer-footer { 
    margin-top: auto; 
    color: rgba(255,255,255,0.3); 
    font-size: 0.75rem; 
    line-height: 1.6;
}

.drawer-footer a { 
    color: #C8B598; 
    text-decoration: none; 
    display: block; 
    margin-top: 8px; 
    font-size: 1.1rem; 
}

@media (max-width: 1024px) {
    .main-menu { gap: 1.5rem; }
}

@media (max-width: 992px) {
    .desktop-nav, .verdi-topbar { display: none; }
    .burger-btn { display: flex; }
}































/* ================= INTELLIGENCE HUB: LIGHT CYBER-LUX ================= */
.verdi-intelligence-hub {
    padding: 100px 0;
    background-color: #fafafa; /* Дорогой, чуть теплый белый фон */
    overflow: hidden; /* Жесткий блок от вылезания за поля */
    font-family: 'Inter', sans-serif;
}

.intel-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
.hub-terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000000;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

.terminal-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 900;
    color: #000000;
    margin: 0;
    display: flex;
    align-items: center;
}

.live-indicator {
    width: 6px; height: 6px;
    background: #C8B598;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px #C8B598;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(200, 181, 152, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(200, 181, 152, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 181, 152, 0); }
}

.terminal-link {
    color: #000000;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terminal-link:hover { color: #C8B598; }

/* --- MAIN GRID --- */
.terminal-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* HERO POST */
.hero-intel {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-intel-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden; /* Блокируем вылет картинки */
}

.hero-intel-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-overlay {
    position: absolute;
    bottom: 0; left: 0;
    background: #C8B598;
    color: #000;
    padding: 8px 16px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.hero-intel-body { padding: 30px; }

.intel-meta, .intel-meta-micro, .intel-read-micro {
    font-size: 0.65rem;
    color: #888;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.intel-meta { margin-bottom: 15px; }

.intel-title-large {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 20px;
}

.intel-title-large a { color: #000000; text-decoration: none; transition: 0.3s; }

.intel-excerpt {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* SIDEBAR */
.terminal-side {
    display: flex;
    flex-direction: column;
}

.side-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.side-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-intel-item {
    background: #ffffff;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.intel-title-small {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 800;
    margin: 10px 0 0;
}

.intel-title-small a { color: #000; text-decoration: none; transition: 0.3s; }

/* BOTTOM ROW */
.terminal-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bottom-intel-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.bottom-intel-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.bottom-intel-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.bottom-intel-body { padding: 20px; }

.intel-title-mini {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 800;
    margin: 0 0 10px;
}

.intel-title-mini a { color: #000; text-decoration: none; transition: 0.3s; }

/* ================= HOVER-ЭФФЕКТЫ И GLOW ================= */
.hover-state:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(200, 181, 152, 0.15); /* Мягкий бежевый глоу */
    border-color: rgba(200, 181, 152, 0.5);
}

.hero-intel:hover .hero-intel-image-wrap img { transform: scale(1.05); }
.hero-intel:hover .intel-title-large a { color: #C8B598; }

.side-intel-item:hover {
    border-left-color: #C8B598;
    box-shadow: 10px 15px 30px rgba(200, 181, 152, 0.1);
}
.side-intel-item:hover .intel-title-small a { color: #C8B598; }

.bottom-intel-card:hover .bottom-intel-thumb img { filter: grayscale(0%); transform: scale(1.05); }
.bottom-intel-card:hover .intel-title-mini a { color: #C8B598; }

/* ================= МОБИЛЬНАЯ АДАПТАЦИЯ (СВЕРХ-КОМПАКТ) ================= */
@media (max-width: 992px) {
    .verdi-intelligence-hub { padding: 60px 0; }
    .terminal-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
    .terminal-bottom-row { grid-template-columns: 1fr; gap: 20px; }
    
    .intel-title-large { font-size: 2rem; }
    .hero-intel-body { padding: 20px; }
    .side-intel-item { padding: 15px; }
    
    /* Делаем боковую панель более компактной на мобилках */
    .side-items-wrapper { gap: 10px; }
}


























/* ================= EXPERTISE MODULES: ULTRA LIGHT CYBER-LUX ================= */
.verdi-services-master {
    position: relative;
    padding: 120px 0;
    background-color: #FAFAFA;
    /* Ультра-премиальная фоновая микро-сетка */
    background-image: radial-gradient(rgba(10, 21, 38, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.services-header {
    margin-bottom: 50px;
    border-bottom: 2px solid #000000;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* --- GRID ARCHITECTURE --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px; /* Сетка в 1 пиксель */
    background: rgba(0, 0, 0, 0.06); /* Цвет разделительных линий */
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
}

.service-node {
    background: #ffffff;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    isolation: isolate;
    cursor: crosshair;
    overflow: hidden;
}

/* Внутреннее свечение (Голографический эффект) */
.service-node::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(200, 181, 152, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

/* Кибер-линия сверху (Загрузка модуля) */
.service-node::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 3px;
    background: #C8B598;
    box-shadow: 0 2px 15px rgba(200, 181, 152, 0.6);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- ТИПОГРАФИКА И КОНТЕНТ --- */
.service-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C8B598;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(200, 181, 152, 0.3);
    padding-bottom: 5px;
    transition: all 0.4s ease;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    margin: 0 0 15px;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.service-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #717171;
    margin: 0;
    font-weight: 400;
    transition: color 0.4s ease;
}

/* Скрытая декоративная деталь (Номер ноды в фоне) */
.service-node:nth-child(1)::after { content: ''; }
.service-node:nth-child(n) .node-glow-line {
    position: absolute;
    bottom: -10px; right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    line-height: 1;
    z-index: -2;
    transition: all 0.6s ease;
}
.service-node:nth-child(1) .node-glow-line::before { content: '01'; }
.service-node:nth-child(2) .node-glow-line::before { content: '02'; }
.service-node:nth-child(3) .node-glow-line::before { content: '03'; }
.service-node:nth-child(4) .node-glow-line::before { content: '04'; }


/* ================= СЕКСУАЛЬНЫЕ ХОВЕРЫ ================= */
.service-node:hover {
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(200, 181, 152, 0.05);
    transform: translateY(-5px);
}

.service-node:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.service-node:hover::after {
    width: 100%; /* Линия прошивает верх */
}

.service-node:hover .service-category {
    color: #000000;
    border-bottom-color: #000000;
}

.service-node:hover .service-name {
    color: #C8B598;
    text-shadow: 0 0 20px rgba(200, 181, 152, 0.3);
}

.service-node:hover .service-desc {
    color: #1a1a1a;
}

.service-node:hover .node-glow-line {
    color: rgba(200, 181, 152, 0.08); /* Номер всплывает бежевым на фоне */
    transform: scale(1.1) translate(-10px, -10px);
}

/* ФОКУС: Блур остальных элементов (эффект терминала) */
.services-grid:hover .service-node:not(:hover) {
    opacity: 0.4;
    filter: blur(3px) grayscale(100%);
    background: #FAFAFA;
}

/* ================= КНОПКА ПЕРЕХОДА (СВЕТЛЫЙ КИБЕР-ЛЮКС) ================= */
.services-action {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.btn-cyber-light {
    position: relative;
    display: inline-flex;
    background: #ffffff;
    color: #000000;
    padding: 1.2rem 3.5rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cyber-light::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 181, 152, 0.3), transparent);
    transition: all 0.6s ease;
    transform: skewX(-25deg);
}

.btn-cyber-light:hover {
    background: #fafafa;
    border-color: #C8B598;
    color: #C8B598;
    box-shadow: 0 15px 40px rgba(200, 181, 152, 0.2), inset 0 0 15px rgba(200, 181, 152, 0.1);
    transform: translateY(-3px);
    letter-spacing: 5px; /* Кинетический текст */
}

.btn-cyber-light:hover::before {
    left: 200%;
    transition: 0.8s ease;
}

/* ================= АДАПТИВ (ЖЕЛЕЗОБЕТОННЫЙ) ================= */
@media (max-width: 992px) {
    .verdi-services-master { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 15px; }
    .service-node { padding: 2rem 1.5rem; }
    .services-action { justify-content: flex-start; }
    .btn-cyber-light { width: 100%; justify-content: center; }
}