:root {
    --navy: #032343;
    --ink: #061e49;
    --blue: #0067ff;
    --cyan: #00b9ef;
    --muted: #42597b;
    --line: #d9e4f1;
    --soft: #f2f6fc;
    --container: 1320px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    background: #fff
}

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

button,
input,
select,
textarea {
    font: inherit
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent
}

button {
    cursor: pointer
}

img,
svg {
    max-width: 100%
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 5px
}

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

.icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15
}

.brand-mark {
    width: 56px;
    height: 46px;
    flex-shrink: 0
}

.brand small {
    display: block;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 3px;
    margin-top: 5px
}

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

.page-index .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 100px
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto
}

.site-header nav a {
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    padding: 18px 0
}

.site-header nav a:after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
    transform: scaleX(0);
    transition: transform .2s
}

.site-header nav a:hover:after,
.site-header nav a[aria-current=page]:after {
    transform: scaleX(1)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background: var(--blue);
    color: #fff;
    padding: 13px 24px;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, transform .2s
}

.btn:hover {
    background: #0056d8;
    transform: translateY(-2px)
}

.btn .icon,
.text-link .icon {
    width: 21px;
    height: 21px
}

.header-cta {
    white-space: nowrap;
    padding: 11px 20px
}

.btn-outline {
    background: transparent;
    border-color: #a9c1dc
}

.btn-outline:hover {
    background: #ffffff18
}

.menu-toggle {
    display: none
}

.hero {
    color: #fff;
    background-color: var(--navy);
    background-image: linear-gradient(90deg, rgba(1, 25, 52, .12), transparent), url('hero.png');
    background-size: cover;
    background-position: center
}

.home-hero {
    min-height: 570px;
    padding: 156px 0 40px
}

.hero-copy {
    max-width: 750px
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 10px;
    text-transform: uppercase
}

.hero .eyebrow {
    color: #cae4fc
}

.hero h1 {
    font-size: clamp(38px, 4.05vw, 64px);
    line-height: 1.06;
    letter-spacing: -2px;
    font-weight: 700;
    margin: 0 0 22px
}

em {
    font-style: normal;
    color: var(--blue)
}

.hero em,
.reach em,
.about-visual em {
    color: var(--cyan)
}

.lead {
    font-size: 18px;
    line-height: 1.5;
    max-width: 550px;
    color: #eef6ff
}

.actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px
}

.hero-values {
    display: flex;
    gap: 34px;
    margin-top: 48px
}

.hero-values span {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: .6px
}

.hero-values .icon {
    width: 30px;
    height: 30px
}

.section {
    padding: 48px 0
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px
}

h2 {
    font-size: clamp(27px, 2.4vw, 38px);
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 12px
}

h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 10px
}

p {
    margin: 0 0 18px
}

p:last-child {
    margin-bottom: 0
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    margin: 0
}

.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600
}

.text-link:hover {
    text-decoration: underline
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 4px;
    min-height: 250px;
    padding: 24px;
    background: linear-gradient(130deg, #fff 40%, #e0edff);
    transition: transform .2s, box-shadow .2s
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px #14396a16
}

.service-card .card-art {
    color: var(--blue);
    margin-bottom: 20px
}

.card-art .icon {
    width: 43px;
    height: 43px
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    max-width: 230px;
    min-height: 66px
}

.service-card h3 {
    letter-spacing: -.4px
}

.values-strip {
    background: var(--soft);
    padding: 30px 0
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.values-grid>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-right: 1px solid #cfdced
}

.values-grid>div:first-child {
    justify-content: flex-start
}

.values-grid>div:last-child {
    border: 0
}

.values-grid .icon {
    width: 44px;
    height: 44px;
    color: #063dac
}

.values-grid strong {
    display: block;
    font-size: 28px;
    line-height: 1.25
}

.values-grid small {
    font-size: 13px;
    color: var(--muted)
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center
}

.split p:not(.eyebrow) {
    color: var(--muted)
}

.about-section {
    background: linear-gradient(100deg, #fff 48%, #e8f3ff)
}

.mini-values {
    display: flex;
    gap: 24px;
    margin-top: 30px
}

.mini-values span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600
}

.mini-values .icon {
    color: #064ba9
}

.about-visual {
    min-height: 320px;
    background: linear-gradient(140deg, #105184, #001b38);
    border-left: 6px solid var(--cyan);
    color: white;
    padding: 45px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    box-shadow: 20px 20px 0 #cbdcf155
}

.about-visual strong {
    font-size: 38px;
    line-height: 1.13;
    letter-spacing: -1px
}

.about-visual>span:last-child {
    font-size: 12px;
    letter-spacing: 2px
}

.reach {
    background: radial-gradient(ellipse at 63% 50%, #005089, #001b39 60%);
    color: #fff;
    padding: 38px 0
}

.reach-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr .4fr;
    align-items: center;
    gap: 35px
}

.reach p {
    max-width: 430px
}

.reach h2 {
    font-size: 36px
}

.network-orbit {
    text-align: center;
    color: #10c8ff;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px
}

.network-orbit>.icon {
    width: 185px;
    height: 185px;
    stroke-width: .45;
    filter: drop-shadow(0 0 12px #00bfff)
}

.network-orbit span {
    font-size: 12px;
    letter-spacing: 3px;
    color: #b7e4ff
}

.regions {
    border-left: 1px solid #5785aa;
    padding-left: 25px;
    list-style: none;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 2.5
}

.advantages {
    padding: 32px 0
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 24px;
    align-items: center
}

.advantage-grid h2 {
    font-size: 26px
}

.advantage {
    display: flex;
    gap: 15px;
    align-items: flex-start
}

.advantage .icon {
    color: var(--blue);
    width: 35px;
    height: 35px
}

.advantage h3 {
    font-size: 14px;
    margin-bottom: 5px
}

.advantage p {
    font-size: 12px;
    color: var(--muted)
}

.cta {
    background: linear-gradient(90deg, rgba(0, 20, 45, .94) 0%, rgba(0, 20, 45, .78) 45%, rgba(0, 20, 45, .35) 100%), url('cta-world-map.png') center center/cover no-repeat;
    color: #fff;
    padding: 40px 0
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px
}

.cta h2 {
    font-size: 30px
}

.cta .eyebrow {
    color: var(--cyan)
}

.cta p {
    color: #e0ebfa
}

.cta .btn {
    flex-shrink: 0
}

.site-footer {
    background: #001a33;
    color: #ccdcf0;
    padding: 28px 0 24px
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    align-items: center;
    padding-bottom: 32px
}

.footer-top .brand {
    font-size: 18px
}

.footer-top nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 12px
}

.site-footer a:hover {
    color: #21bfff
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid #34516c;
    font-size: 12px
}

.footer-bottom>div {
    display: flex;
    gap: 24px
}

.sub-hero {
    padding: 30px 0 58px;
    background-image: linear-gradient(90deg, #021f43e8, #03234344), url('hero.png');
    background-position: center 44%
}

.sub-hero h1 {
    font-size: clamp(36px, 4vw, 60px);
    max-width: 800px
}

.breadcrumbs {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #c4d8ee;
    margin-bottom: 42px
}

.breadcrumbs a:hover {
    text-decoration: underline
}

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

.detail-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 4px
}

.detail-card>.icon {
    color: var(--blue);
    margin-bottom: 20px;
    width: 38px;
    height: 38px
}

.detail-card p {
    color: var(--muted)
}

.soft {
    background: var(--soft)
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 32px
}

.process article {
    border-top: 1px solid #b8cce6;
    padding-top: 20px
}

.process span {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
    display: block;
    margin-bottom: 15px
}

.process p {
    font-size: 15px;
    color: var(--muted)
}

.tags {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 25px
}

.tags span {
    padding: 15px 22px;
    border: 1px solid var(--line);
    background: var(--soft);
    border-radius: 3px
}

.note {
    color: var(--muted);
    font-size: 14px;
    max-width: 850px;
    margin-top: 24px
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px
}

.contact-grid>div>p:not(.eyebrow) {
    color: var(--muted)
}

.contact-note {
    display: flex;
    gap: 20px;
    margin-top: 35px
}

.contact-note>.icon {
    color: var(--blue)
}

.contact-note p {
    color: var(--muted)
}

.contact-note h3 a {
    color: var(--blue);
    text-decoration: none
}

.contact-note h3 a:hover {
    text-decoration: underline
}

form {
    background: var(--soft);
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 5px
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px
}

input,
textarea,
select {
    display: block;
    width: 100%;
    margin-top: 8px;
    border: 1px solid #bccce0;
    background: #fff;
    padding: 12px;
    border-radius: 3px;
    color: var(--ink);
    min-height: 48px;
    font-size: 16px
}

textarea {
    resize: vertical
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400
}

.check input {
    width: 18px;
    min-height: 18px;
    margin: 3px 0 0;
    flex-shrink: 0
}

.check a {
    text-decoration: underline;
    color: var(--blue)
}

.form-help {
    font-size: 13px;
    color: var(--muted)
}

#form-status {
    font-size: 14px;
    margin-top: 15px
}

.narrow {
    max-width: 850px
}

.legal h1 {
    font-size: 45px;
    line-height: 1.1;
    margin: 0 0 40px
}

.legal section {
    margin-bottom: 30px
}

.legal h2 {
    font-size: 23px;
    letter-spacing: 0
}

.legal p {
    color: var(--muted)
}

.skip-link {
    position: fixed;
    left: 15px;
    top: -100px;
    z-index: 100;
    background: white;
    color: var(--navy);
    padding: 10px
}

.skip-link:focus {
    top: 10px
}

.noscript {
    text-align: center;
    padding: 15px;
    background: #f2f6fc
}

@media(min-width:1600px) {
    .home-hero {
        min-height: 650px;
        padding-top: 180px
    }

    .hero {
        background-position: center 55%
    }
}

@media(max-width:1200px) {
    .container {
        width: calc(100% - 64px)
    }

    .header-inner {
        gap: 18px
    }

    .brand {
        font-size: 17px
    }

    .brand-mark {
        width: 46px
    }

    .site-header nav {
        gap: 16px
    }

    .site-header nav a {
        font-size: 12px
    }

    .header-cta {
        padding: 10px 14px;
        gap: 10px
    }

    .advantage-grid {
        gap: 16px;
        grid-template-columns: 1.2fr repeat(4, 1fr)
    }

    .advantage {
        gap: 10px
    }

    .advantage .icon {
        width: 28px
    }

    .service-card {
        padding: 20px
    }

    .hero-copy {
        max-width: 650px
    }

    .home-hero {
        min-height: 550px
    }

    .footer-top nav {
        gap: 16px
    }
}

@media(max-width:1000px) {
    .header-inner {
        min-height: 82px
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        background: transparent;
        border: 1px solid #ffffff55;
        border-radius: 3px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        color: #fff
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        transition: transform .2s
    }

    .menu-toggle[aria-expanded=true] span:first-child {
        transform: translateY(7px) rotate(45deg)
    }

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

    .menu-toggle[aria-expanded=true] span:last-child {
        transform: translateY(-7px) rotate(-45deg)
    }

    .site-header nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        margin: 0;
        background: #032343;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 32px 22px;
        box-shadow: 0 14px 20px #00172c33
    }

    .site-header nav.is-open {
        display: flex
    }

    .site-header nav a {
        font-size: 16px;
        padding: 12px 0
    }

    .site-header nav a:after {
        right: auto;
        width: 40px;
        bottom: 5px
    }

    .header-cta {
        display: none
    }

    .home-hero {
        padding-top: 132px;
        background-position: 60% center
    }

    .hero-copy {
        max-width: 590px
    }

    .hero h1 {
        font-size: 46px
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-card p {
        max-width: 280px;
        min-height: 45px
    }

    .values-grid strong {
        font-size: 22px
    }

    .values-grid>div {
        gap: 12px
    }

    .values-grid .icon {
        width: 34px
    }

    .split {
        gap: 30px
    }

    .mini-values {
        gap: 16px;
        flex-wrap: wrap
    }

    .about-visual {
        padding: 30px
    }

    .about-visual strong {
        font-size: 30px
    }

    .reach-grid {
        grid-template-columns: 1.2fr 1fr
    }

    .regions {
        display: none
    }

    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .advantage-grid>div:first-child {
        grid-column: 1/-1
    }

    .advantage h3 {
        font-size: 16px
    }

    .advantage p {
        font-size: 14px
    }

    .footer-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px
    }

    .detail-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-grid {
        gap: 30px;
        grid-template-columns: 1fr 1.3fr
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .cta h2 {
        font-size: 26px
    }
}

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }
}

@media(max-width:640px) {
    .container {
        width: calc(100% - 40px)
    }

    .header-inner {
        min-height: 76px
    }

    .site-header nav {
        top: 76px;
        padding: 12px 20px 20px
    }

    .brand {
        font-size: 17px;
        gap: 9px
    }

    .brand small {
        font-size: 10px
    }

    .brand-mark {
        width: 44px
    }

    .home-hero {
        min-height: 680px;
        padding: 117px 0 30px;
        background-image: linear-gradient(180deg, #022144 0%, #022144ef 38%, #02214422 72%, #022144d9 100%), url('hero.png');
        background-position: 67% bottom;
        background-size: cover
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 45px);
        letter-spacing: -1.3px;
        line-height: 1.09;
        margin-bottom: 20px
    }

    .lead {
        font-size: 16px;
        max-width: 440px
    }

    .hero .eyebrow {
        font-size: 10px;
        letter-spacing: 1.7px
    }

    .actions {
        gap: 10px
    }

    .btn {
        padding: 12px 18px;
        gap: 14px
    }

    .hero-values {
        margin-top: 185px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .hero-values span {
        font-size: 10px
    }

    .section {
        padding: 36px 0
    }

    .section-heading {
        align-items: flex-start;
        gap: 18px;
        flex-direction: column
    }

    .section-heading>.text-link {
        font-size: 13px
    }

    .service-grid {
        gap: 12px
    }

    .service-card {
        padding: 18px 14px;
        min-height: 250px
    }

    .service-card h3 {
        font-size: 17px
    }

    .service-card p {
        font-size: 13px;
        min-height: 80px;
        line-height: 1.5
    }

    .card-art .icon {
        width: 36px;
        height: 36px
    }

    .service-card .text-link {
        font-size: 13px;
        gap: 8px
    }

    .values-strip {
        padding: 24px 0
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 12px
    }

    .values-grid>div,
    .values-grid>div:first-child {
        justify-content: flex-start;
        border: 0;
        gap: 10px
    }

    .values-grid strong {
        font-size: 21px
    }

    .values-grid small {
        font-size: 11px;
        line-height: 1.3;
        display: block;
        margin-top: 5px
    }

    .values-grid .icon {
        width: 30px
    }

    .split {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .about-visual {
        min-height: 230px;
        padding: 28px;
        box-shadow: none
    }

    .mini-values {
        gap: 20px
    }

    .mini-values span {
        font-size: 12px
    }

    .mini-values .icon {
        width: 24px
    }

    .reach {
        padding: 34px 0
    }

    .reach-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .reach h2 {
        font-size: 32px
    }

    .network-orbit {
        flex-direction: row;
        justify-content: center;
        gap: 25px
    }

    .network-orbit>.icon {
        width: 115px;
        height: 115px
    }

    .network-orbit span {
        font-size: 10px;
        letter-spacing: 2px;
        text-align: left
    }

    .advantage-grid {
        gap: 25px 20px
    }

    .advantage {
        flex-direction: column
    }

    .advantage h3 {
        font-size: 14px
    }

    .advantage p {
        font-size: 13px
    }

    .advantages {
        padding: 30px 0
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px
    }

    .cta h2 {
        font-size: 28px
    }

    .cta p {
        font-size: 15px
    }

    .desktop {
        display: none
    }

    .footer-top nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 24px;
        font-size: 13px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 18px
    }

    .footer-bottom>div {
        gap: 20px
    }

    .sub-hero {
        padding: 22px 0 40px;
        background-image: linear-gradient(90deg, #021f43ee, #021f4388), url('hero.png');
        background-position: 65% center
    }

    .sub-hero h1 {
        font-size: 37px
    }

    .breadcrumbs {
        margin-bottom: 30px;
        font-size: 12px
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .detail-card {
        padding: 24px
    }

    .process {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .process h3 {
        font-size: 17px
    }

    .process p {
        font-size: 14px
    }

    .tags {
        gap: 10px
    }

    .tags span {
        padding: 10px 14px;
        font-size: 14px
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    form {
        padding: 22px 18px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .legal h1 {
        font-size: 36px
    }

    .legal h2 {
        font-size: 22px
    }
}

@media(max-width:360px) {
    .container {
        width: calc(100% - 28px)
    }

    .brand {
        font-size: 15px
    }

    .service-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        min-height: 0;
        padding: 22px
    }

    .service-card p {
        min-height: 0
    }

    .hero h1 {
        font-size: 31px
    }

    .actions .btn {
        font-size: 12px;
        padding: 12px
    }

    .process {
        grid-template-columns: 1fr
    }

    .mini-values {
        gap: 12px
    }

    .values-grid strong {
        font-size: 18px
    }
}

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

    *,
    *:before,
    *:after {
        transition: none !important;
        animation: none !important
    }
}