:root {
    --nxs-navy-950: #0b1e35;
    --nxs-navy-900: #102844;
    --nxs-navy-800: #173a61;
    --nxs-blue-700: #0f5fae;
    --nxs-blue-600: #1174ce;
    --nxs-blue-100: #eaf4fd;
    --nxs-red: #d9161d;
    --nxs-text: #14253a;
    --nxs-muted: #65758a;
    --nxs-line: #dfe7ef;
    --nxs-soft: #f5f8fb;
    --nxs-white: #fff;
    --nxs-container: 1380px;
    --nxs-radius-sm: 8px;
    --nxs-radius-md: 12px;
    --nxs-radius-lg: 18px;
    --nxs-shadow: 0 18px 55px rgba(13, 38, 67, .14);
}

.nxs-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

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

.nxs-header,
.nxs-footer {
    direction: rtl;
    font-family: inherit;
}

.nxs-header {
    position: sticky;
    top: 0;
    z-index: 9990;
    color: var(--nxs-text);
    background: var(--nxs-white);
    box-shadow: 0 1px 0 rgba(15, 38, 65, .08);
    transition: box-shadow .25s ease;
}

.nxs-header.is-scrolled {
    box-shadow: 0 12px 36px rgba(13, 38, 67, .14);
}

.nxs-topbar {
    min-height: 32px;
    background: var(--nxs-navy-950);
    color: rgba(255,255,255,.82);
    font-size: 11.5px;
}

.nxs-topbar__inner {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nxs-topbar__trust,
.nxs-topbar__links {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.nxs-topbar__trust strong {
    color: #fff;
    font-weight: 800;
}

.nxs-topbar__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #42d392;
    box-shadow: 0 0 0 4px rgba(66,211,146,.14);
}

.nxs-topbar__links a {
    color: #fff;
    text-decoration: none;
    transition: opacity .18s ease;
}

.nxs-topbar__links a:hover {
    opacity: .76;
}

.nxs-mainbar {
    background: #fff;
}

.nxs-mainbar__inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(175px, 220px) minmax(340px, 1fr) auto;
    align-items: center;
    gap: 24px;
    transition: min-height .25s ease;
}

.nxs-header.is-scrolled .nxs-mainbar__inner {
    min-height: 67px;
}

.nxs-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    text-decoration: none;
}

.nxs-logo img {
    display: block;
    width: min(100%, 205px);
    height: auto;
    object-fit: contain;
    transition: width .25s ease;
}

.nxs-header.is-scrolled .nxs-logo img {
    width: 172px;
}

.nxs-search {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 50px;
    border: 1px solid #cfdae6;
    border-radius: 14px;
    background: #f8fafc;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.nxs-search:focus-within {
    border-color: var(--nxs-blue-600);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(17,116,206,.1);
}

.nxs-search__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f8094;
}

.nxs-search input {
    width: 100%;
    height: 48px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--nxs-text);
    font: inherit;
    font-size: 13px;
    padding: 0 4px 0 12px;
}

.nxs-search input::placeholder {
    color: #8190a2;
}

.nxs-search button {
    align-self: stretch;
    min-width: 92px;
    border: 0;
    background: var(--nxs-blue-700);
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: background .18s ease;
}

.nxs-search button:hover {
    background: #0b4f92;
}

.nxs-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nxs-support-action,
.nxs-cart-action {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    border: 1px solid var(--nxs-line);
    border-radius: 13px;
    color: var(--nxs-text);
    background: #fff;
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.nxs-support-action:hover,
.nxs-cart-action:hover {
    border-color: #b8cee3;
    background: #f8fbfe;
    transform: translateY(-1px);
}

.nxs-support-action {
    gap: 10px;
    padding: 5px 11px;
}

.nxs-support-action > span:last-child {
    display: grid;
    line-height: 1.4;
}

.nxs-support-action small {
    color: var(--nxs-muted);
    font-size: 10px;
}

.nxs-support-action strong {
    color: var(--nxs-navy-900);
    font-size: 13px;
    letter-spacing: .2px;
}

.nxs-action-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nxs-blue-100);
    color: var(--nxs-blue-700);
}

.nxs-cart-action {
    position: relative;
    gap: 7px;
    padding: 0 13px;
    color: var(--nxs-blue-700);
    font-size: 11.5px;
    font-weight: 800;
}

.nxs-cart-action b {
    position: absolute;
    top: -7px;
    left: -6px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--nxs-red);
    color: #fff;
    font-size: 10px;
}

.nxs-mobile-menu-button {
    display: none;
}

.nxs-navbar {
    position: relative;
    border-top: 1px solid #edf1f5;
    border-bottom: 1px solid #d8e2ec;
    background: #fff;
}

.nxs-navbar__inner {
    min-height: 47px;
    display: flex;
    align-items: stretch;
}

.nxs-navbar a,
.nxs-navbar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: #263950;
    text-decoration: none;
    font: inherit;
    font-size: 12.5px;
    font-weight: 750;
    cursor: pointer;
    white-space: nowrap;
    transition: color .18s ease, background .18s ease;
}

.nxs-navbar a:hover,
.nxs-navbar button:hover,
.nxs-navbar button.is-open {
    background: #f2f7fc;
    color: var(--nxs-blue-700);
}

.nxs-nav-home {
    padding-inline-start: 6px !important;
}

.nxs-nav-products {
    color: var(--nxs-blue-700) !important;
}

.nxs-navbar__spacer {
    flex: 1;
}

.nxs-navbar__price {
    color: var(--nxs-red) !important;
    font-weight: 850 !important;
}

.nxs-mega {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 50;
    padding: 13px 0 18px;
    background: rgba(240,245,250,.76);
    border-bottom: 1px solid #dce6ef;
    box-shadow: 0 30px 55px rgba(11,30,53,.18);
    backdrop-filter: blur(12px);
}

.nxs-mega[hidden],
.nxs-support-menu[hidden],
.nxs-mobile-overlay[hidden] {
    display: none !important;
}

.nxs-mega__inner {
    display: grid;
    grid-template-columns: minmax(255px, .78fr) minmax(0, 2.45fr);
    gap: 20px;
    padding: 20px;
    border: 1px solid #dae5ef;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--nxs-shadow);
}

.nxs-mega__visuals {
    display: grid;
    gap: 12px;
}

.nxs-mega-card {
    position: relative;
    min-height: 150px;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    isolation: isolate;
}

.nxs-mega-card > div {
    position: relative;
    z-index: 2;
    width: 58%;
    padding: 18px;
    display: grid;
    gap: 5px;
}

.nxs-mega-card small {
    color: rgba(255,255,255,.78);
    font-size: 10px;
}

.nxs-mega-card strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.65;
}

.nxs-mega-card span {
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
}

.nxs-mega-card img {
    position: absolute;
    z-index: 1;
    left: -12px;
    bottom: -11px;
    width: 56%;
    height: 92%;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,.18));
}

.nxs-mega-card--primary {
    background: linear-gradient(135deg, #103e6c, #0d77c7);
}

.nxs-mega-card--secondary {
    background: linear-gradient(135deg, #1d2e49, #314e75);
}

.nxs-mega__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.nxs-mega__column {
    padding: 6px 13px 8px;
    border-left: 1px solid #edf1f5;
}

.nxs-mega__column:last-child {
    border-left: 0;
}

.nxs-mega__column h2 {
    margin: 0 0 9px;
    padding-bottom: 9px;
    border-bottom: 2px solid var(--nxs-blue-100);
    color: var(--nxs-navy-900);
    font-size: 13px;
    font-weight: 900;
}

.nxs-mega__column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nxs-mega__column a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 35px;
    color: #4b5d72;
    text-decoration: none;
    font-size: 11.5px;
    border-radius: 8px;
    padding: 0 7px;
    transition: background .16s ease, color .16s ease, padding .16s ease;
}

.nxs-mega__column a span {
    opacity: 0;
    transform: translateX(4px);
    transition: opacity .16s ease, transform .16s ease;
}

.nxs-mega__column a:hover {
    background: #f4f8fc;
    color: var(--nxs-blue-700);
    padding-right: 10px;
}

.nxs-mega__column a:hover span {
    opacity: 1;
    transform: none;
}

.nxs-support-menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 52%;
    transform: translateX(50%);
    z-index: 60;
    width: 340px;
    padding: 16px;
    border: 1px solid #dbe6ef;
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--nxs-shadow);
}

.nxs-support-menu__head {
    display: grid;
    gap: 3px;
    padding: 3px 5px 12px;
    border-bottom: 1px solid #edf1f5;
}

.nxs-support-menu__head strong {
    color: var(--nxs-navy-900);
    font-size: 13px;
}

.nxs-support-menu__head span {
    color: var(--nxs-muted);
    font-size: 10px;
}

.nxs-support-menu ul {
    list-style: none;
    padding: 8px 0 0;
    margin: 0;
}

.nxs-support-menu a {
    min-height: 38px;
    padding: 0 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    color: #4d6075;
    text-decoration: none;
    font-size: 11.5px;
}

.nxs-support-menu a:hover {
    background: #f4f8fc;
    color: var(--nxs-blue-700);
}

.nxs-mobile-overlay,
.nxs-mobile-drawer {
    display: none;
}

/* Footer */
.nxs-footer {
    margin-top: 0;
    color: #fff;
}

.nxs-service-strip {
    border-top: 1px solid #dfe7ef;
    background: #fff;
    color: var(--nxs-text);
}

.nxs-service-strip__grid {
    min-height: 104px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}

.nxs-service-strip__grid > div {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 20px;
    border-left: 1px solid #e7edf3;
}

.nxs-service-strip__grid > div:last-child {
    border-left: 0;
}

.nxs-service-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--nxs-blue-100);
    color: var(--nxs-blue-700);
}

.nxs-service-icon svg {
    width: 25px;
    height: 25px;
}

.nxs-service-strip p {
    margin: 0;
    display: grid;
    gap: 2px;
}

.nxs-service-strip strong {
    color: var(--nxs-navy-900);
    font-size: 12.5px;
}

.nxs-service-strip small {
    color: var(--nxs-muted);
    font-size: 10.5px;
}

.nxs-footer__main {
    background:
        radial-gradient(circle at 85% 15%, rgba(24,93,154,.22), transparent 28%),
        linear-gradient(135deg, var(--nxs-navy-950), #102a49 60%, #132f51);
}

.nxs-footer__grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(140px, .75fr)) minmax(190px, .9fr);
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 42px;
}

.nxs-footer-logo {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 12px;
    background: #fff;
}

.nxs-footer-logo img {
    display: block;
    width: 178px;
    height: auto;
}

.nxs-footer-brand > p {
    max-width: 360px;
    margin: 18px 0 20px;
    color: rgba(255,255,255,.68);
    font-size: 11.5px;
    line-height: 2;
}

.nxs-footer-phones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 9px;
}

.nxs-footer-phones a {
    min-height: 60px;
    display: grid;
    align-content: center;
    gap: 2px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 11px;
    background: rgba(255,255,255,.055);
    color: #fff;
    text-decoration: none;
    transition: background .17s ease, border-color .17s ease;
}

.nxs-footer-phones a:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.25);
}

.nxs-footer-phones small {
    direction: rtl;
    color: rgba(255,255,255,.55);
    font-size: 9.5px;
}

.nxs-footer-phones strong {
    font-size: 12.5px;
}

.nxs-socials {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.nxs-socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    color: rgba(255,255,255,.82);
}

.nxs-socials svg {
    width: 19px;
    height: 19px;
}

.nxs-footer-column {
    min-width: 0;
}

.nxs-footer-column summary {
    list-style: none;
    margin: 8px 0 17px;
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    cursor: default;
}

.nxs-footer-column summary::-webkit-details-marker {
    display: none;
}

.nxs-footer-column nav {
    display: grid;
    gap: 2px;
}

.nxs-footer-column a {
    position: relative;
    min-height: 34px;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 11px;
    transition: color .16s ease, transform .16s ease;
}

.nxs-footer-column a::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-left: 8px;
    border-radius: 50%;
    background: #459ee8;
}

.nxs-footer-column a:hover {
    color: #fff;
    transform: translateX(-3px);
}

.nxs-footer-trust {
    padding: 14px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
	width: 320px;
    max-width: 100%;
}

.nxs-footer-trust__head {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
}

.nxs-footer-trust__head strong {
    font-size: 12.5px;
}

.nxs-footer-trust__head span {
    color: rgba(255,255,255,.5);
    font-size: 9.5px;
}

.nxs-footer-trust__marks {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.nxs-footer-trust__marks a {
    min-width: 0;
}

.nxs-footer-trust__marks img {
    display: block;
    width: 120px;
    height: 125px;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.nxs-footer-trust > p {
    margin: 9px 0 0;
    color: rgba(255,255,255,.42);
    font-size: 8.5px;
    line-height: 1.8;
}

.nxs-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    background: #08192d;
}

.nxs-footer__bottom-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
}

.nxs-footer__bottom p {
    margin: 0;
}

@media (max-width: 1180px) {
    .nxs-mainbar__inner {
        grid-template-columns: 175px minmax(300px, 1fr) auto;
        gap: 14px;
    }
    .nxs-support-action > span:last-child,
    .nxs-cart-action span {
        display: none;
    }
    .nxs-support-action,
    .nxs-cart-action {
        width: 50px;
        justify-content: center;
        padding: 0;
    }
    .nxs-navbar a,
    .nxs-navbar button {
        padding-inline: 11px;
        font-size: 11.7px;
    }
    .nxs-mega__inner {
        grid-template-columns: 245px minmax(0,1fr);
    }
    .nxs-footer__grid {
        grid-template-columns: 1.25fr repeat(3, .72fr);
    }
    .nxs-footer-trust {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 20px;
    }
    .nxs-footer-trust__marks {
        min-height: 108px;
        min-width: 250px;
    }
    .nxs-footer-trust > p {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    body.nxs-drawer-lock {
        overflow: hidden;
    }
    .nxs-container {
        width: min(calc(100% - 24px), var(--nxs-container));
    }
    .nxs-header {
        position: sticky;
    }
    .nxs-topbar,
    .nxs-navbar,
    .nxs-support-action {
        display: none;
    }
    .nxs-mainbar__inner,
    .nxs-header.is-scrolled .nxs-mainbar__inner {
        min-height: 111px;
        display: grid;
        grid-template-columns: 44px minmax(0,1fr) 44px;
        grid-template-rows: 58px 44px;
        gap: 5px 10px;
        padding: 3px 0 6px;
    }
    .nxs-mobile-menu-button {
        grid-column: 1;
        grid-row: 1;
        width: 42px;
        height: 42px;
        display: grid;
        align-content: center;
        justify-items: center;
        gap: 5px;
        border: 1px solid var(--nxs-line);
        border-radius: 11px;
        background: #fff;
        cursor: pointer;
    }
    .nxs-mobile-menu-button span {
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: var(--nxs-navy-900);
    }
    .nxs-logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }
    .nxs-logo img,
    .nxs-header.is-scrolled .nxs-logo img {
        width: 150px;
    }
    .nxs-header-actions {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }
    .nxs-cart-action {
        width: 42px;
        height: 42px;
        min-height: 42px;
        border-radius: 11px;
    }
    .nxs-search {
        grid-column: 1 / -1;
        grid-row: 2;
        min-height: 42px;
        grid-template-columns: 40px minmax(0,1fr) 70px;
        border-radius: 11px;
    }
    .nxs-search input {
        height: 40px;
        font-size: 11.5px;
    }
    .nxs-search button {
        min-width: 70px;
        font-size: 10.5px;
    }
    .nxs-mega,
    .nxs-support-menu {
        display: none !important;
    }
    .nxs-mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 9998;
        display: block;
        background: rgba(5,19,34,.62);
        backdrop-filter: blur(3px);
    }
    .nxs-mobile-drawer {
        position: fixed;
        z-index: 9999;
        top: 0;
        right: 0;
        width: min(89vw, 390px);
        height: 100dvh;
        display: flex;
        flex-direction: column;
        background: #fff;
        color: var(--nxs-text);
        box-shadow: -24px 0 60px rgba(0,0,0,.22);
        transform: translateX(104%);
        transition: transform .25s ease;
        overflow: hidden;
    }
    .nxs-mobile-drawer.is-open {
        transform: none;
    }
    .nxs-mobile-drawer__head {
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border-bottom: 1px solid #e8eef4;
    }
    .nxs-mobile-drawer__head img {
        width: 155px;
        height: auto;
    }
    .nxs-mobile-drawer__head button {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 10px;
        background: #edf4fa;
        color: var(--nxs-navy-900);
        font-size: 25px;
        cursor: pointer;
    }
    .nxs-mobile-drawer__contact {
        margin: 12px 14px 5px;
        padding: 11px 13px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--nxs-navy-900), var(--nxs-blue-700));
        color: #fff;
    }
    .nxs-mobile-drawer__contact span {
        font-size: 10px;
    }
    .nxs-mobile-drawer__contact a {
        color: #fff;
        text-decoration: none;
        font-size: 12.5px;
        font-weight: 800;
    }
    .nxs-mobile-drawer > nav {
        flex: 1;
        overflow-y: auto;
        padding: 8px 14px 30px;
    }
    .nxs-mobile-link,
    .nxs-mobile-drawer summary {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #edf1f5;
        color: var(--nxs-text);
        text-decoration: none;
        font-size: 12px;
        font-weight: 800;
        cursor: pointer;
    }
    .nxs-mobile-drawer summary {
        list-style: none;
    }
    .nxs-mobile-drawer summary::-webkit-details-marker {
        display: none;
    }
    .nxs-mobile-drawer summary::after {
        content: "+";
        color: var(--nxs-blue-700);
        font-size: 18px;
        font-weight: 500;
    }
    .nxs-mobile-drawer details[open] summary::after {
        content: "−";
    }
    .nxs-mobile-groups {
        display: grid;
        gap: 8px;
        padding: 8px 0 13px;
    }
    .nxs-mobile-groups section {
        padding: 10px 11px;
        border-radius: 10px;
        background: #f5f8fb;
    }
    .nxs-mobile-groups h3 {
        margin: 0 0 6px;
        color: var(--nxs-blue-700);
        font-size: 11px;
    }
    .nxs-mobile-groups a,
    .nxs-mobile-simple-links a {
        min-height: 35px;
        display: flex;
        align-items: center;
        border-bottom: 1px dashed #dfe7ef;
        color: #53657a;
        text-decoration: none;
        font-size: 10.5px;
    }
    .nxs-mobile-groups a:last-child,
    .nxs-mobile-simple-links a:last-child {
        border-bottom: 0;
    }
    .nxs-mobile-simple-links {
        padding: 4px 11px 12px;
        background: #f7f9fb;
        border-radius: 0 0 10px 10px;
    }

    .nxs-service-strip__grid {
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0,1fr));
        padding: 10px 0;
    }
    .nxs-service-strip__grid > div {
        min-height: 76px;
        justify-content: flex-start;
        padding: 8px 10px;
        border-left: 0;
        border-bottom: 1px solid #e8eef4;
    }
    .nxs-service-strip__grid > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }
    .nxs-service-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
    .nxs-service-strip strong {
        font-size: 11px;
    }
    .nxs-service-strip small {
        font-size: 9px;
    }
    .nxs-footer__grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 32px;
        padding-bottom: 24px;
    }
    .nxs-footer-brand {
        padding-bottom: 20px;
    }
    .nxs-footer-brand > p {
        max-width: none;
        font-size: 10.5px;
    }
    .nxs-footer-logo img {
        width: 160px;
    }
    .nxs-footer-column {
        border-top: 1px solid rgba(255,255,255,.1);
    }
    .nxs-footer-column summary {
        min-height: 50px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    .nxs-footer-column summary::after {
        content: "+";
        color: #79bdf5;
        font-size: 18px;
        font-weight: 400;
    }
    .nxs-footer-column[open] summary::after {
        content: "−";
    }
    .nxs-footer-column nav {
        padding-bottom: 11px;
    }
    .nxs-footer-column a {
        min-height: 37px;
    }
    .nxs-footer-trust {
        grid-column: auto;
        display: block;
        margin-top: 20px;
    }
    .nxs-footer-trust__marks {
        min-width: 0;
    }
    .nxs-footer__bottom-inner {
        min-height: 72px;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        text-align: center;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .nxs-footer-phones {
        grid-template-columns: 1fr;
    }
    .nxs-service-strip__grid > div {
        gap: 9px;
        padding-inline: 5px;
    }
    .nxs-service-strip small {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nxs-header *,
    .nxs-footer * {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
}


