:root {
    --nb-ink: #111b27;
    --nb-ink-2: #1d2b3a;
    --nb-muted: #627083;
    --nb-line: #dce2e8;
    --nb-paper: #f4f7f8;
    --nb-white: #ffffff;
    --nb-blue: #2868d8;
    --nb-blue-dark: #164ca8;
    --nb-teal: #087f6b;
    --nb-teal-light: #dff7f0;
    --nb-orange: #e36a2e;
    --nb-yellow: #f3b61f;
    --nb-red: #d84f4a;
    --nb-shadow-sm: 0 10px 28px rgba(17, 27, 39, .08);
    --nb-shadow-lg: 0 24px 70px rgba(9, 18, 30, .15);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.nb-home,
.nb-home *,
.nb-home *::before,
.nb-home *::after {
    box-sizing: border-box;
    letter-spacing: 0;
}

.nb-home {
    min-width: 0;
    overflow-x: hidden;
    background: var(--nb-white);
    color: var(--nb-ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.nb-home a {
    color: inherit;
}

.nb-home img {
    max-width: 100%;
}

.nb-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.nb-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 10px 17px;
    color: var(--nb-ink);
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nb-button:hover {
    transform: translateY(-2px);
}

.nb-button-lg {
    min-height: 50px;
    padding: 13px 21px;
    font-size: .94rem;
}

.nb-button-accent {
    border-color: var(--nb-yellow);
    background: var(--nb-yellow);
    color: #18202a;
    box-shadow: 0 10px 24px rgba(243, 182, 31, .2);
}

.nb-button-accent:hover {
    border-color: #ffd15a;
    background: #ffd15a;
    color: #111820;
    box-shadow: 0 14px 32px rgba(243, 182, 31, .28);
}

.nb-button-dark {
    border-color: var(--nb-ink);
    background: var(--nb-ink);
    color: #fff;
}

.nb-button-dark:hover {
    border-color: var(--nb-blue);
    background: var(--nb-blue);
    color: #fff;
}

.nb-button-outline {
    border-color: #b9c5d0;
    background: #fff;
    color: var(--nb-ink);
}

.nb-button-outline:hover {
    border-color: var(--nb-blue);
    color: var(--nb-blue);
}

.nb-button-light {
    border-color: #fff;
    background: #fff;
    color: var(--nb-ink);
}

.nb-button-light:hover {
    background: #eef4ff;
    color: var(--nb-blue-dark);
}

.nb-button-ghost {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(8, 17, 28, .24);
    color: #fff;
}

.nb-button-ghost:hover,
.nb-button-glass:hover {
    border-color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.nb-button-glass {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(8, 17, 28, .38);
    color: #fff;
    backdrop-filter: blur(12px);
}

.nb-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--nb-blue);
    font-size: .73rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.nb-kicker > span {
    width: 23px;
    height: 3px;
    border-radius: 2px;
    background: var(--nb-yellow);
}

.nb-kicker-light {
    color: #d9e7f4;
}

.nb-hero {
    position: relative;
    min-height: min(780px, 88svh);
    background-color: #09131f;
    background-image: var(--nb-hero-image);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.nb-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 10, 17, .98) 0%, rgba(4, 10, 17, .9) 34%, rgba(4, 10, 17, .48) 62%, rgba(4, 10, 17, .22) 100%),
        linear-gradient(180deg, rgba(3, 9, 15, .6) 0%, rgba(3, 9, 15, .08) 48%, rgba(3, 9, 15, .88) 100%);
}

.nb-hero-shell {
    position: relative;
    z-index: 2;
    min-height: inherit;
    padding-bottom: 92px;
}

.nb-nav {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.nb-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.1;
    text-decoration: none;
}

.nb-brand img {
    width: auto;
    max-width: 156px;
    height: 36px;
    object-fit: contain;
}

.nb-brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    background: var(--nb-blue);
    color: #fff;
}

.nb-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.nb-nav-links a {
    position: relative;
    color: rgba(255, 255, 255, .82);
    font-size: .81rem;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.nb-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -10px;
    height: 2px;
    background: var(--nb-yellow);
    transition: right .2s ease;
}

.nb-nav-links a:hover {
    color: #fff;
}

.nb-nav-links a:hover::after {
    right: 0;
}

.nb-nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.nb-menu {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 6px;
    background: rgba(8, 17, 28, .3);
    color: #fff;
}

.nb-hero-content {
    width: min(665px, 68%);
    padding: 92px 0 64px;
}

.nb-hero-content h1 {
    max-width: 760px;
    margin: 18px 0 12px;
    color: #fff;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: .98;
    overflow-wrap: anywhere;
}

.nb-hero-headline {
    max-width: 650px;
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.58rem;
    font-weight: 750;
    line-height: 1.25;
}

.nb-hero-copy {
    max-width: 600px;
    margin: 0;
    color: #b9c8d6;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
}

.nb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
}

.nb-hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 21px;
    margin-top: 25px;
    color: #d8e2eb;
    font-size: .77rem;
    font-weight: 700;
}

.nb-hero-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nb-hero-assurances i {
    color: #42d6ac;
}

.nb-hero-rail {
    position: absolute;
    right: 0;
    bottom: -63px;
    left: 0;
    min-height: 126px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(210px, .88fr);
    border: 1px solid rgba(219, 228, 237, .2);
    border-radius: 8px;
    background: #fff;
    color: var(--nb-ink);
    box-shadow: var(--nb-shadow-lg);
}

.nb-hero-rail > div {
    min-width: 0;
    display: grid;
    grid-template-columns: 42px auto;
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 13px;
    padding: 21px;
    border-right: 1px solid var(--nb-line);
}

.nb-hero-rail > div:last-child {
    border-right: 0;
}

.nb-rail-icon {
    width: 42px;
    height: 42px;
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    align-self: center;
    border-radius: 6px;
    background: #e8f0ff;
    color: var(--nb-blue);
}

.nb-rail-icon-green {
    background: var(--nb-teal-light);
    color: var(--nb-teal);
}

.nb-rail-icon-orange {
    background: #fff0e6;
    color: var(--nb-orange);
}

.nb-hero-rail strong {
    color: var(--nb-ink);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.nb-hero-rail small {
    margin-top: 7px;
    color: var(--nb-muted);
    font-size: .73rem;
    font-weight: 650;
    line-height: 1.25;
}

.nb-hero-rail .nb-rail-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--nb-blue);
    color: #fff;
}

.nb-rail-price span {
    color: #dce8ff;
    font-size: .72rem;
    font-weight: 750;
    text-transform: uppercase;
}

.nb-hero-rail .nb-rail-price strong {
    margin-top: 7px;
    color: #fff;
    font-size: 1.75rem;
}

.nb-rail-price a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    text-decoration: none;
}

.nb-service-section,
.nb-plan-section,
.nb-account-section,
.nb-order-section,
.nb-faq-section {
    padding: 102px 0;
}

.nb-service-section {
    padding-top: 152px;
    background: var(--nb-paper);
}

.nb-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, .65fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 42px;
}

.nb-section-heading h2,
.nb-platform-content h2,
.nb-network-copy h2,
.nb-faq-copy h2,
.nb-cta h2 {
    margin: 12px 0 0;
    color: var(--nb-ink);
    font-size: 2.48rem;
    font-weight: 900;
    line-height: 1.08;
}

.nb-section-heading p {
    margin: 0;
    color: var(--nb-muted);
    font-size: .93rem;
    line-height: 1.7;
}

.nb-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.nb-service-card {
    position: relative;
    min-width: 0;
    min-height: 304px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--nb-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 27, 39, .04);
    opacity: 1;
    transform: none;
    transition: opacity .5s ease, transform .5s ease, border-color .2s ease, box-shadow .2s ease;
}

.nb-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--service-tone);
}

.nb-service-card.is-visible {
    opacity: 1;
    transform: none;
}

.nb-service-card:hover {
    border-color: color-mix(in srgb, var(--service-tone) 46%, white);
    box-shadow: var(--nb-shadow-sm);
}

.nb-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nb-service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: color-mix(in srgb, var(--service-tone) 12%, white);
    color: var(--service-tone);
    font-size: 1.15rem;
}

.nb-service-count {
    border: 1px solid var(--nb-line);
    border-radius: 999px;
    padding: 5px 9px;
    color: var(--nb-muted);
    font-size: .7rem;
    font-weight: 800;
}

.nb-service-card h3 {
    margin: 26px 0 10px;
    color: var(--nb-ink);
    font-size: 1.25rem;
    font-weight: 900;
}

.nb-service-card p {
    margin: 0;
    color: var(--nb-muted);
    font-size: .86rem;
    line-height: 1.65;
}

.nb-service-card > a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--service-tone);
    font-size: .8rem;
    font-weight: 900;
    text-decoration: none;
}

.nb-service-card > a i {
    transition: transform .2s ease;
}

.nb-service-card > a:hover i {
    transform: translateX(4px);
}

.nb-plan-section {
    background: #fff;
}

.nb-plan-toolbar {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 21px;
    padding: 9px;
    border: 1px solid var(--nb-line);
    border-radius: 8px;
    background: var(--nb-paper);
}

.nb-plan-filters {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.nb-plan-filters button {
    min-height: 38px;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 8px 13px;
    background: transparent;
    color: var(--nb-muted);
    font-size: .76rem;
    font-weight: 800;
}

.nb-plan-filters button:hover {
    color: var(--nb-ink);
}

.nb-plan-filters button.is-active {
    border-color: #cfd9e2;
    background: #fff;
    color: var(--nb-blue);
    box-shadow: 0 4px 12px rgba(17, 27, 39, .06);
}

.nb-plan-toolbar > span {
    padding-right: 9px;
    color: var(--nb-muted);
    font-size: .73rem;
    font-weight: 750;
    white-space: nowrap;
}

.nb-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.nb-plan-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 23px;
    border: 1px solid var(--nb-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 27, 39, .04);
    opacity: 1;
    transform: none;
    transition: opacity .5s ease, transform .5s ease, border-color .2s ease, box-shadow .2s ease;
}

.nb-plan-card.is-visible {
    opacity: 1;
    transform: none;
}

.nb-plan-card[hidden] {
    display: none;
}

.nb-plan-card:hover,
.nb-plan-card.is-recommended {
    border-color: #9eb9e9;
    box-shadow: var(--nb-shadow-sm);
}

.nb-plan-card.is-recommended {
    box-shadow: inset 0 4px 0 var(--nb-blue), var(--nb-shadow-sm);
}

.nb-plan-card-head {
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.nb-plan-type {
    color: var(--nb-blue);
    font-size: .69rem;
    font-weight: 900;
    text-transform: uppercase;
}

.nb-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    padding: 5px 8px;
    background: #fff3dc;
    color: #9a5a00;
    font-size: .65rem;
    font-weight: 900;
}

.nb-plan-card h3 {
    margin: 14px 0 7px;
    color: var(--nb-ink);
    font-size: 1.18rem;
    font-weight: 900;
}

.nb-plan-card > p {
    min-height: 47px;
    margin: 0;
    color: var(--nb-muted);
    font-size: .79rem;
    line-height: 1.52;
}

.nb-plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 24px 0 19px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--nb-line);
}

.nb-plan-price strong {
    color: var(--nb-ink);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.nb-plan-price span {
    color: var(--nb-muted);
    font-size: .72rem;
    font-weight: 700;
}

.nb-plan-specs {
    display: grid;
    gap: 10px;
    margin: 0 0 19px;
    padding: 0;
    list-style: none;
}

.nb-plan-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334256;
    font-size: .79rem;
    font-weight: 700;
}

.nb-plan-specs i {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: #eaf1fd;
    color: var(--nb-blue);
}

.nb-plan-locations {
    min-height: 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 17px;
}

.nb-plan-locations span {
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--nb-line);
    border-radius: 999px;
    padding: 5px 8px;
    color: var(--nb-muted);
    font-size: .67rem;
    font-weight: 750;
}

.nb-plan-card .nb-button {
    width: 100%;
}

.nb-center-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.nb-empty {
    grid-column: 1 / -1;
    border: 1px dashed #b8c5d0;
    border-radius: 8px;
    padding: 34px;
    background: #fff;
    color: var(--nb-muted);
    text-align: center;
    font-size: .9rem;
}

.nb-platform-section {
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    background: #0f1b28;
    color: #fff;
}

.nb-platform-media {
    min-height: 610px;
    overflow: hidden;
}

.nb-platform-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(.9) contrast(1.03);
}

.nb-platform-content {
    max-width: 610px;
    align-self: center;
    padding: 72px 64px;
}

.nb-platform-content h2,
.nb-network-copy h2,
.nb-cta h2 {
    color: #fff;
}

.nb-platform-content > p {
    margin: 21px 0 0;
    color: #afbdcb;
    font-size: .94rem;
    line-height: 1.75;
}

.nb-platform-list {
    display: grid;
    gap: 1px;
    margin: 31px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.nb-platform-list > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.nb-platform-list > div > i {
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(53, 120, 225, .2);
    color: #75a8fa;
}

.nb-platform-list span {
    display: grid;
    gap: 3px;
}

.nb-platform-list strong {
    color: #fff;
    font-size: .87rem;
}

.nb-platform-list small {
    color: #9eafbf;
    font-size: .72rem;
}

.nb-account-section {
    background: #fff;
}

.nb-account-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--nb-line);
    border-left: 1px solid var(--nb-line);
}

.nb-account-grid article {
    min-height: 240px;
    padding: 27px;
    border-right: 1px solid var(--nb-line);
    border-bottom: 1px solid var(--nb-line);
    background: #fff;
    opacity: 1;
    transform: none;
    transition: opacity .5s ease, transform .5s ease, background-color .2s ease;
    transition-delay: calc(var(--feature-index) * 60ms);
}

.nb-account-grid article.is-visible {
    opacity: 1;
    transform: none;
}

.nb-account-grid article:hover {
    background: var(--nb-paper);
}

.nb-account-grid article > span {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: #e9f1ff;
    color: var(--nb-blue);
}

.nb-account-grid article:nth-child(2) > span {
    background: var(--nb-teal-light);
    color: var(--nb-teal);
}

.nb-account-grid article:nth-child(3) > span {
    background: #fff1e7;
    color: var(--nb-orange);
}

.nb-account-grid article:nth-child(4) > span {
    background: #ffeceb;
    color: var(--nb-red);
}

.nb-account-grid h3 {
    margin: 23px 0 9px;
    color: var(--nb-ink);
    font-size: 1rem;
    font-weight: 900;
}

.nb-account-grid p {
    margin: 0;
    color: var(--nb-muted);
    font-size: .79rem;
    line-height: 1.62;
}

.nb-network-section {
    padding: 96px 0;
    background: #154c45;
    color: #fff;
}

.nb-network-layout {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr);
    align-items: center;
    gap: 80px;
}

.nb-network-copy p {
    margin: 20px 0 28px;
    color: #c2d9d4;
    font-size: .91rem;
    line-height: 1.75;
}

.nb-location-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.nb-location-list > div {
    min-width: 0;
    min-height: 74px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 7px;
    padding: 13px;
    background: rgba(7, 37, 33, .26);
}

.nb-location-flag {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: rgba(255, 255, 255, .1);
    font-size: 1.28rem;
}

.nb-location-list > div > span:nth-child(2) {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.nb-location-list strong {
    overflow: hidden;
    color: #fff;
    font-size: .83rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nb-location-list small {
    color: #a9c7c1;
    font-size: .66rem;
}

.nb-location-list > div > i {
    color: #68dfbd;
    font-size: .78rem;
}

.nb-location-list .nb-location-empty {
    grid-column: 1 / -1;
    display: block;
    color: #c2d9d4;
    text-align: center;
}

.nb-order-section {
    background: var(--nb-paper);
}

.nb-order-path {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--nb-line);
    border-left: 1px solid var(--nb-line);
}

.nb-order-path article {
    position: relative;
    min-height: 255px;
    padding: 27px;
    border-right: 1px solid var(--nb-line);
    border-bottom: 1px solid var(--nb-line);
    background: #fff;
    opacity: 1;
    transform: none;
    transition: opacity .5s ease, transform .5s ease, box-shadow .2s ease;
}

.nb-order-path article.is-visible {
    opacity: 1;
    transform: none;
}

.nb-order-path article:hover {
    z-index: 2;
    box-shadow: var(--nb-shadow-sm);
}

.nb-order-path article > span {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #c7d0d9;
    font-size: 1.25rem;
    font-weight: 900;
}

.nb-order-path article > i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: #e9f1ff;
    color: var(--nb-blue);
}

.nb-order-path article:nth-child(2) > i {
    background: var(--nb-teal-light);
    color: var(--nb-teal);
}

.nb-order-path article:nth-child(3) > i {
    background: #fff1e7;
    color: var(--nb-orange);
}

.nb-order-path article:nth-child(4) > i {
    background: #ffeceb;
    color: var(--nb-red);
}

.nb-order-path h3 {
    margin: 26px 0 9px;
    color: var(--nb-ink);
    font-size: .98rem;
    font-weight: 900;
}

.nb-order-path p {
    margin: 0;
    color: var(--nb-muted);
    font-size: .78rem;
    line-height: 1.62;
}

.nb-faq-section {
    background: #fff;
}

.nb-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 80px;
}

.nb-faq-copy {
    position: sticky;
    top: 24px;
}

.nb-faq-copy p {
    margin: 18px 0;
    color: var(--nb-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.nb-faq-copy > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nb-blue);
    font-size: .79rem;
    font-weight: 900;
    text-decoration: none;
}

.nb-faq-list {
    border-top: 1px solid var(--nb-line);
}

.nb-faq-list details {
    border-bottom: 1px solid var(--nb-line);
}

.nb-faq-list summary {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 2px;
    color: var(--nb-ink);
    font-size: .92rem;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.nb-faq-list summary::-webkit-details-marker {
    display: none;
}

.nb-faq-list summary i {
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: var(--nb-paper);
    color: var(--nb-blue);
    transition: transform .2s ease;
}

.nb-faq-list details[open] summary i {
    transform: rotate(45deg);
}

.nb-faq-list details p {
    margin: -4px 0 20px;
    padding-right: 54px;
    color: var(--nb-muted);
    font-size: .82rem;
    line-height: 1.68;
}

.nb-cta {
    padding: 68px 0;
    background: var(--nb-blue);
    color: #fff;
}

.nb-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nb-cta span {
    color: #dce8ff;
    font-size: .72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.nb-cta h2 {
    max-width: 720px;
    margin-top: 9px;
}

.nb-cta-inner > div:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nb-footer {
    padding: 72px 0 24px;
    background: #0b141e;
    color: #fff;
}

.nb-footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(140px, .65fr));
    gap: 48px;
}

.nb-footer .nb-brand {
    width: fit-content;
}

.nb-footer-brand p {
    max-width: 380px;
    margin: 19px 0;
    color: #93a5b6;
    font-size: .8rem;
    line-height: 1.7;
}

.nb-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d7e3ee;
    font-size: .76rem;
    font-weight: 750;
    text-decoration: none;
}

.nb-footer-grid > div:not(.nb-footer-brand) {
    display: grid;
    align-content: start;
    gap: 11px;
}

.nb-footer-grid > div > strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.nb-footer-grid > div > a {
    color: #93a5b6;
    font-size: .76rem;
    font-weight: 650;
    text-decoration: none;
}

.nb-footer-grid > div > a:hover {
    color: #fff;
}

.nb-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #718597;
    font-size: .7rem;
}

@media (max-width: 1100px) {
    .nb-nav-links {
        gap: 15px;
    }

    .nb-nav-links a {
        font-size: .75rem;
    }

    .nb-nav-order {
        display: none;
    }

    .nb-hero-content {
        width: min(650px, 76%);
    }

    .nb-hero-content h1 {
        font-size: 3.85rem;
    }

    .nb-hero-rail > div {
        grid-template-columns: 36px auto;
        column-gap: 9px;
        padding: 17px;
    }

    .nb-rail-icon {
        width: 36px;
        height: 36px;
    }

    .nb-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nb-account-grid,
    .nb-order-path {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nb-platform-content {
        padding: 64px 42px;
    }

    .nb-network-layout {
        gap: 45px;
    }
}

@media (max-width: 900px) {
    .nb-shell {
        width: min(100% - 32px, 1180px);
    }

    .nb-hero {
        min-height: 790px;
        background-position: 58% center;
    }

    .nb-menu {
        display: grid;
    }

    .nb-nav-links {
        position: absolute;
        top: 75px;
        right: 0;
        left: 0;
        z-index: 10;
        display: none;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 7px;
        background: rgba(9, 19, 31, .98);
        box-shadow: var(--nb-shadow-lg);
    }

    .nb-nav-links.is-open {
        display: grid;
    }

    .nb-nav-links a {
        padding: 15px 17px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        font-size: .8rem;
    }

    .nb-nav-links a:last-child {
        border-bottom: 0;
    }

    .nb-nav-links a::after {
        display: none;
    }

    .nb-hero-content {
        width: min(640px, 82%);
        padding-top: 76px;
    }

    .nb-hero-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        bottom: -103px;
    }

    .nb-hero-rail > div:nth-child(2) {
        border-right: 0;
    }

    .nb-hero-rail > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--nb-line);
    }

    .nb-service-section {
        padding-top: 178px;
    }

    .nb-section-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
    }

    .nb-service-grid {
        grid-template-columns: 1fr;
    }

    .nb-service-card {
        min-height: 250px;
    }

    .nb-platform-section {
        grid-template-columns: 1fr;
    }

    .nb-platform-media {
        min-height: 430px;
    }

    .nb-platform-content {
        max-width: none;
    }

    .nb-network-layout {
        grid-template-columns: 1fr;
    }

    .nb-faq-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .nb-faq-copy {
        position: static;
    }

    .nb-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nb-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .nb-shell {
        width: min(100% - 24px, 1180px);
    }

    .nb-button {
        white-space: normal;
    }

    .nb-hero {
        min-height: 820px;
        background-position: 62% center;
    }

    .nb-hero-shade {
        background:
            linear-gradient(90deg, rgba(4, 10, 17, .96), rgba(4, 10, 17, .67)),
            linear-gradient(180deg, rgba(3, 9, 15, .62), rgba(3, 9, 15, .24) 46%, rgba(3, 9, 15, .9));
    }

    .nb-nav {
        height: 70px;
        gap: 10px;
    }

    .nb-brand {
        max-width: 176px;
    }

    .nb-brand > span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nb-brand img {
        max-width: 132px;
        height: 31px;
    }

    .nb-nav-actions .nb-button-ghost {
        width: 42px;
        min-height: 42px;
        padding: 0;
    }

    .nb-nav-actions .nb-button-ghost span {
        display: none;
    }

    .nb-menu {
        width: 42px;
        height: 42px;
    }

    .nb-nav-links {
        top: 64px;
    }

    .nb-hero-content {
        width: 100%;
        padding: 56px 0 46px;
    }

    .nb-hero-content h1 {
        margin-top: 14px;
        font-size: 3rem;
        line-height: 1.02;
    }

    .nb-hero-headline {
        font-size: 1.22rem;
    }

    .nb-hero-copy {
        font-size: .9rem;
        line-height: 1.65;
    }

    .nb-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nb-hero-actions .nb-button {
        width: 100%;
    }

    .nb-hero-assurances {
        display: grid;
        gap: 8px;
    }

    .nb-hero-rail {
        bottom: -121px;
        min-height: 242px;
    }

    .nb-hero-rail > div {
        min-height: 89px;
        padding: 14px;
    }

    .nb-hero-rail strong {
        font-size: 1.25rem;
    }

    .nb-hero-rail .nb-rail-price {
        min-height: 64px;
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 11px;
    }

    .nb-hero-rail > div:nth-child(3) {
        border-right: 0;
    }

    .nb-hero-rail .nb-rail-price strong {
        margin: 0;
        font-size: 1.4rem;
    }

    .nb-rail-price a {
        display: none;
    }

    .nb-service-section {
        padding-top: 177px;
    }

    .nb-service-section,
    .nb-plan-section,
    .nb-account-section,
    .nb-order-section,
    .nb-faq-section {
        padding-bottom: 76px;
    }

    .nb-section-heading {
        margin-bottom: 29px;
    }

    .nb-section-heading h2,
    .nb-platform-content h2,
    .nb-network-copy h2,
    .nb-faq-copy h2,
    .nb-cta h2 {
        font-size: 1.85rem;
        line-height: 1.12;
    }

    .nb-plan-toolbar {
        align-items: stretch;
        flex-direction: column;
        padding: 8px;
    }

    .nb-plan-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nb-plan-filters button {
        overflow-wrap: anywhere;
    }

    .nb-plan-toolbar > span {
        padding: 0 5px 3px;
    }

    .nb-plan-grid {
        grid-template-columns: 1fr;
    }

    .nb-plan-card > p {
        min-height: 0;
    }

    .nb-platform-media {
        min-height: 300px;
    }

    .nb-platform-content {
        padding: 58px 20px 64px;
    }

    .nb-account-grid,
    .nb-order-path {
        grid-template-columns: 1fr;
    }

    .nb-account-grid article,
    .nb-order-path article {
        min-height: 215px;
    }

    .nb-network-section {
        padding: 74px 0;
    }

    .nb-location-list {
        grid-template-columns: 1fr;
    }

    .nb-location-list > div {
        min-height: 67px;
    }

    .nb-faq-list details p {
        padding-right: 8px;
    }

    .nb-cta {
        padding: 58px 0;
    }

    .nb-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nb-cta-inner > div:last-child {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .nb-cta-inner .nb-button {
        width: 100%;
    }

    .nb-footer {
        padding-top: 58px;
    }

    .nb-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .nb-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 410px) {
    .nb-hero-content h1 {
        font-size: 2.52rem;
    }

    .nb-kicker {
        font-size: .66rem;
    }

    .nb-hero-rail > div {
        grid-template-columns: 31px minmax(0, 1fr);
        padding: 11px;
    }

    .nb-rail-icon {
        width: 31px;
        height: 31px;
    }

    .nb-hero-rail small {
        font-size: .63rem;
    }

    .nb-plan-filters {
        grid-template-columns: 1fr;
    }

    .nb-footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .nb-home *,
    .nb-home *::before,
    .nb-home *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .nb-service-card,
    .nb-plan-card,
    .nb-account-grid article,
    .nb-order-path article {
        opacity: 1;
        transform: none;
    }
}
