.elementor-76 .elementor-element.elementor-element-921619a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-91f3834 *//* --- 1. ОСНОВНИЙ КОНТЕЙНЕР --- */
.cyber-header {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95); /* Чорний фон */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between; /* Лого зліва, меню справа */
    align-items: center; /* Центрування по вертикалі - ВАЖЛИВО */
    padding: 0 30px;
    max-width: 1400px;
    margin: 0 auto;
    height: 90px; /* Трохи збільшив висоту хедера */
}

/* --- 2. ВИПРАВЛЕННЯ ЛОГОТИПУ --- */
.logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden; /* Щоб лого не вилазило за межі */
}

.logo-img {
    max-height: 60px !important; /* Жорстке обмеження висоти картинки */
    width: auto !important;       /* Ширина підлаштується автоматично */
    object-fit: contain;          /* Зберігає пропорції, не розтягує */
    display: block;
}

/* --- 3. НАВІГАЦІЯ (Меню) --- */
.cyber-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-link:hover { color: #00f3ff; }

/* --- 4. КНОПКИ (Call + Insta) --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap; /* ВАЖЛИВО: Забороняє тексту переноситись */
    transition: all 0.3s ease;
}

/* Окремі стилі для кнопок */
.phone-btn {
    background: rgba(0, 243, 255, 0.1);
    color: #00f3ff;
    border-color: rgba(0, 243, 255, 0.3);
}

.insta-btn {
    background: rgba(255, 255, 255, 0.05);
}

.phone-btn:hover { background: #00f3ff; color: #000; }
.insta-btn:hover { background: #fff; color: #000; }

/* --- МОБІЛЬНА ВЕРСІЯ --- */
@media (max-width: 900px) {
    .cyber-nav { display: none; } /* Ховаємо меню на телефонах */
    .header-container { height: 70px; padding: 0 15px; }
    .logo-img { max-height: 40px !important; }
    
    /* Спрощуємо кнопки на мобільному */
    .action-btn span:not(.icon) { 
        display: none; /* Ховаємо текст, залишаємо іконки */ 
    }
    .action-btn { 
        padding: 0; 
        width: 40px; 
        height: 40px; 
        border-radius: 50%; 
    }
}/* End custom CSS */