.vxr_h70_main_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.vxr_h70_topbar {
    background: #050d1a;
    border-bottom: 1px solid rgba(50,168,214,0.08);
    font-size: 13px;
}

.vxr_h70_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vxr_h70_topbar .vxr_h70_container {
    height: 38px;
}

.vxr_h70_left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.vxr_h70_toplink {
    color: #7a8fa6;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.3s;
}

.vxr_h70_toplink i {
    color: #32A8D6;
    font-size: 12px;
}

.vxr_h70_toplink:hover {
    color: #c0cedc;
}

.vxr_h70_right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vxr_h70_socials {
    display: flex;
    gap: 12px;
}

.vxr_h70_socials a {
    color: #5a7190;
    font-size: 13px;
    transition: color 0.3s;
    text-decoration: none;
}

.vxr_h70_socials a:hover {
    color: #32A8D6;
}

.vxr_h70_lang {
    position: relative;
    cursor: pointer;
}

.vxr_h70_lang_current {
    color: #7a8fa6;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 4px;
    transition: color 0.3s;
}

.vxr_h70_lang_current:hover {
    color: #c0cedc;
}

.vxr_h70_lang_current .fa-chevron-down {
    font-size: 9px;
    transition: transform 0.3s;
}

.vxr_h70_lang.vxr_h70_lang_open .fa-chevron-down {
    transform: rotate(180deg);
}

.vxr_h70_lang_dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0a1628;
    border: 1px solid rgba(50,168,214,0.12);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.vxr_h70_lang.vxr_h70_lang_open .vxr_h70_lang_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(2px);
    z-index: 10;
}

.vxr_h70_lang_option {
    display: block;
    padding: 8px 16px;
    color: #7a8fa6;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
}

.vxr_h70_lang_option:hover {
    background: rgba(50,168,214,0.08);
    color: #e0e8f0;
}

.vxr_h70_lang_option.vxr_h70_lang_active {
    color: #32A8D6;
}

.vxr_h70_navbar {
    background: rgba(8,18,35,0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(50,168,214,0.06);
    transition: background 0.4s, box-shadow 0.4s;
}

.vxr_h70_main_box.vxr_h70_scrolled .vxr_h70_topbar {
    margin-top: -38px;
    transition: margin-top 0.35s;
}

.vxr_h70_main_box.vxr_h70_scrolled .vxr_h70_navbar {
    background: rgba(6,14,28,0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.vxr_h70_navbar .vxr_h70_container {
    height: 68px;
}

.vxr_h70_logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.vxr_h70_logo img {
    height: 67px;
    width: auto;
    border-radius: 6px;
}

.vxr_h70_nav_links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.vxr_h70_link {
    color: #b0c0d0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.vxr_h70_link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #32A8D6, #A6D43A);
    transition: width 0.35s;
    border-radius: 2px;
}

.vxr_h70_link:hover,
.vxr_h70_link.vxr_h70_link_active {
    color: #fff;
}

.vxr_h70_link:hover::after,
.vxr_h70_link.vxr_h70_link_active::after {
    width: 100%;
}

.vxr_h70_cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, #32A8D6, #0546A4);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.3px;
}

.vxr_h70_cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(50,168,214,0.3);
}

.vxr_h70_burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.vxr_h70_burger span {
    width: 24px;
    height: 2px;
    background: #c0cedc;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.vxr_h70_burger.vxr_h70_active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.vxr_h70_burger.vxr_h70_active span:nth-child(2) {
    opacity: 0;
}

.vxr_h70_burger.vxr_h70_active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

.vxr_h70_mobile_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5,13,26,0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.vxr_h70_mobile_overlay.vxr_h70_open {
    opacity: 1;
    visibility: visible;
}

.vxr_h70_mobile_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vxr_h70_mob_link {
    color: #e0e8f0;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    transition: color 0.3s;
}

.vxr_h70_mob_link:hover {
    color: #32A8D6;
}

.vxr_h70_mob_cta {
    display: inline-flex;
    padding: 12px 32px;
    background: linear-gradient(135deg, #32A8D6, #0546A4);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 8px;
}

.vxr_h70_mob_lang {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.vxr_h70_mob_lang a {
    color: #5a7190;
    text-decoration: none;
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(50,168,214,0.15);
    transition: all 0.3s;
}

.vxr_h70_mob_lang a.vxr_h70_lang_active,
.vxr_h70_mob_lang a:hover {
    color: #32A8D6;
    border-color: #32A8D6;
}

@media (max-width: 1024px) {
    .vxr_h70_nav_links, .vxr_h70_cta { display: none; }
    .vxr_h70_burger { display: flex; }
}

@media (max-width: 768px) {
    .vxr_h70_topbar { display: none; }
    .vxr_h70_navbar .vxr_h70_container { height: 58px; padding: 0 16px; }
    .vxr_h70_logo img { height: 36px; }
}