.site-footer {
    position: relative;
    overflow: hidden;
    padding: 44px 0 20px;
    color: rgb(255 255 255 / 76%);
    border-top: 1px solid rgb(157 214 231 / 20%);
    background:
        radial-gradient(circle at 12% 0%, rgb(20 111 144 / 22%), transparent 32%),
        linear-gradient(145deg, #061827, var(--color-primary-dark) 62%, #09283a);
}

.site-footer::before {
    position: absolute;
    top: 0;
    right: 8%;
    left: 8%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgb(157 214 231 / 52%), transparent);
}

.footer-grid {
    position: relative;
    align-items: flex-start;
}

.footer-logo {
    display: block;
    width: 200px;
    height: 137px;
    margin: -25px 0 -3px -29px;
    object-fit: contain;
    filter: drop-shadow(0 5px 16px rgb(0 0 0 / 20%));
}

.footer-text {
    max-width: 365px;
    margin: 0;
    color: rgb(255 255 255 / 70%);
    font-size: .92rem;
    line-height: 1.65;
}

.footer-title {
    position: relative;
    margin: 4px 0 17px;
    padding-bottom: 9px;
    color: #fff;
    font-size: .83rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.footer-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    border-radius: 999px;
    content: "";
    background: linear-gradient(90deg, #64c6e8, #168ff2);
}

.footer-links {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .91rem;
    transition:
        color 200ms ease,
        transform 200ms ease;
}

.footer-links a::before {
    content: "›";
    color: #73c9e6;
    font-size: 1rem;
    line-height: 1;
}

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

.footer-links a:hover {
    transform: translateX(3px);
}

.footer-contact {
    display: grid;
    gap: 10px;
    margin: 0;
    font-size: .91rem;
    font-style: normal;
}

.footer-contact i {
    display: inline-grid;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border-radius: 7px;
    place-items: center;
    color: #b9e8f5;
    background: rgb(255 255 255 / 8%);
    font-size: .72rem;
}

.footer-contact__address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact__address > span {
    display: block;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    transition:
        color 200ms ease,
        transform 200ms ease;
}

.footer-contact a:hover {
    transform: translateX(2px);
}

.footer-divider {
    margin: 32px 0 18px;
    border: 0;
    border-top: 1px solid rgb(255 255 255 / 16%);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: rgb(255 255 255 / 58%);
    font-size: .78rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom a {
    transition: color 200ms ease;
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 34px;
    }

    .footer-logo {
        margin-top: -22px;
    }

    .footer-divider {
        margin-top: 28px;
    }
}
