:root {
    --deep-navy: #0f3f78;
    --navy: #003366;
    --primary: #0d4a8c;
    --primary-dim: #145da0;
    --surface: #f7f9fb;
    --surface-low: #f2f5f7;
    --surface-high: #e9eef1;
    --ink: #263238;
    --muted: #63707b;
    --outline: #d6dfe4;
    --white: #fff;
    --focus-ring: #075f9f;
    --shell: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--surface);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

:where(a, button):focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

:where(.organization, .site-footer) :where(a, button):focus-visible,
body.menu-open :where(a, button):focus-visible {
    outline-color: var(--white);
}

main:focus {
    outline: 0;
}

.shell {
    width: min(calc(100% - 64px), var(--shell));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 11px 18px;
    border-radius: 999px;
    color: var(--white);
    background: var(--navy);
    transform: translateY(-160%);
    transition: transform .18s ease;
}

.skip-link:focus-visible {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 50;
    color: var(--ink);
    background: var(--white);
}

.meta-bar {
    border-bottom: 1px solid #edf0f2;
}

.meta-bar__inner {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.branch-switcher,
.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-switcher a,
.branch-switcher span {
    min-height: 30px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7dee3;
    border-radius: 999px;
    color: #637180;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.branch-switcher .is-active {
    color: var(--white);
    border-color: var(--deep-navy);
    background: var(--deep-navy);
}

.social-links {
    gap: 22px;
    color: #596772;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.social-links > span {
    color: #66747e;
    letter-spacing: .18em;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .18s ease;
}

.social-links svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: currentColor;
}

.social-links a:last-child svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.social-links a:last-child .social-icon__dot {
    fill: currentColor;
    stroke: none;
}

.social-links a:hover {
    color: var(--primary);
}

.navbar {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.brand {
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
}

.brand__logo {
    transition: opacity .18s ease;
}

.brand__logo--inverse {
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
    pointer-events: none;
}

.brand img {
    width: 310px;
    height: auto;
    max-height: 68px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
    color: #53616c;
    font-size: 13px;
    font-weight: 700;
}

.main-nav > a:not(.main-nav__cta) {
    transition: color .18s ease;
}

.main-nav > a:not(.main-nav__cta):hover {
    color: var(--deep-navy);
}

.main-nav__cta {
    min-height: 48px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(120deg, var(--deep-navy), var(--primary-dim));
    box-shadow: 0 10px 24px rgba(15, 63, 120, .12);
    transition: transform .18s ease;
}

.main-nav__cta:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

.hero {
    overflow: hidden;
    border-top: 1px solid #f1f3f4;
    border-bottom: 1px solid rgba(214, 223, 228, .7);
    background: var(--white);
}

.hero__grid {
    min-height: 650px;
    padding-top: 62px;
    padding-bottom: 62px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(510px, 1fr);
    align-items: center;
    gap: 10%;
}

.hero__kicker {
    margin: 0 0 19px;
    color: #3a5f94;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 0 0 20px;
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: clamp(43px, 4.2vw, 59px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.052em;
}

.hero h1 span {
    display: block;
}

.hero h1 span:last-child {
    color: var(--primary-dim);
}

.hero__lead {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.hero__affiliation {
    max-width: 585px;
    margin-top: 26px;
    padding: 14px 0 14px 18px;
    border-left: 3px solid var(--primary-dim);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.hero__actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.button {
    min-height: 58px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 17px;
    font-size: 13px;
    font-weight: 800;
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--white);
    background: linear-gradient(120deg, var(--deep-navy), var(--primary-dim));
    box-shadow: 0 12px 28px rgba(15, 63, 120, .14);
}

.button--secondary {
    color: var(--deep-navy);
    border: 1px solid rgba(214, 223, 228, .8);
    background: var(--surface-low);
}

.button .material-symbols-outlined {
    font-size: 19px;
}

.branch-visual {
    border: 1px solid var(--outline);
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 18px 48px rgba(22, 48, 67, .09);
}

.branch-visual figure {
    position: relative;
    height: 398px;
    margin: 0;
    overflow: hidden;
    background: #dfe6e9;
}

.branch-visual figure::after {
    content: "";
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(to top, rgba(10, 33, 49, .56), transparent);
}

.branch-visual figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-visual figcaption {
    position: absolute;
    z-index: 2;
    inset: auto 22px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--white);
}

.branch-visual figcaption > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.branch-visual figcaption a {
    color: rgba(255, 255, 255, .7);
    font-size: 9px;
}

.branch-visual__details {
    min-height: 104px;
    display: grid;
    grid-template-columns: 1.35fr .8fr;
}

.branch-visual__details > div,
.branch-visual__details > a {
    padding: 21px 23px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.branch-visual__details > a {
    border-left: 1px solid var(--outline);
    transition: background-color .18s ease;
}

.branch-visual__details > a:hover {
    background: var(--surface-low);
}

.branch-visual__details > * > span {
    color: var(--primary);
    font-size: 24px;
}

.branch-visual__details p {
    margin: 0;
}

.branch-visual__details small,
.branch-visual__details strong {
    display: block;
}

.branch-visual__details small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.branch-visual__details strong {
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.35;
}

.service-gateway {
    border-bottom: 1px solid rgba(214, 223, 228, .75);
    background: var(--surface-low);
}

.service-gateway__inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: 1.15fr repeat(3, 1fr);
    align-items: stretch;
}

.service-gateway__intro,
.service-gateway__inner > a {
    padding: 24px 28px;
    display: flex;
    align-items: center;
}

.service-gateway__intro {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.service-gateway__intro span,
.service-gateway__intro strong {
    display: block;
}

.service-gateway__intro span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-gateway__intro strong {
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: 19px;
}

.service-gateway__inner > a {
    gap: 15px;
    border-left: 1px solid var(--outline);
    color: var(--deep-navy);
    transition: color .18s ease, background-color .18s ease;
}

.service-gateway__inner > a:hover {
    color: var(--primary);
    background: var(--white);
}

.service-gateway__inner > a > span {
    color: var(--primary);
    font-size: 23px;
}

.service-gateway__inner > a strong {
    min-width: 0;
    flex: 1;
    font-size: 12px;
}

.service-gateway__inner > a i {
    font-size: 18px;
    font-style: normal;
}

.section {
    padding: 100px 0;
}

.section-label {
    margin: 0 0 15px;
    color: #3a5f94;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section h2 {
    margin: 0;
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 51px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.section-heading {
    margin-bottom: 52px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
    align-items: end;
    gap: 9%;
}

.section-heading__title h2 {
    max-width: 760px;
}

.section-heading > p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.78;
}

.about {
    background: var(--surface);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.value-card {
    min-height: 290px;
    padding: 38px;
    border: 1px solid rgba(214, 223, 228, .72);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(42, 52, 57, .035);
}

.value-card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 38px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: #eaf2f8;
    font-size: 27px;
}

.value-card h3 {
    margin: 0 0 12px;
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.78;
}

.organization {
    overflow: hidden;
    background: var(--white);
}

.organization__grid {
    display: grid;
    grid-template-columns: minmax(0, .87fr) minmax(460px, .9fr);
    align-items: center;
    gap: 10%;
}

.organization__copy > p:not(.section-label) {
    max-width: 610px;
    margin: 25px 0 30px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.organization__panel {
    position: relative;
    padding: 44px;
    display: grid;
    gap: 22px;
    border: 1px solid var(--outline);
    border-radius: 28px;
    background: var(--surface-low);
}

.organization__connector {
    position: absolute;
    top: 50%;
    left: 75px;
    width: 2px;
    height: 34px;
    background: #b9c8d2;
    transform: translateY(-17px);
}

.city-card {
    position: relative;
    z-index: 2;
    min-height: 112px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(214, 223, 228, .85);
    border-radius: 20px;
    color: var(--deep-navy);
    background: var(--white);
}

.city-card > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--primary);
    background: #eaf2f8;
}

.city-card small,
.city-card strong {
    display: block;
}

.city-card small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.city-card strong {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.city-card--active {
    color: var(--white);
    border-color: var(--deep-navy);
    background: linear-gradient(120deg, var(--deep-navy), var(--primary-dim));
}

.city-card--active small {
    color: #c8d9e8;
}

.city-card--active > span {
    color: var(--white);
    background: rgba(255, 255, 255, .14);
}

.activity {
    background: var(--surface);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.link-card {
    min-height: 130px;
    padding: 28px 30px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 22px;
    border: 1px solid rgba(214, 223, 228, .8);
    border-radius: 22px;
    background: var(--white);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: #bfd0dc;
    box-shadow: 0 16px 34px rgba(42, 52, 57, .07);
}

.link-card > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: #eaf2f8;
    font-size: 27px;
}

.link-card h3 {
    margin: 0 0 5px;
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 800;
}

.link-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.link-card > i {
    color: var(--primary);
    font-size: 21px;
    font-style: normal;
    transition: transform .18s ease;
}

.link-card:hover > i {
    transform: translateX(4px);
}

.contact {
    background: #edf4f8;
}

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(500px, 1fr);
    gap: 10%;
}

.contact__intro > p:last-child {
    max-width: 440px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.78;
}

.contact__details {
    border-top: 1px solid #cbd8e0;
}

.contact-row {
    min-height: 105px;
    padding: 23px 4px;
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid #cbd8e0;
}

a.contact-row {
    transition: color .18s ease, padding .18s ease;
}

a.contact-row:hover {
    padding-left: 10px;
    color: var(--primary);
}

.contact-row__label {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-row strong {
    overflow-wrap: anywhere;
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.35;
}

.contact-row__arrow {
    color: var(--primary);
    font-size: 19px;
}

.about__layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(480px, 1fr);
    align-items: start;
    gap: 10%;
}

.about__statement > p:not(.section-label):not(.about__note) {
    max-width: 570px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.82;
}

.about__statement .about__note {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 3px solid var(--primary);
    color: #4f6270;
    background: #edf3f7;
    font-size: 13px;
    line-height: 1.65;
}

.about__principles {
    border-top: 1px solid var(--outline);
}

.about__principles article {
    min-height: 112px;
    padding: 25px 6px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid var(--outline);
}

.about__principles article > span {
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.about__principles h3 {
    margin: 0 0 5px;
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.about__principles p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.about__scope {
    border-top: 1px solid var(--outline);
}

.about__scope > div {
    min-height: 124px;
    padding: 27px 6px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--outline);
}

.about__scope > div > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--primary);
    background: #eaf2f8;
    font-size: 25px;
}

.about__scope p,
.about__scope small,
.about__scope strong {
    display: block;
}

.about__scope p {
    margin: 0;
}

.about__scope small {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about__scope strong {
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.4;
}

.organization {
    padding-top: 28px;
    padding-bottom: 28px;
}

.organization__banner {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    padding: 58px 62px;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(390px, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 26px 9%;
    border-radius: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(55, 139, 201, .3), transparent 31%),
        linear-gradient(120deg, #073865, var(--navy));
}

.organization__banner::after {
    content: "NOT";
    position: absolute;
    right: -22px;
    bottom: -75px;
    color: rgba(255, 255, 255, .045);
    font-family: "Manrope", sans-serif;
    font-size: 230px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.08em;
    pointer-events: none;
}

.organization__copy,
.organization__description,
.organization__button,
.organization__cities {
    position: relative;
    z-index: 2;
}

.organization__copy .section-label {
    color: #a8cae2;
}

.organization__copy h2 {
    color: var(--white);
    font-size: clamp(36px, 4.2vw, 54px);
}

.organization__banner .organization__copy > p.organization__description {
    max-width: 470px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    line-height: 1.75;
}

.organization__button {
    width: max-content;
    margin-top: 28px;
    color: var(--deep-navy);
    background: var(--white);
}

.organization__cities {
    grid-column: 1;
    align-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.organization__cities i {
    width: 52px;
    height: 1px;
    background: rgba(255, 255, 255, .28);
}

.organization__cities strong {
    color: var(--white);
}

.organization__links {
    grid-column: 2;
    grid-row: 1 / 3;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.organization__links a {
    min-height: 78px;
    padding: 17px 4px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: var(--white);
    transition: padding .18s ease, background-color .18s ease;
}

.organization__links a:hover {
    padding-left: 12px;
    background: rgba(255, 255, 255, .055);
}

.organization__links a > span {
    color: #b8d4e8;
    font-size: 22px;
}

.organization__links strong {
    font-size: 14px;
}

.organization__links i {
    color: #b8d4e8;
    font-size: 18px;
    font-style: normal;
}

.contact {
    padding-top: 82px;
    padding-bottom: 82px;
    background: #edf4f8;
}

.contact__heading {
    margin-bottom: 43px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
    align-items: end;
    gap: 8%;
}

.contact__heading > p:last-child {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.contact__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    position: relative;
    min-height: 142px;
    padding: 27px 58px 25px 27px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 18px;
    border: 1px solid rgba(202, 216, 225, .9);
    border-radius: 20px;
    background: var(--white);
}

a.contact-card {
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

a.contact-card:hover {
    transform: translateY(-3px);
    border-color: #b7cad7;
    box-shadow: 0 14px 30px rgba(26, 57, 78, .07);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    align-self: center;
    border-radius: 14px;
    color: var(--primary);
    background: #eaf2f8;
    font-size: 24px;
}

.contact-card__label {
    align-self: end;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-card strong {
    align-self: start;
    overflow-wrap: anywhere;
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: clamp(16px, 1.55vw, 20px);
    line-height: 1.35;
}

.contact-card > i {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--primary);
    font-size: 18px;
    font-style: normal;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 92% 14%, rgba(43, 122, 181, .18), transparent 28%),
        #06345f;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #6eb2de, var(--primary-dim) 45%, transparent 85%);
}

.footer__grid {
    position: relative;
    z-index: 2;
    padding-top: 62px;
    padding-bottom: 54px;
    display: grid;
    grid-template-columns: 1.3fr 1fr .62fr 1.05fr;
    align-items: start;
    gap: 52px;
}

.footer__logo {
    width: min(100%, 340px);
    height: auto;
    object-fit: contain;
    object-position: left center;
    border-radius: 10px;
}

.footer__brand > p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

.footer__branches {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__branches span,
.footer__branches strong {
    min-height: 31px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer__branches strong {
    color: var(--navy);
    border-color: var(--white);
    background: var(--white);
}

.footer__label {
    margin: 3px 0 23px;
    color: #a9cce6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer__contact,
.footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__contact > a {
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 11px;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    line-height: 1.55;
    transition: color .18s ease;
}

.footer__contact > a:hover {
    color: var(--white);
}

.footer__contact .material-symbols-outlined {
    color: #93c0df;
    font-size: 19px;
}

.footer__nav a {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 600;
    transition: color .18s ease, transform .18s ease;
}

.footer__nav a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer__portal {
    position: relative;
    padding: 4px 0 4px 31px;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.footer__portal::before {
    content: "";
    position: absolute;
    top: 4px;
    left: -2px;
    width: 3px;
    height: 52px;
    border-radius: 999px;
    background: #7ab9df;
}

.footer__portal > span,
.footer__portal > strong {
    display: block;
}

.footer__portal > span {
    color: #a9cce6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer__portal > strong {
    margin-top: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    font-weight: 800;
}

.footer__portal > p {
    max-width: 270px;
    margin: 13px 0 22px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.65;
}

.footer__portal > a {
    width: max-content;
    min-height: 38px;
    padding: 0 0 2px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    color: var(--white);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    transition: gap .18s ease, border-color .18s ease;
}

.footer__portal > a:hover {
    gap: 20px;
    border-color: var(--white);
}

.footer__portal .material-symbols-outlined {
    font-size: 17px;
}

.footer__bottom {
    position: relative;
    z-index: 2;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
}

.footer__bottom > div {
    display: flex;
    gap: 28px;
}

.footer__bottom a:hover {
    color: var(--white);
}

@media (max-width: 1050px) {
    .main-nav {
        gap: 24px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr);
        gap: 6%;
    }

    .service-gateway__inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-gateway__intro {
        grid-column: 1 / -1;
        min-height: 76px;
        align-items: center;
    }

    .organization__grid {
        gap: 6%;
    }

    .footer__grid {
        grid-template-columns: 1.15fr 1fr 1fr;
        gap: 42px;
    }

    .footer__portal {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .shell {
        width: min(calc(100% - 40px), var(--shell));
    }

    .social-links > span {
        display: none;
    }

    .navbar {
        min-height: 82px;
    }

    .brand img {
        width: 250px;
        height: auto;
        max-height: 58px;
    }

    .menu-toggle {
        position: relative;
        z-index: 4;
        display: inline-flex;
        align-items: center;
        gap: 11px;
        padding: 10px 0 10px 10px;
        border: 0;
        color: var(--deep-navy);
        background: transparent;
        font: inherit;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .menu-toggle__lines {
        width: 25px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .menu-toggle__lines i {
        width: 100%;
        height: 2px;
        display: block;
        background: currentColor;
        transition: transform .18s ease, opacity .18s ease;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        inset: 0;
        padding: 130px 26px 40px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        color: var(--white);
        background: var(--navy);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav > a:not(.main-nav__cta) {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        color: var(--white);
        font-family: "Manrope", sans-serif;
        font-size: 22px;
    }

    .main-nav__cta {
        margin-top: 26px;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .28);
        background: transparent;
    }

    .menu-open .menu-toggle {
        color: var(--white);
    }

    .menu-open .brand__logo--default {
        opacity: 0;
    }

    .menu-open .brand__logo--inverse {
        opacity: 1;
    }

    .hero__grid {
        padding-top: 65px;
        padding-bottom: 75px;
        grid-template-columns: 1fr;
        gap: 72px;
    }

    .branch-visual {
        width: min(100%, 600px);
        margin-inline: auto 0;
    }

    .service-gateway__inner {
        grid-template-columns: 1fr;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .service-gateway__intro {
        min-height: 74px;
        grid-column: auto;
        align-items: flex-start;
    }

    .service-gateway__inner > a {
        min-height: 72px;
        border-top: 1px solid var(--outline);
        border-left: 0;
    }

    .section-heading,
    .organization__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .organization__banner {
        grid-template-columns: 1fr;
        padding: 50px;
    }

    .organization__description {
        margin-top: 0;
    }

    .organization__links {
        grid-column: 1;
        grid-row: auto;
    }

    .organization__cities {
        grid-column: 1;
    }

    .contact__heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: 0;
    }

    .organization__panel {
        width: min(100%, 620px);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px 36px;
    }

    .footer__portal {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .shell {
        width: min(calc(100% - 30px), var(--shell));
    }

    .meta-bar__inner {
        min-height: 47px;
    }

    .social-links {
        display: none;
    }

    .branch-switcher {
        width: 100%;
    }

    .branch-switcher a,
    .branch-switcher span {
        flex: 1;
    }

    .brand img {
        width: 210px;
    }

    .menu-toggle__label {
        display: none;
    }

    .hero__grid {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero__lead {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .branch-visual figure {
        height: 310px;
    }

    .branch-visual__details {
        grid-template-columns: 1fr;
    }

    .branch-visual__details > a {
        border-top: 1px solid var(--outline);
        border-left: 0;
    }

    .branch-visual figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .section {
        padding: 75px 0;
    }

    .section h2 {
        font-size: 35px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .about__principles article {
        min-height: 100px;
    }

    .organization {
        padding-top: 15px;
        padding-bottom: 15px;
        background: var(--navy);
    }

    .organization__banner {
        width: 100%;
        min-height: 0;
        padding: 60px 25px;
        border-radius: 0;
    }

    .organization__button {
        width: 100%;
    }

    .organization__cities {
        margin-top: 10px;
    }

    .contact__cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 125px;
        padding: 24px 48px 23px 22px;
        grid-template-columns: 44px minmax(0, 1fr);
        column-gap: 15px;
    }

    .contact-card__icon {
        width: 44px;
        height: 44px;
    }

    .value-card {
        padding: 30px;
    }

    .organization__panel {
        padding: 22px;
    }

    .organization__connector {
        left: 53px;
    }

    .city-card {
        padding: 20px;
    }

    .link-grid {
        grid-template-columns: 1fr;
    }

    .link-card {
        min-height: 112px;
        padding: 22px;
        grid-template-columns: 48px minmax(0, 1fr) 22px;
        gap: 15px;
    }

    .link-card > span {
        width: 48px;
        height: 48px;
    }

    .contact-row {
        min-height: 98px;
        grid-template-columns: 1fr 24px;
        gap: 7px 15px;
    }

    .contact-row__label {
        grid-column: 1 / -1;
    }

    .contact-row strong {
        font-size: 17px;
    }

    .footer__grid {
        padding-top: 46px;
        padding-bottom: 40px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__portal {
        grid-column: 1;
        padding: 4px 0 4px 24px;
    }

    .footer__logo {
        width: min(100%, 320px);
        height: auto;
    }

    .footer__brand > p {
        margin-top: 16px;
    }

    .footer__branches {
        margin-top: 18px;
    }

    .footer__label {
        margin-bottom: 18px;
    }

    .footer__contact > a {
        margin-bottom: 12px;
    }

    .footer__bottom {
        padding-top: 25px;
        padding-bottom: 25px;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__bottom > div {
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media (forced-colors: active) {
    :where(a, button):focus-visible {
        outline: 3px solid Highlight;
        box-shadow: none;
    }
}
