:root {
    --primary: #0753ad;
    --primary-hover: #0648a0;
    --primary-dark: #032b66;
    --navy: #00245f;
    --deep-navy: #001d4d;
    --white: #ffffff;
    --border: #dfe7f1;
    --light-blue: #edf5ff;
    --transition: 0.22s ease;
    --container-width: 1820px;
}

.container {
    width: min(100% - 96px, var(--container-width));
    margin-inline: auto;
}

/* Top Bar */
.top-bar {
    color: var(--white, #ffffff);
    background: linear-gradient(90deg, var(--deep-navy, #00245f), #063676);
    font-size: 13px;
}

.top-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-bar__left,
.top-bar__right,
.top-bar__item,
.language-switcher {
    display: flex;
    align-items: center;
    gap: 11px;
}

.top-bar__item svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.language-switcher {
    gap: 0;
}

.language-switcher button {
    min-height: 32px;
    padding: 0 9px;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 13px;
    transition: background var(--transition);
}

.language-switcher button:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 18px rgba(3, 37, 83, 0.12);
}

.header__inner {
    width: min(100%, 1820px);
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: clamp(18px, 1.8vw, 32px);
    padding-right: clamp(18px, 2.2vw, 36px);
    padding-left: clamp(18px, 2.2vw, 36px);
    transition: min-height var(--transition), padding var(--transition);
}

.site-header.is-scrolled .header__inner {
    min-height: 82px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: clamp(12px, 0.95vw, 20px);
    flex: 0 0 auto;
    min-width: 0;
    color: var(--primary-dark);
    transition: gap 0.28s ease;
}

.logo-icon {
    width: clamp(120px, 7.4vw, 152px);
    height: auto;
    aspect-ratio: 150 / 65;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: visible;
    transition: width 0.28s ease;
}

.site-header.is-scrolled .logo-icon {
    width: clamp(126px, 7.8vw, 160px);
}

.logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-height: clamp(49px, 3.12vw, 62px);
    min-width: 0;
    padding-top: 1px;
    line-height: 1;
    transform: translateY(1px);
    transition: min-height 0.28s ease;
}

.site-header.is-scrolled .logo-text {
    min-height: clamp(57px, 3.55vw, 72px);
}

.logo-name {
    color: var(--primary-dark);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Inter, Arial, sans-serif;
    font-size: clamp(24px, 2.2vw, 18px);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

.logo-tagline {
    color: #5b6b80;
    font-size: clamp(12px, 0.82vw, 15px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

.primary-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.primary-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(4px, 0.52vw, 12px);
    min-width: 0;
}

.primary-nav__list > li {
    flex: 0 0 auto;
    min-width: max-content;
}

.primary-nav a,
.primary-nav button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 5px;
    padding: 0 clamp(6px, 0.5vw, 11px);
    color: #314766;
    background: transparent;
    border: 0;
    font-size: clamp(14px, 0.78vw, 16px);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    transition: color var(--transition);
}

.primary-nav a:hover,
.primary-nav button:hover,
.nav-dropdown.is-open > button {
    color: var(--navy);
}

.nav-dropdown {
    position: relative;
    flex: 0 0 auto;
    min-width: max-content;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    right: -14px;
    left: -14px;
    z-index: 129;
    display: none;
    height: 18px;
}

.nav-dropdown.is-open::before {
    display: block;
}

.nav-dropdown > button {
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

.nav-dropdown > button::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open > button::after {
    transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 130;
    width: max-content;
    min-width: 280px;
    max-width: min(520px, calc(100vw - 40px));
    padding: 8px 0;
    background: #ffffff;
    border: 1px solid #e1e8f2;
    border-radius: 10px;
    box-shadow: 0 18px 36px rgba(27, 43, 75, 0.12), 0 4px 12px rgba(27, 43, 75, 0.07);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

#navSolutionsMenu {
    min-width: 480px;
}

.primary-nav__list > .nav-dropdown:nth-last-child(-n+2) .nav-dropdown__menu,
.nav-language .nav-dropdown__menu {
    right: 0;
    left: auto;
}

.primary-nav__list > .nav-dropdown:nth-last-child(-n+2) .nav-dropdown__menu::before,
.nav-language .nav-dropdown__menu::before {
    right: 24px;
    left: auto;
}

.nav-dropdown__menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid #e1e8f2;
    border-top: 1px solid #e1e8f2;
    transform: rotate(45deg);
}

.nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown.is-open > button {
    color: #1b2b4b;
    background: #f0f6ff;
}

.nav-dropdown__menu li + li {
    border-top: 1px solid #eaeef3;
}

.nav-dropdown__menu a {
    position: relative;
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 15px 44px 15px 24px;
    color: #1b2b4b;
    border-radius: 0;
    font-family: Inter, Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.35;
    text-transform: none;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.nav-dropdown__menu a::after {
    content: ">";
    position: absolute;
    top: 50%;
    right: 22px;
    color: #7c8da8;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown__menu a:hover {
    color: #0753ad;
    background: #f0f6ff;
    padding-left: 26px;
}

.nav-dropdown__menu a:hover::after,
.nav-dropdown__menu a:focus-visible::after {
    opacity: 1;
    transform: translate(2px, -50%);
}

.nav-language {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: max-content;
    margin-left: clamp(4px, 0.7vw, 12px);
    padding-left: clamp(8px, 0.9vw, 16px);
    border-left: 1px solid var(--border);
}

.nav-language > button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 38px;
    padding: 0 9px;
    color: #314766;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1;
    text-transform: none;
    cursor: pointer;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

.nav-language > button:hover {
    color: var(--primary);
    background: var(--light-blue);
    border-color: rgba(7, 83, 173, 0.14);
}

.nav-language > button img {
    width: 20px;
    height: 14px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(3, 37, 83, 0.12);
}

.nav-language__menu {
    min-width: 120px;
}

.nav-language__menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

.nav-language__menu img {
    width: 20px;
    height: 14px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(3, 37, 83, 0.12);
}

.primary-nav .nav-language__link {
    min-height: 34px;
    gap: 5px;
    padding: 0 7px;
    color: #314766;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1;
}

.primary-nav .nav-language__link:hover,
.primary-nav .nav-language__link--current {
    color: var(--primary);
    background: var(--light-blue);
    border-color: rgba(7, 83, 173, 0.14);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.header-search {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    color: var(--primary);
    background: transparent;
    border: 0;
    border-radius: 6px;
}

.header-search svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    flex: 0 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: background var(--transition), border-color var(--transition);
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

body.menu-open .mobile-menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.menu-open .mobile-menu-button span:nth-child(2) {
    opacity: 0;
}

body.menu-open .mobile-menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(3, 37, 83, 0.38);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

body.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-brand,
.menu-footer {
    display: none;
}

.btn-primary {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #063a86);
    border: 0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(7, 83, 173, 0.22);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0b66c7, var(--primary-dark));
    box-shadow: 0 14px 28px rgba(7, 83, 173, 0.28);
}

.btn-primary:active {
    transform: translateY(1px);
}

@media (max-width: 1440px) {
    .container {
        width: min(100% - 72px, var(--container-width));
    }

    .header__inner {
        gap: 16px;
    }

    .logo-icon {
        width: clamp(108px, 7vw, 128px);
    }

    .logo-name {
        font-size: clamp(18px, 1.22vw, 25px);
    }

    .logo-tagline {
        font-size: clamp(10px, 0.74vw, 13px);
    }

    .primary-nav__list {
        gap: 3px;
    }

    .primary-nav a,
    .primary-nav button {
        min-height: 40px;
        padding-right: 5px;
        padding-left: 5px;
        font-size: clamp(13px, 0.92vw, 14px);
    }

    .nav-language {
        margin-left: 4px;
        padding-left: 8px;
    }
}

@media (max-width: 1200px) {
    .container {
        width: min(100% - 56px, var(--container-width));
    }

    .header__inner {
        gap: 12px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .logo-icon {
        width: 108px;
    }

    .logo-name {
        display: block;
        font-size: 18px;
        letter-spacing: 0.03em;
    }

    .logo-tagline {
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .primary-nav__list {
        gap: 2px;
    }

    .primary-nav a,
    .primary-nav button {
        min-height: 38px;
        padding-right: 4px;
        padding-left: 4px;
        font-size: 13px;
    }

    .nav-dropdown > button::after {
        width: 5px;
        height: 5px;
    }

    .nav-language > button {
        min-height: 34px;
        padding-right: 6px;
        padding-left: 6px;
        font-size: 13px;
    }
}

@media (max-width: 1080px) {
    .header__inner {
        width: 100%;
        min-height: 72px;
        justify-content: space-between;
        gap: 12px;
    }

    .site-header.is-scrolled .header__inner {
        min-height: 78px;
    }

    .logo {
        margin-right: auto;
        gap: 10px;
    }

    .logo-icon {
        width: 100px;
    }

    .site-header.is-scrolled .logo-icon {
        width: 108px;
    }

    .site-header.is-scrolled .logo-text {
        min-height: 58px;
    }

    .logo-text {
        display: flex;
    }

    .logo-name {
        display: block;
        font-size: 16px;
        letter-spacing: 0.02em;
    }

    .logo-tagline {
        font-size: 9.5px;
        letter-spacing: 0.08em;
    }

    .mobile-menu-button {
        display: block;
        position: relative;
        z-index: 125;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .mobile-menu-button span {
        width: 24px;
        height: 1.5px;
        background: #1a1a1a;
        border-radius: 0;
        transition: transform 0.25s ease-out, opacity 0.25s ease-out;
    }

    body.menu-open .mobile-menu-button {
        position: fixed;
        top: 12px;
        right: clamp(24px, 6vw, 46px);
        z-index: 126;
        width: 44px;
        height: 44px;
        background: transparent;
        border-color: transparent;
    }

    body.menu-open .mobile-menu-button span {
        width: 30px;
        height: 2px;
        background: var(--navy);
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(81vw, 640px);
        height: 100dvh;
        z-index: 110;
        display: flex;
        flex-direction: column;
        padding: 0;
        background: #ffffff;
        border-left: 1px solid rgba(3, 37, 83, 0.08);
        box-shadow: -18px 0 44px rgba(3, 37, 83, 0.16);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        transition: opacity 0.28s ease, visibility 0.28s ease;
        flex: 0 0 auto;
        overflow-y: hidden;
        overflow-x: hidden;
        font-family: Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    .primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-brand {
        position: relative;
        display: flex;
        align-items: center;
        gap: clamp(14px, 4vw, 24px);
        min-height: 178px;
        padding: 58px clamp(26px, 7vw, 62px) 30px;
        color: var(--navy);
        background: #ffffff;
        border-bottom: 0;
    }

    .mobile-menu-brand::after {
        display: none;
    }

    .mobile-menu-brand img {
        width: clamp(94px, 24vw, 136px);
        height: auto;
        flex: 0 0 auto;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .mobile-menu-brand div {
        display: flex;
        min-width: 0;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu-brand strong {
        color: var(--navy);
        font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Inter, Arial, sans-serif;
        font-size: clamp(14px, 3.55vw, 21px);
        font-weight: 900;
        line-height: 1;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .mobile-menu-brand span {
        color: var(--navy);
        font-size: clamp(12px, 3vw, 16px);
        font-weight: 650;
        line-height: 1;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .primary-nav__list {
        display: grid;
        gap: 0;
        justify-content: stretch;
        min-width: 0;
        flex: 1 1 auto;
        padding: 2px clamp(26px, 7vw, 62px) 22px;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
    }

    .primary-nav__list > .nav-language {
        display: none;
    }

    .primary-nav__list > li,
    .nav-dropdown {
        min-width: 0;
        width: 100%;
    }

    .primary-nav a,
    .primary-nav button {
        width: 100%;
        min-width: 0;
        min-height: 64px;
        justify-content: space-between;
        padding: 16px 4px;
        color: var(--navy);
        border-bottom: 1px solid #dde2e8;
        border-radius: 0;
        font-size: clamp(14px, 2.2vw, 18px);
        font-weight: 900;
        line-height: 1.45;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: color 0.25s ease-out, background 0.25s ease-out, padding-left 0.25s ease-out;
    }

    .primary-nav a:hover,
    .primary-nav button:hover,
    .nav-dropdown:hover > button,
    .nav-dropdown.is-open > button {
        color: var(--navy);
        background: transparent;
    }

    .primary-nav__list > li > a:hover,
    .nav-dropdown.is-open > button {
        padding-left: 4px;
    }

    .nav-dropdown > button::after {
        width: 11px;
        height: 11px;
        margin-right: 12px;
        border-right: 2px solid #5f6a7b;
        border-bottom: 2px solid #5f6a7b;
        transform: rotate(45deg) translateY(-2px);
        transition: transform 0.25s ease-out, border-color 0.25s ease-out;
    }

    .nav-dropdown.is-open > button::after {
        border-color: var(--navy);
        transform: rotate(225deg) translate(-2px, -1px);
    }

    .nav-language {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
        margin: 14px 0 0;
        padding: 0;
        border-top: 1px solid #d8e2ef;
        border-left: 0;
    }

    .nav-language > button {
        width: 100%;
        min-height: 44px;
        justify-content: space-between;
        gap: 10px;
        padding: 0 14px;
        color: var(--navy);
        background: #ffffff;
        border: 1px solid #d8dde5;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.45;
        text-transform: none;
        white-space: nowrap;
    }

    .nav-language > button img,
    .nav-language__menu img {
        width: 22px;
        height: 15px;
        flex: 0 0 auto;
        object-fit: cover;
        border-radius: 2px;
        box-shadow: 0 0 0 1px rgba(3, 37, 83, 0.12);
    }

    .nav-language > button span {
        margin-right: auto;
    }

    .nav-language__menu {
        position: static;
        min-width: 0;
        display: block;
        width: 100%;
        max-height: 0;
        margin: 0;
        padding: 0;
        background: #ffffff;
        border: 1px solid transparent;
        border-radius: 4px;
        box-shadow: 0 12px 24px rgba(3, 37, 83, 0.10);
        opacity: 0;
        visibility: visible;
        overflow: hidden;
        transform: none;
        transition: max-height 0.3s ease-out, opacity 0.25s ease-out, margin 0.25s ease-out, border-color 0.25s ease-out;
    }

    .nav-language__menu::before {
        display: none;
    }

    .nav-language__menu a {
        min-height: 40px;
        gap: 10px;
        padding: 9px 14px;
        color: #24364f;
        border-bottom: 1px solid #e9eef5;
        font-size: 14px;
        font-weight: 650;
        line-height: 1.45;
        white-space: nowrap;
    }

    .nav-language__menu a[aria-current="true"] {
        color: var(--primary);
        background: #eef6ff;
        box-shadow: inset 3px 0 0 var(--primary);
    }

    .nav-language__menu li + li {
        border-top: 0;
    }

    .nav-dropdown__menu {
        position: static;
        width: auto;
        max-width: none;
        min-width: 0;
        display: block;
        max-height: 0;
        margin: 0;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: visible;
        overflow: hidden;
        transform: none;
        transition: max-height 0.32s ease-out, opacity 0.25s ease-out, margin 0.25s ease-out;
    }

    #navSolutionsMenu {
        min-width: 0;
    }

    .nav-dropdown__menu::before {
        display: none;
    }

    .nav-dropdown__menu li + li {
        border-top: 0;
    }

    .nav-dropdown__menu a {
        min-height: 48px;
        padding: 10px 0 10px 18px;
        color: #3f4c62;
        background: transparent;
        border-bottom: 1px solid #edf1f5;
        font-size: 16px;
        font-weight: 650;
        line-height: 1.5;
        text-transform: none;
        white-space: nowrap;
    }

    .nav-dropdown__menu a:hover {
        color: var(--navy);
        background: transparent;
        padding-left: 22px;
    }

    .nav-dropdown__menu a::after {
        display: none;
    }

    .nav-dropdown.is-open .nav-dropdown__menu,
    .nav-language.is-open .nav-language__menu {
        max-height: 440px;
        margin-top: 0;
        margin-bottom: 10px;
        opacity: 1;
    }

    .nav-language.is-open .nav-language__menu {
        border-color: #dce6f2;
    }

    .menu-footer {
        position: sticky;
        bottom: 0;
        display: block;
        flex: 0 0 auto;
        padding: 12px clamp(26px, 7vw, 62px) 32px;
        background: #ffffff;
        border-top: 0;
        box-shadow: none;
    }

    .menu-footer .btn-primary {
        display: flex;
        width: 100%;
        min-height: 52px;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
        padding: 0 14px;
        color: #ffffff;
        background: linear-gradient(135deg, #082b63, #06438f);
        border: 0;
        border-bottom: 0;
        border-radius: 4px;
        font-size: clamp(14px, 2.4vw, 18px);
        font-weight: 900;
        line-height: 1;
        letter-spacing: 0.03em;
        text-align: center;
        text-transform: uppercase;
        white-space: nowrap;
        text-overflow: clip;
        overflow: hidden;
        box-shadow: 0 10px 18px rgba(3, 37, 83, 0.18);
    }

    .menu-footer .btn-primary:hover {
        color: #ffffff;
        background: linear-gradient(135deg, #0b397c, #0753ad);
        padding: 0 14px;
    }

    .contact-mini {
        display: none;
        gap: 4px;
        margin-top: 10px;
        color: #64738a;
        font-size: 12px;
        font-weight: 650;
        line-height: 1.35;
        text-align: center;
    }

    .contact-mini a {
        display: inline;
        width: auto;
        min-height: 0;
        padding: 0;
        color: inherit;
        border: 0;
        font-size: inherit;
        font-weight: inherit;
        line-height: inherit;
        text-transform: none;
        white-space: normal;
    }

    .contact-mini a:hover {
        color: var(--primary);
        background: transparent;
        padding: 0;
    }

    .menu-language {
        display: block;
        margin: 0;
        border: 0;
    }

    .header-actions {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 40px, var(--container-width));
    }

    span.top-bar__optional,
    .top-bar__delivery {
        display: none;
    }

    .top-bar__inner {
        gap: 10px;
    }

    .logo-icon {
        width: 100px;
        height: auto;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        min-height: 51px;
    }

    .logo-text .logo-name {
        font-size: 16px;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 0.02em;
    }

    .logo-text .logo-tagline {
        font-size: 9.5px;
        font-weight: 500;
        color: var(--navy);
        letter-spacing: 0.08em;
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 32px, var(--container-width));
    }

    .header__inner {
        min-height: 70px;
    }

    .logo-icon {
        width: 96px;
        height: auto;
    }

    .site-header.is-scrolled .header__inner {
        min-height: 74px;
    }

    .site-header.is-scrolled .logo-icon {
        width: 112px;
    }

    .site-header.is-scrolled .logo-text {
        min-height: 54px;
    }
}

@media (max-width: 1080px) {
    .site-header .logo {
        align-items: center;
    }

    .site-header .logo-text {
        justify-content: center;
        gap: 4px;
        min-height: 50px;
        padding-top: 0;
        transform: translateY(1px);
    }

    .site-header.is-scrolled .logo-text {
        min-height: 54px;
    }

    .site-header .logo-name {
        display: block;
        color: var(--primary-dark);
        font-size: clamp(17px, 4.2vw, 20px);
        font-weight: 850;
        line-height: 0.98;
        letter-spacing: 0.03em;
    }

    .site-header .logo-tagline {
        color: #5b6b80;
        font-size: clamp(9.5px, 2.35vw, 11px);
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 420px) {
    .site-header .logo-text {
        gap: 4px;
        min-height: 48px;
    }

    .site-header.is-scrolled .logo-text {
        min-height: 52px;
    }

    .site-header .logo-name {
        font-size: 1.12rem;
        letter-spacing: -0.5px;
    }

    .site-header .logo-tagline {
        font-size: 0.68rem;
        letter-spacing: 0.35px;
    }
}

.primary-nav__list > li > a.is-active,
.primary-nav__list > .nav-dropdown.is-current-section > button,
.primary-nav__list > .nav-dropdown > button.is-active {
    position: relative;
    color: #0753ad;
    background: #edf5ff;
    border-radius: 6px;
}

.primary-nav__list > li > a.is-active::before,
.primary-nav__list > .nav-dropdown.is-current-section > button::before,
.primary-nav__list > .nav-dropdown > button.is-active::before {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 4px;
    left: 8px;
    height: 3px;
    background: #0753ad;
}

.nav-dropdown__menu a.is-active,
.nav-dropdown__menu a[aria-current="page"] {
    color: #0753ad;
    background: #edf5ff;
    font-weight: 800;
}

#primaryNav .primary-nav__list > li > a.is-active,
#primaryNav .primary-nav__list > .nav-dropdown.is-current-section > button,
#primaryNav .primary-nav__list > .nav-dropdown > button.is-active,
#primaryNav .nav-dropdown__menu a.is-active,
#primaryNav .nav-dropdown__menu a[aria-current="page"] {
    color: #0753ad !important;
}

@media (min-width: 1081px) {
    .nav-dropdown__menu a.is-active,
    .nav-dropdown__menu a[aria-current="page"] {
        box-shadow: inset 3px 0 0 #0753ad;
    }

    .nav-dropdown.is-current-section > .nav-dropdown__menu a.is-active::after,
    .nav-dropdown.is-current-section > .nav-dropdown__menu a[aria-current="page"]::after {
        opacity: 1;
        transform: translate(2px, -50%);
    }
}

@media (max-width: 1080px) {
    .primary-nav__list > li > a.is-active::before,
    .primary-nav__list > .nav-dropdown.is-current-section > button::before,
    .primary-nav__list > .nav-dropdown > button.is-active::before {
        right: 4px;
        bottom: 10px;
        left: 4px;
        height: 3px;
    }

    .nav-dropdown__menu a.is-active,
    .nav-dropdown__menu a[aria-current="page"] {
        box-shadow: inset 3px 0 0 #0753ad;
    }
}
