.elementor-15 .elementor-element.elementor-element-6751583{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.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-598ac44 *//* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Логотип */
.header__logo {
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text-primary);
    font-size: 24px;
    font-weight: 700;
    transition: color var(--transition-speed) ease;
}

.logo:hover {
    color: var(--color-accent-blue);
}

.logo__icon {
    color: var(--color-accent-blue);
    flex-shrink: 0;
}

.logo__text {
    white-space: nowrap;
}

/* Навигация */
.header__nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-list__item {
    position: relative;
}

.nav-list__link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    position: relative;
    display: block;
}

.nav-list__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-blue);
    transition: width var(--transition-speed) ease;
}

.nav-list__link:hover {
    color: var(--color-text-primary);
}

.nav-list__link:hover::after {
    width: 100%;
}

/* Кнопки */
.header__actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--primary:hover {
    background: var(--color-bg-dark-elevated);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn--accent {
    background: var(--color-accent-blue);
    color: #ffffff;
}

.btn--accent:hover {
    background: var(--color-accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-accent-blue);
    width: 100%;
}

.btn--secondary:hover {
    background: var(--color-accent-blue);
}

.btn svg {
    flex-shrink: 0;
}

/* Мобильная кнопка */
.header__mobile-cta {
    display: none;
}

/* Бургер меню */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__burger span {
    width: 28px;
    height: 3px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Кнопка WhatsApp */
.btn--whatsapp {
    background: #25D366;
    color: #ffffff;
    border: 1px solid #25D366;
}

.btn--whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Для мобильного меню */
.header__mobile-cta {
    display: none;
}

.header__mobile-cta .btn {
    margin-bottom: 12px;
}

.header__mobile-cta .btn:last-child {
    margin-bottom: 0;
}

/* Адаптация кнопок действий */
.header__actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (max-width: 768px) {
    .header__mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 30px;
    }
    
    .header__mobile-cta .btn {
        margin-bottom: 0;
    }
    
    .header__actions {
        display: none;
    }
}


/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .nav-list {
        gap: 24px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-bg-dark-secondary);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        transition: right var(--transition-speed) ease;
        overflow-y: auto;
    }

    .header__nav.active {
        right: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-list__item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-list__link {
        padding: 20px 0;
        font-size: 18px;
    }

    .nav-list__link::after {
        display: none;
    }

    .header__actions {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .logo__text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header__nav {
        max-width: 100%;
        padding: 90px 20px 20px;
    }

    .logo__text {
        font-size: 18px;
    }

    .logo__icon {
        width: 32px;
        height: 32px;
    }
}/* End custom CSS */