/* Современный адаптивный навбар - полная перезапись */

* {
    box-sizing: border-box;
}

/* Основной навбар */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

/* Контейнер навбара */
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Ссылка с логотипом не должна сжиматься */
.navbar .navbar-container > a {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Логотип */
.navbar-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar.scrolled .navbar-logo {
    height: 40px;
}

/* Навигационное меню */
.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    align-items: center;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.navbar-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff9100;
    transform: translateY(-2px);
}

/* Специальные кнопки */
.navbar-links .highlight-link {
    background: linear-gradient(135deg, #ff9100, #ff6b00);
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 145, 0, 0.3);
}

.navbar-links .highlight-link:hover {
    background: linear-gradient(135deg, #ff6b00, #ff4500);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 145, 0, 0.4);
}

.navbar-links .btn-navbar {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.navbar-links .btn-navbar:hover {
    background: linear-gradient(135deg, #732d91, #8e44ad);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
}

/* Бургер меню - скрыто по умолчанию */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Анимация бургера в крестик */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Мобильное меню */
@media (max-width: 1357px) {
    .navbar-container {
        height: 60px;
        padding: 0 15px;
    }

    .navbar-logo {
        height: 37px;
        margin-left: 3px;
        transform: translateY(0.5px);
    }
    
    .navbar.scrolled .navbar-logo {
        height: 35px;
    }
    
    /* Показываем бургер */
    .burger {
        display: flex;
    }
    
    /* Скрываем обычное меню и делаем выезжающее */
    .navbar-links {
        position: fixed;
        top: 60px;
        right: 0;
        width: min(350px, 85vw);
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 30px 20px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .navbar-links.active {
        transform: translateX(0);
    }
    
    .navbar-links li {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .navbar-links a {
        display: block;
        width: 100%;
        padding: 18px 15px;
        font-size: 16px;
        text-align: left;
        border-radius: 10px;
        margin-bottom: 0;
    }
    
    .navbar-links .highlight-link,
    .navbar-links .btn-navbar {
        margin-top: 15px;
        text-align: center;
        font-weight: 600;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .navbar-container {
        height: 55px;
        padding: 0 12px;
    }

    .navbar-logo {
        height: 37px;
        margin-left: 3px;
        transform: translateY(0.5px);
    }
    
    .navbar.scrolled .navbar-logo {
        height: 30px;
    }
    
    .burger {
        width: 26px;
        height: 20px;
    }
    
    .burger span {
        height: 2px;
    }
    
    .navbar-links {
        top: 55px;
        height: calc(100vh - 55px);
        width: min(300px, 90vw);
        padding: 25px 15px;
    }
    
    .navbar-links a {
        padding: 15px 12px;
        font-size: 15px;
    }
}

/* Компенсация для контента под fixed навбар */
#main {
    padding-top: 70px;
}

@media (max-width: 1357px) {
    #main {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    #main {
        padding-top: 55px;
    }
}

/* Плавное появление навбара */
.navbar {
    opacity: 0;
    animation: fadeInNavbar 0.8s ease forwards;
}

@keyframes fadeInNavbar {
    to {
        opacity: 1;
    }
}

/* Восстанавливаем жирность заголовков секций */
.section h2,
.section-title,
h1, h2, h3, h4, h5, h6 {
    font-weight: bold !important;
}

/* Специальные заголовки с градиентом */
.gradient-title {
    font-weight: bold !important;
}

.comparison-title {
    font-weight: bold !important;
}
