:root {
    --navy: #0d4178;
    --blue: #168dca;
    --blue-light: #e6f4fb;
    --ink: #10263d;
    --muted: #60758a;
    --paper: #f4f8fb;
    --white: #fff;
    --line: #dbe7ef;
    --shadow: 0 24px 70px rgba(13, 65, 120, .12);
    --radius-lg: 32px;
    --radius-md: 20px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.sr-only,
.svg-sprite {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.header,
.section,
.footer {
    width: min(1280px, calc(100% - 40px));
    margin-inline: auto;
}

.header {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 44px;
    position: relative;
    z-index: 10;
    transition: min-height .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease, transform .3s ease, width .3s ease, padding .3s ease;
}

.header.is-sticky {
    width: min(1280px, calc(100% - 24px));
    min-height: 72px;
    padding: 0 18px;
    position: fixed;
    top: 10px;
    left: 50%;
    z-index: 100;
    transform: translateX(-50%);
    background: rgba(248, 252, 255, .9);
    border: 1px solid rgba(180, 207, 224, .65);
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(13, 65, 120, .13);
    backdrop-filter: blur(18px);
    animation: header-show .35s ease both;
}

.header.is-sticky .logo__image {
    width: 46px;
    height: 46px;
}

.header.is-sticky .logo__name {
    font-size: 34px;
}

.header.is-sticky .logo__divider {
    height: 34px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo__image {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: contain;
}

.logo__name {
    color: var(--navy);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.075em;
}

.logo__divider {
    width: 1px;
    height: 42px;
    background: #8ea7ba;
}

.logo__description {
    color: var(--navy);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.35;
}

.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.nav a,
.footer a {
    transition: color .2s ease;
}

.nav a:hover,
.footer a:hover {
    color: var(--blue);
}

.header__button {
    margin-left: auto;
    padding: 12px 19px;
    color: var(--navy);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
}

.menu-button {
    width: 44px;
    height: 44px;
    padding: 11px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
}

.menu-button span {
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

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

.menu-button.is-active span:nth-child(2) {
    opacity: 0;
}

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

@keyframes header-show {
    from { opacity: 0; transform: translate(-50%, -18px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.hero {
    width: min(1280px, calc(100% - 40px));
    min-height: 610px;
    margin: 0 auto;
    padding: 68px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #0b3b70 0%, #096da8 65%, #1a98ce 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
}

.hero::before {
    width: 500px;
    height: 500px;
    right: -100px;
    top: -180px;
}

.hero::after {
    width: 300px;
    height: 300px;
    right: 190px;
    bottom: -210px;
}

.hero__content,
.hero__visual {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow .icon {
    width: 17px;
    height: 17px;
}

.eyebrow--light {
    color: #90dcff;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 730px;
    margin-bottom: 24px;
    font-size: clamp(48px, 6vw, 84px);
    line-height: .99;
    letter-spacing: -.065em;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.hero__description {
    max-width: 580px;
    margin-bottom: 34px;
    color: #cbe8f7;
    font-size: 16px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    width: fit-content;
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border: 0;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 800;
}

.button--light {
    color: var(--navy);
    background: var(--white);
}

.button--ghost {
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
}

.button--primary {
    color: var(--white);
    background: var(--navy);
}

.hero__visual {
    min-height: 470px;
    display: grid;
    place-items: center;
}

.hero__logo-ring {
    width: min(315px, 72%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}

.hero__logo-ring img {
    width: 87%;
}

.hero__stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stat-card {
    width: 128px;
    height: 128px;
    flex: 0 0 128px;
    padding: 15px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .27);
    border-radius: 50%;
    box-shadow: 0 18px 38px rgba(0, 42, 84, .14);
    backdrop-filter: blur(14px);
}

.stat-card .icon {
    width: 22px;
    height: 22px;
    margin-bottom: 8px;
    color: #aee5ff;
}

.stat-card strong {
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1;
    letter-spacing: -.06em;
    white-space: nowrap;
}

.stat-card span {
    max-width: 108px;
    margin-top: 7px;
    color: #e2f4fb;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.stat-card--two {
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
}

.stat-card--three {
    left: 42px;
    top: -8px;
    transform: scale(.82);
}

.stat-card--four {
    right: 40px;
    bottom: -10px;
    transform: scale(.82);
}

.stat-card--five {
    right: 36px;
    top: -8px;
    transform: scale(.82);
}

.stat-card--six {
    left: 38px;
    bottom: -10px;
    transform: scale(.82);
}

.stat-card--seven {
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
}

.section {
    padding: 68px 0;
}

.about {
    padding-bottom: 42px;
}

.catalog {
    padding-top: 42px;
    padding-bottom: 52px;
}

.contact {
    margin-top: 34px;
}

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

.section-heading>p {
    max-width: 440px;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.controls {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.search {
    min-width: 320px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 100px;
}

.search input {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 14px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter {
    padding: 12px 16px;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

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

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

.employee-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform .25s, box-shadow .25s;
}

.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.employee-card__media {
    min-height: 250px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 8px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--navy), var(--blue));
    position: relative;
}

.employee-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(transparent, rgba(4, 28, 53, .48));
    pointer-events: none;
}

.employee-card__photo {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center 24%;
    transition: transform .35s ease;
}

.employee-card:hover .employee-card__photo {
    transform: scale(1.035);
}

.employee-card__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.employee-card__placeholder::before {
    content: "";
    width: 190px;
    height: 190px;
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 40px rgba(255, 255, 255, .035);
}

.employee-card__placeholder span {
    color: var(--white);
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -.08em;
    position: relative;
    z-index: 1;
}

.employee-card__placeholder img {
    width: 70px;
    position: absolute;
    right: 15px;
    bottom: 12px;
    border-radius: 18px;
    opacity: .16;
}

.employee-card__number,
.employee-card__tag {
    padding: 8px 11px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    color: var(--white);
    background: rgba(8, 48, 83, .52);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 800;
}

.employee-card__info {
    padding: 22px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.employee-card h3 {
    max-width: 300px;
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -.04em;
}

.employee-card__role {
    min-height: 42px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.employee-card__details {
    margin: 0 0 20px;
    display: grid;
    gap: 9px;
}

.employee-card__details div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
}

.employee-card__details dt {
    color: #788d9e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.employee-card__details dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

.text-link {
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.text-link .icon {
    width: 17px;
    height: 17px;
}

.empty-state {
    padding: 60px 20px;
    text-align: center;
    color: var(--muted);
}

.load-more-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.load-more-button {
    min-height: 50px;
    padding: 0 24px;
    color: var(--white);
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 100px;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    transition: background .25s, color .25s, border-color .25s;
}

.load-more-button:hover {
    color: var(--navy);
    background: var(--white);
}

.about {
    display: grid;
    gap: 14px;
    position: relative;
}

.about__header {
    padding: 42px 46px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(145deg, var(--white), #eaf6fc);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(13, 65, 120, .08);
}

.about__header h2 {
    max-width: 680px;
}

.about__header>p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.about__overview {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    gap: 12px;
}

.about__summary {
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.about__summary .icon-box {
    flex: 0 0 auto;
}

.about__summary small,
.about__plain span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about__summary h3 {
    margin: 8px 0;
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -.035em;
}

.about__summary p,
.about__plain p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.about__plain {
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--white);
    background: linear-gradient(145deg, var(--navy), var(--blue));
    border-radius: 22px;
}

.about__plain span {
    color: #a9e3ff;
}

.about__plain p {
    margin-top: 10px;
    color: #e1f1f8;
}

.directions {
    padding: 34px;
    background: #eaf5fb;
    border-radius: 26px;
}

.subheading {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}

.subheading h3 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -.045em;
}

.directions__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}

.direction-card {
    grid-column: span 3;
    min-height: 205px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: transform .2s, box-shadow .2s;
}

.direction-card:nth-child(5) {
    grid-column: 2 / span 3;
}

.direction-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13, 65, 120, .1);
}

.direction-card>span {
    align-self: end;
    color: #9eb4c3;
    font-size: 11px;
    font-weight: 800;
}

.direction-card .icon {
    width: 25px;
    height: 25px;
    margin: 10px 0 auto;
    color: var(--blue);
}

.direction-card h4 {
    margin: 20px 0 8px;
    font-size: 16px;
    line-height: 1.25;
}

.direction-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.fraud-help {
    padding: 38px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 45px;
    color: var(--white);
    background: linear-gradient(135deg, #092f5a, #087caf);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.fraud-help__intro .icon-box {
    margin-bottom: 22px;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
}

.fraud-help__intro h3 {
    max-width: 480px;
    margin: 0 0 15px;
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -.045em;
}

.fraud-help__intro>p:last-child {
    margin: 0;
    color: #d2eaf5;
    font-size: 13px;
    line-height: 1.75;
}

.fraud-steps {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    counter-reset: steps;
}

.fraud-steps li {
    min-height: 190px;
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07));
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
    box-shadow: inset 0 1px rgba(255, 255, 255, .08);
    counter-increment: steps;
    position: relative;
    transition: transform .2s, background .2s;
}

.fraud-steps li:hover {
    transform: translateY(-3px);
    background: linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .1));
}

.fraud-steps li::before {
    content: "0"counter(steps);
    grid-column: 2;
    justify-self: end;
    color: #a8e1fb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.fraud-steps li::after {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
    right: -65px;
    bottom: -70px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.fraud-steps__icon {
    width: 42px;
    height: 42px;
    margin: 0 !important;
    grid-column: 1;
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    color: #b9e8fc !important;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 13px;
}

.fraud-steps__icon .icon {
    width: 20px;
    height: 20px;
}

.fraud-steps strong {
    grid-column: 1 / -1;
    align-self: end;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.25;
}

.fraud-steps li>span:last-child {
    grid-column: 1 / -1;
    margin-top: 8px;
    color: #d6ebf4;
    font-size: 12px;
    line-height: 1.6;
}

.international {
    padding: 12px;
    display: grid;
    grid-template-columns: .62fr 1.38fr;
    gap: 12px;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
}

.international__intro {
    min-height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    background: linear-gradient(145deg, var(--navy), var(--blue));
    border-radius: 21px;
    position: relative;
    overflow: hidden;
}

.international__intro::after {
    content: "";
    width: 230px;
    height: 230px;
    position: absolute;
    right: -120px;
    bottom: -130px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(255,255,255,.035);
}

.international__intro .icon-box {
    margin-bottom: 45px;
    color: var(--white);
    background: rgba(255,255,255,.12);
}

.international h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -.045em;
}

.international__intro p:not(.eyebrow) {
    margin: 0;
    color: #d5eaf4;
    font-size: 13px;
    line-height: 1.75;
}

.international__intro>strong {
    width: fit-content;
    margin-top: auto;
    padding: 8px 12px;
    color: var(--white) !important;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 100px;
    font-size: 11px;
}

.international ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    list-style: none;
}

.international li {
    min-height: 160px;
    padding: 18px;
    display: grid;
    align-content: start;
    gap: 7px;
    background: #f2f7fa;
    border: 1px solid transparent;
    border-radius: 16px;
    transition: transform .2s, border-color .2s, background .2s;
}

.international li:hover {
    transform: translateY(-3px);
    background: var(--white);
    border-color: #bdddec;
}

.international li small {
    color: #8ba7b9;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.international strong {
    color: var(--navy);
    font-size: 14px;
}

.international span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.international span b {
    color: var(--blue);
    font-weight: 800;
}

.international .international__note-card {
    color: var(--white);
    background: linear-gradient(145deg, var(--navy), var(--blue));
    border-color: transparent;
    transition: none;
}

.international .international__note-card:hover {
    transform: none;
    background: linear-gradient(145deg, var(--navy), var(--blue));
    border-color: transparent;
}

.international__note-card .icon {
    width: 24px;
    height: 24px;
    color: #bce8fb;
}

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

.international__note-card span {
    color: #d8edf6;
}

.text-link {
    width: fit-content;
    gap: 45px;
}

.icon-box {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: var(--blue-light);
    border-radius: 15px;
}

.icon-box--phone {
    color: var(--white);
    background: rgba(104, 191, 235, .28);
    border: 1px solid rgba(183, 229, 250, .24);
    border-radius: 16px;
}

.icon-box--phone .icon {
    width: 25px;
    height: 25px;
    stroke-width: 1.9;
}

.contact {
    margin-bottom: 32px;
    padding: 38px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 38px;
    align-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius-lg);
}

.contact h2 {
    max-width: 500px;
}

.contact__info>p:not(.eyebrow) {
    max-width: 420px;
    margin: 18px 0 26px;
    color: #bcd4e8;
    font-size: 13px;
    line-height: 1.8;
}

.contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.contact-list a {
    min-width: 190px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
}

.contact-list .icon-box {
    width: 40px;
    height: 40px;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.contact-list .icon-box--phone {
    background: rgba(104, 191, 235, .28);
    border-color: rgba(183, 229, 250, .24);
}

.contact-list span:last-child {
    display: grid;
    gap: 3px;
}

.contact-list small {
    color: #a9c0d2;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.contact-form {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    color: var(--ink);
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 24, 55, .2);
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.contact-form__wide,
.contact-form .button,
.contact-form .form-status {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: 0;
    resize: vertical;
    font-size: 14px;
    text-transform: none;
}

.contact-form input {
    height: 48px;
}

.contact-form textarea {
    min-height: 95px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(22, 141, 202, .1);
}

.contact-form .button {
    width: 100%;
}

.form-status {
    min-height: 16px;
    margin: 0;
    color: var(--blue);
    text-align: center;
    font-size: 11px;
    font-weight: 700;
}

.footer {
    min-height: 230px;
    margin-bottom: 26px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.15fr .85fr auto;
    align-items: center;
    gap: 48px;
    background: linear-gradient(135deg, #f8fbfd, #edf5fa);
    border: 1px solid var(--line);
    border-radius: 28px;
    color: var(--muted);
    box-shadow: 0 18px 50px rgba(13, 65, 120, .07);
    position: relative;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer__brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
}

.footer__brand>strong {
    color: var(--navy);
    font-size: 40px;
    line-height: 1;
    letter-spacing: -.06em;
}

.footer__divider {
    width: 1px;
    height: 42px;
    background: #8ea7ba;
}

.footer__brand p {
    margin: 0;
    color: var(--navy);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.footer__message strong {
    display: block;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.35;
}

.footer__message {
    width: min(480px, 38%);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-self: center;
    text-align: center;
}

.footer__message p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.footer__top {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 48px;
    top: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: color .8s ease, background .8s ease, border-color .8s ease, box-shadow .8s ease;
}

.footer__top:hover {
    color: var(--navy) !important;
    background: var(--white);
    border-color: var(--navy);
    box-shadow: 0 10px 28px rgba(13, 65, 120, .16);
}

.footer__top .icon {
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
}

.footer__top span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

@media (max-width: 1000px) {
    .nav {
        gap: 18px;
    }

    .hero {
        min-height: 560px;
        padding: 48px;
    }

    .hero__visual {
        min-height: 360px;
    }

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

    .about__header {
        gap: 30px;
    }

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

    .direction-card,
    .direction-card:nth-child(5) {
        grid-column: auto;
    }

    .fraud-help {
        gap: 25px;
    }

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

    .international__intro {
        min-height: 280px;
    }

    .contact {
        padding: 45px;
        gap: 45px;
    }

    .footer {
        padding: 34px;
        grid-template-columns: 1fr auto;
        gap: 28px;
    }

    .footer__message {
        width: auto;
        position: static;
        transform: none;
        grid-column: 1;
    }

    .footer__top {
        position: static;
        transform: none;
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 75px;
    }

    .header,
    .hero,
    .section,
    .footer {
        width: min(100% - 24px, 1280px);
    }

    .header {
        min-height: 74px;
    }

    .header.is-sticky {
        min-height: 64px;
        padding: 0 10px;
        top: 7px;
        border-radius: 16px;
    }

    .header.is-sticky .logo__image {
        width: 42px;
        height: 42px;
    }

    .header.is-sticky .logo__name {
        font-size: 31px;
    }

    .logo__image {
        width: 48px;
        height: 48px;
    }

    .logo__name {
        font-size: 36px;
    }

    .logo__divider {
        height: 36px;
    }

    .logo__description {
        font-size: 8px;
    }

    .header__button {
        display: none;
    }

    .menu-button {
        margin-left: auto;
        display: flex;
    }

    .nav {
        position: absolute;
        width: 100%;
        padding: 14px;
        top: 68px;
        left: 0;
        transform: translateY(-8px);
        display: grid;
        gap: 4px;
        visibility: hidden;
        opacity: 0;
        color: var(--ink);
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
        transition: .2s;
    }

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

    .nav a {
        padding: 13px;
        border-radius: 10px;
    }

    .nav a:hover {
        background: var(--blue-light);
    }

    .hero {
        min-height: auto;
        padding: 42px 26px;
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: auto;
        padding-top: 28px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero__logo-ring {
        width: 230px;
    }

    .hero__stats {
        width: 100%;
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .stat-card,
    .stat-card--one,
    .stat-card--two,
    .stat-card--three,
    .stat-card--four,
    .stat-card--five,
    .stat-card--six,
    .stat-card--seven {
        width: 112px;
        height: 112px;
        min-height: 112px;
        flex-basis: 112px;
        padding: 11px;
        position: static;
        transform: none;
    }

    .stat-card strong {
        font-size: 18px;
    }

    .stat-card .icon {
        width: 18px;
        height: 18px;
    }

    .stat-card span {
        max-width: 92px;
        font-size: 10px;
    }

    .section {
        padding: 50px 0;
    }

    .about {
        padding-bottom: 30px;
    }

    .catalog {
        padding-top: 30px;
        padding-bottom: 38px;
    }

    .contact {
        margin-top: 25px;
    }

    .section-heading,
    .controls {
        align-items: stretch;
        flex-direction: column;
    }

    .search {
        min-width: 0;
    }

    .filters {
        display: grid;
        grid-template-columns: 1fr;
        overflow: visible;
        padding-bottom: 0;
    }

    .filter {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .about__header,
    .about__overview,
    .fraud-help,
    .international {
        grid-template-columns: 1fr;
    }

    .about__header {
        padding: 30px 24px;
        gap: 18px;
    }

    .about__summary {
        align-items: start;
    }

    .directions {
        padding: 25px;
    }

    .fraud-help {
        padding: 28px 24px;
    }

    .international {
        gap: 22px;
    }

    .international ul {
        grid-template-columns: 1fr 1fr;
    }

    .international li {
        width: 100%;
        min-height: 175px;
    }

    .contact {
        margin-bottom: 25px;
        padding: 32px 24px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form__wide,
    .contact-form .button,
    .contact-form .form-status {
        grid-column: auto;
    }

    .footer {
        min-height: 0;
        padding: 28px 24px;
        grid-template-columns: 1fr auto;
        gap: 24px 15px;
    }

    .footer__brand {
        gap: 12px;
    }

    .footer__brand img {
        width: 44px;
        height: 44px;
    }

    .footer__brand>strong {
        font-size: 36px;
    }

    .footer__message strong {
        font-size: 17px;
    }

    .footer__top {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 520px) {
    .logo__divider,
    .logo__description {
        display: none;
    }

    h1 {
        font-size: clamp(42px, 14vw, 56px);
    }

    h2 {
        font-size: 37px;
    }

    .hero {
        padding: 35px 20px 25px;
        border-radius: 22px;
    }

    .hero__actions,
    .hero__actions .button {
        width: 100%;
    }

    .hero__actions .button {
        flex: 1 1 100%;
    }

    .hero__visual {
        padding-top: 22px;
        gap: 18px;
    }

    .hero__logo-ring {
        width: 205px;
    }

    .hero__stats {
        width: 100%;
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .stat-card,
    .stat-card--one,
    .stat-card--two,
    .stat-card--three,
    .stat-card--four,
    .stat-card--five,
    .stat-card--six,
    .stat-card--seven {
        width: 96px;
        height: 96px;
        min-height: 96px;
        flex-basis: 96px;
        position: static;
        transform: none;
    }

    .stat-card strong {
        font-size: 16px;
    }

    .stat-card .icon {
        width: 17px;
        height: 17px;
        margin-bottom: 5px;
    }

    .stat-card span {
        font-size: 9px;
    }

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

    .employee-card__media {
        min-height: 285px;
    }

    .directions {
        padding: 20px 14px;
    }

    .directions__grid,
    .fraud-steps,
    .international ul {
        grid-template-columns: 1fr;
    }

    .international li {
        min-height: 0;
    }

    .direction-card,
    .direction-card:nth-child(5) {
        grid-column: auto;
    }

    .direction-card {
        min-height: 185px;
    }

    .about__summary {
        padding: 22px 18px;
        display: grid;
    }

    .fraud-help {
        padding: 25px 18px;
    }

    .contact {
        padding: 28px 16px;
    }

    .contact-form {
        padding: 20px 14px;
    }

    .footer__divider,
    .footer__brand p {
        display: none;
    }

    .footer__message p {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header,
    .header.is-sticky {
        animation: none;
        transition: none;
    }
}
