/* ============================================
   B2B CYBERPUNK STYLE
   WESTELECOM (06.02.2026)
   ============================================ */
/* Hide old blog-style elements for business promotions */
.b2b-promo-page .cards-view_item { display: none !important; }
.b2b-promo-page .cards-view_content-backLink-wrap { display: none !important; }
.b2b-promo-page .cards-view_content-title { display: none !important; }
.b2b-promo-page .cards-view_content-subtitle { display: none !important; }
.b2b-promo-page .cards-view_content-wrap { display: none !important; }
.b2b-promo-page .cards-view_content-link { display: none !important; }
/* Dark background for content area */
.b2b-promo-page .cards-view_content {
    background: linear-gradient(180deg, #0a0e1a 0%, #0f172a 100%) !important;
    padding-top: 0 !important;
}
.b2b-promo-page .cards-view_content-wrap-text {
    background: transparent !important;
    max-width: 100% !important;
    padding: 0 !important;
}
/* Global text color */
.b2b-promo-page .cards-view_content-wrap-text,
.b2b-promo-page .cards-view_content-wrap-text p,
.b2b-promo-page .cards-view_content-wrap-text div,
.b2b-promo-page .cards-view_content-wrap-text span {
    color: #cbd5e1 !important;
}
/* Container full width */
.b2b-promo-page .container,
.b2b-promo-page .content__wrap {
    max-width: 100% !important;
    padding: 0 !important;
}
/* ══════════════════════════════════════════════════════════════════
   HOLOGRAPHIC STRIP HEADER - Only for B2B Promotion Pages
   ══════════════════════════════════════════════════════════════════ */
/* Основной хедер */
.b2b-cyber-page .header {
    background: linear-gradient(180deg, #0a0e1a 0%, #0f172a 100%) !important;
    border-bottom: none !important;
    position: relative;
}
/* Голографическая полоса сверху */
.b2b-cyber-page .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        #00d4ff 0%, 
        #ff00ff 25%, 
        #00d4ff 50%, 
        #ff00ff 75%, 
        #00d4ff 100%);
    background-size: 200% 100%;
    animation: holoShift 3s linear infinite;
}
/* Голографическая полоса снизу */
.b2b-cyber-page .header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        #ff00ff 0%, 
        #00d4ff 25%, 
        #ff00ff 50%, 
        #00d4ff 75%, 
        #ff00ff 100%);
    background-size: 200% 100%;
    animation: holoShift 3s linear infinite reverse;
}
@keyframes holoShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
/* Тень от хедера */
.b2b-cyber-page .header {
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.1) !important;
}
/* Лого с легким свечением */
.b2b-cyber-page .header .logo img,
.b2b-cyber-page .header .header__logo img {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
    transition: all 0.3s ease;
}
.b2b-cyber-page .header .logo:hover img,
.b2b-cyber-page .header .header__logo:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.7));
}
/* Пункты меню */
.b2b-cyber-page .header .nav-link,
.b2b-cyber-page .header .header__nav-link,
.b2b-cyber-page .header .main-nav a {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    position: relative;
}
.b2b-cyber-page .header .nav-link:hover,
.b2b-cyber-page .header .header__nav-link:hover,
.b2b-cyber-page .header .main-nav a:hover {
    color: #00d4ff !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}
/* Подчеркивание при hover */
.b2b-cyber-page .header .nav-link::after,
.b2b-cyber-page .header .header__nav-link::after,
.b2b-cyber-page .header .main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.b2b-cyber-page .header .nav-link:hover::after,
.b2b-cyber-page .header .header__nav-link:hover::after,
.b2b-cyber-page .header .main-nav a:hover::after {
    width: 100%;
}
/* Кнопка телефона / CTA */
.b2b-cyber-page .header .header__phone,
.b2b-cyber-page .header .phone-link {
    color: #00d4ff !important;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}
.b2b-cyber-page .header .btn,
.b2b-cyber-page .header .header__btn {
    border: 1px solid #00d4ff !important;
    background: transparent !important;
    color: #00d4ff !important;
    transition: all 0.3s ease;
}
.b2b-cyber-page .header .btn:hover,
.b2b-cyber-page .header .header__btn:hover {
    background: #00d4ff !important;
    color: #0a0e1a !important;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
}
/* Разделители между пунктами меню */
.b2b-cyber-page .header .main-nav li:not(:last-child)::after {
    content: '│';
    color: rgba(0, 212, 255, 0.3);
    margin-left: 15px;
    font-weight: 300;
}
/* ══════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════
   HOLOGRAPHIC HEADER v2 - Using actual class names
   ══════════════════════════════════════════════════════════════════ */

/* Top line - тёмный фон */
.b2b-cyber-page .top-line {
    background: linear-gradient(180deg, #050810 0%, #0a0e1a 100%) !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2) !important;
    position: relative;
}

/* Голографическая полоса сверху top-line */
.b2b-cyber-page .top-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff, #00d4ff, #ff00ff, #00d4ff);
    background-size: 200% 100%;
    animation: holoShift 3s linear infinite;
    z-index: 100;
}

/* Bottom line - тёмный фон */
.b2b-cyber-page .bottom-line {
    background: linear-gradient(180deg, #0a0e1a 0%, #0f172a 100%) !important;
    border-bottom: none !important;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.1) !important;
}

/* Голографическая полоса снизу bottom-line */
.b2b-cyber-page .bottom-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff00ff, #00d4ff, #ff00ff, #00d4ff, #ff00ff);
    background-size: 200% 100%;
    animation: holoShift 3s linear infinite reverse;
    z-index: 100;
}

/* Ссылки в top-line */
.b2b-cyber-page .top-line__menu-link {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease !important;
}

.b2b-cyber-page .top-line__menu-link:hover,
.b2b-cyber-page .top-line__menu-link.active {
    color: #00d4ff !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6) !important;
}

/* Лого в bottom-line */
.b2b-cyber-page .bottom-line .logo img {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5)) !important;
    transition: all 0.3s ease !important;
}

.b2b-cyber-page .bottom-line .logo:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8)) !important;
}

/* Меню в bottom-line */
.b2b-cyber-page .bottom-line__link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.b2b-cyber-page .bottom-line__link:hover {
    color: #00d4ff !important;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.7) !important;
}

/* Неоновое подчеркивание при hover */
.b2b-cyber-page .bottom-line__link::after {
    content: '' !important;
    position: absolute !important;
    bottom: -5px !important;
    left: 50% !important;
    width: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, #00d4ff, #ff00ff) !important;
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
}

.b2b-cyber-page .bottom-line__link:hover::after {
    width: 100% !important;
}

/* Телефон */
.b2b-cyber-page .bottom-line .phone,
.b2b-cyber-page .bottom-line__phone {
    color: #00d4ff !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5) !important;
}

/* Кнопки */
.b2b-cyber-page .bottom-line .btn {
    border: 1px solid #00d4ff !important;
    background: transparent !important;
    color: #00d4ff !important;
    transition: all 0.3s ease !important;
}

.b2b-cyber-page .bottom-line .btn:hover {
    background: #00d4ff !important;
    color: #0a0e1a !important;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6) !important;
}

/* Alert line */
.b2b-cyber-page .alert-line {
    background: linear-gradient(90deg, #0a0e1a, #1a1040, #0a0e1a) !important;
    border-bottom: 1px solid rgba(255, 0, 255, 0.3) !important;
}

/* ══════════════════════════════════════════════════════════════════ */

/* FIX: Убираем рамку с top-line, делаем плавный переход */
.b2b-cyber-page .top-line {
    background: linear-gradient(180deg, #050810 0%, #0a0e1a 100%) !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Breadcrumbs - тоже тёмные */
.b2b-cyber-page .breadcrumbs,
.b2b-cyber-page .breadcrumbs-wrap {
    background: #050810 !important;
    border: none !important;
}

.b2b-cyber-page .breadcrumbs a,
.b2b-cyber-page .breadcrumbs span {
    color: rgba(255, 255, 255, 0.6) !important;
}

.b2b-cyber-page .breadcrumbs a:hover {
    color: #00d4ff !important;
}

/* Убираем все рамки между элементами хедера */
.b2b-cyber-page .top-line,
.b2b-cyber-page .bottom-line,
.b2b-cyber-page .alert-line {
    border: none !important;
    outline: none !important;
}

/* Плавный градиент на весь хедер */
.b2b-cyber-page .container > .row:first-child {
    background: transparent !important;
}

/* Голографическая линия только в самом верху страницы */
.b2b-cyber-page .top-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff, #00d4ff, #ff00ff, #00d4ff);
    background-size: 200% 100%;
    animation: holoShift 3s linear infinite;
    z-index: 9999;
}

/* Убираем border-bottom у bottom-line, оставляем только свечение */
.b2b-cyber-page .bottom-line {
    background: linear-gradient(180deg, #0a0e1a 0%, #0f172a 100%) !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

/* Голографическая линия после bottom-line */
.b2b-cyber-page .bottom-line::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff00ff, #00d4ff, #ff00ff, #00d4ff, #ff00ff);
    background-size: 200% 100%;
    animation: holoShift 3s linear infinite reverse;
    z-index: 9999;
}

/* FIX: Выпадающий список телефонов */
.b2b-cyber-page .dropdown-menu,
.b2b-cyber-page .phone-dropdown,
.b2b-cyber-page .phones-dropdown {
    min-width: 200px !important;
    width: auto !important;
    white-space: nowrap !important;
    background: #0f172a !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 255, 0.2) !important;
    padding: 10px 0 !important;
}

.b2b-cyber-page .dropdown-menu a,
.b2b-cyber-page .phone-dropdown a,
.b2b-cyber-page .phones-dropdown a {
    white-space: nowrap !important;
    display: block !important;
    padding: 10px 20px !important;
    color: #fff !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.b2b-cyber-page .dropdown-menu a:hover,
.b2b-cyber-page .phone-dropdown a:hover,
.b2b-cyber-page .phones-dropdown a:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    color: #00d4ff !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5) !important;
}

/* Телефоны в списке - без переноса */
.b2b-cyber-page .dropdown-item,
.b2b-cyber-page .phone-item {
    white-space: nowrap !important;
    overflow: visible !important;
}

}
