.vc-header__nav a,
.vc-drawer__nav a,
.header-nav-but a {
    transition: font-weight 0.3s ease !important;
}

.header-nav-but a:hover,
.vc-header__nav a:hover,
.vc-drawer__nav a:hover {
    font-weight: 700 !important;
    opacity: 1 !important;
    color: #252A2D !important;
}

.vc-header {
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;
    position: relative;
    z-index: 1000;
}

.vc-header__inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 63px !important;
    height: 90px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    box-sizing: border-box !important;
}

.vc-header__logo img {
    height: 30px;
    width: auto;
    display: block;
    transition: height 0.2s ease;
}

.vc-header__nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 1;
    min-width: 0;
}

.vc-header__nav a {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #252A2D !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    padding: 6px 12px !important;
    letter-spacing: 0 !important;
}

.vc-header__nav a::after {
    content: attr(data-text);
    display: block;
    font-weight: 700;
    font-size: 16px;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap;
}

.vc-header__cta {
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    background: #252A2D !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 15px 24px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    transition: opacity 0.2s !important;
    display: flex !important;
    align-items: center !important;
}

.vc-header__cta:hover {
    opacity: 0.85 !important;
    color: #ffffff !important;
}

.vc-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 9px;
    flex-shrink: 0;
}

.vc-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #252A2D;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

body.vc-open .vc-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.vc-open .vc-burger span:nth-child(2) { opacity: 0; }
body.vc-open .vc-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
body.vc-open .vc-overlay { display: block; }
body.vc-open { overflow: hidden; }

.vc-drawer {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display: none !important;
    flex-direction: column;
    box-shadow: 4px 0 40px rgba(0,0,0,0.15);
}
body.vc-open .vc-drawer {
    display: flex !important;
    transform: translateX(0);
}

.vc-drawer__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid rgba(37,42,45,0.1);
    min-height: 60px;
    box-sizing: border-box;
}

.vc-drawer__head img {
    height: 22px !important;
    width: auto !important;
    display: block !important;
    margin: 0 !important;
}

.vc-drawer__close {
    width: 36px; height: 36px;
    background: rgba(37,42,45,0.07);
    border: none; border-radius: 8px;
    cursor: pointer; font-size: 20px;
    color: #252A2D !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vc-drawer__close:hover { background: rgba(37,42,45,0.14); }

.vc-drawer__nav {
    flex: 1;
    overflow-y: auto;
}

.vc-drawer__nav a {
    display: block !important;
    padding: 15px 24px !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 18px !important;
    color: #252A2D !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(37,42,45,0.06) !important;
    transition: background 0.15s !important;
    text-align: left !important;
}

.vc-drawer__nav a:hover {
    background: rgba(37,42,45,0.04) !important;
    color: #252A2D !important;
}

.vc-drawer__foot {
    padding: 20px;
    border-top: 1px solid rgba(37,42,45,0.1);
}

.vc-drawer__foot a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 15px 24px !important;
    background: #252A2D !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 17px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    transition: opacity 0.2s !important;
}

.vc-drawer__foot a:hover {
    color: #ffffff !important;
    opacity: 0.85 !important;
}

@media (max-width: 1280px) {
    .vc-header__inner { padding: 0 40px !important; }
    .vc-header__logo img { height: 26px; }
}

@media (max-width: 1150px) {
    .vc-header__inner { padding: 0 28px !important; gap: 16px !important; }
    .vc-header__nav { gap: 0 !important; }
    .vc-header__nav a { font-size: 15px !important; padding: 6px 8px !important; }
    .vc-header__cta { font-size: 16px !important; padding: 13px 18px !important; }
    .vc-header__logo img { height: 24px; }
}

@media (max-width: 1050px) {
    .vc-header__inner { height: 60px !important; padding: 0 20px !important; }
    .vc-header__nav { display: none !important; }
    .vc-header__cta { display: none !important; }
    .vc-burger { display: flex !important; }
    .vc-header__logo img { height: 22px; }
}

#vcBurger {
    position: fixed !important;
    top: 10px !important;
    right: 16px !important;
    z-index: 10000 !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12) !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}