.site-footer {
    padding: 65px max(5%, calc((100% - 1280px) / 2)) 25px;
    background: linear-gradient(145deg, #06172d, #0a2849);
    color: #9eb1c5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
}

.footer-brand img {
    display: block;
    width: 190px;
    height: auto;
}

.footer-brand p {
    max-width: 300px;
    font-size: 12px;
}

.footer-brand strong {
    display: block;
    margin-top: 12px;
    color: #fff;
}

.footer-email {
    color: #72e7ee;
}

.footer-links h2 {
    margin: 0 0 12px;
    color: #fff;
    font: 800 12px/1.4 Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    margin: 9px 0;
    color: inherit;
    font-size: 12px;
    text-decoration: none;
}

.footer-links a:hover,
.footer-email:hover {
    color: #fff;
}

.regional-contacts {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin: 40px 0 26px;
    padding: 22px 0;
    border-top: 1px solid #223a54;
    border-bottom: 1px solid #223a54;
}

.regional-contacts > div {
    position: relative;
    flex: 1 1 20%;
    min-width: 0;
    padding: 0 18px;
    border-right: 1px solid #223a54;
}

.regional-contacts > div:first-child { padding-left: 0; }
.regional-contacts > div:last-child { padding-right: 0; border-right: 0; }

.regional-contacts b {
    display: block;
    color: #fff;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.regional-contacts a {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    color: #72e7ee;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .02em;
    text-decoration: none;
}

.regional-contacts a:hover {
    color: #fff;
}

.regional-contacts a span { color: #fff; }
.regional-contacts svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.regional-contact-pending {
    display: block;
    margin-top: 3px;
    color: #7f95aa;
    font-size: 11px;
}
.regional-contact-pending > span {
    margin-right: 6px;
    color: #fff;
}

.regional-websites { display:flex; align-items:center; justify-content:flex-end; flex-wrap:wrap; gap:18px; margin:-10px 0 22px; font-size:11px; }
.regional-websites > span { color:#7f95aa; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.regional-websites a { color:#72e7ee; font-weight:800; }
.regional-websites a:hover { color:#fff; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

.legal-links,
.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-links a {
    color: inherit;
    text-decoration: none;
}

.legal-links a:hover {
    color: #fff;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border: 1px solid #35516d;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease;
}

.social-links a:hover {
    border-color: var(--cyan);
    background: var(--blue);
}

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .regional-contacts {
        flex-wrap: wrap;
        gap: 20px;
    }

    .regional-contacts > div {
        flex: 1 1 210px;
        padding: 0 0 0 16px;
        border-right: 0;
        border-left: 1px solid #223a54;
    }

    .footer-bottom {
        flex-wrap: wrap;
    }

    .regional-websites { justify-content:flex-start; }
}

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .regional-contacts {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
    }
}
