.site-footer {
    position: relative;
    color: rgba(255, 255, 255, .76);
    background:
        radial-gradient(circle at top right, rgba(207, 160, 102, .16), transparent 22%),
        radial-gradient(circle at bottom left, rgba(79, 156, 197, .15), transparent 20%),
        linear-gradient(180deg, #07182b 0%, #0d2941 100%);
    overflow: hidden;
}

.footer-inner {
    padding-block: 4.5rem 3rem;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .footer-inner {
        grid-template-columns: 1.1fr 1.4fr;
        gap: 4rem;
        padding-block: 5.5rem 3.5rem;
    }
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    padding: .55rem .9rem .55rem .68rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow: 0 18px 34px rgba(4, 16, 29, .18);
    margin-bottom: 1.15rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    max-width: 36rem;
    font-size: .98rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: .85rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .74);
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .18);
    color: var(--color-white);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
}

@media (min-width: 900px) {
    .footer-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer-col h4 {
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 1.1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-col li a,
.footer-contact-list a {
    font-size: .96rem;
    color: rgba(255, 255, 255, .72);
    transition: color var(--transition);
}

.footer-col li a:hover,
.footer-contact-list a:hover {
    color: #fff;
}

.footer-contact-list span {
    color: rgba(255, 255, 255, .56);
    font-size: .92rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .08);
}

.footer-bottom-inner {
    padding-block: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .42);
}

.footer-gdpr {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1.1rem;
    justify-content: center;
}

.footer-gdpr a {
    font-size: .82rem;
    color: rgba(255, 255, 255, .52);
}

.footer-gdpr a:hover {
    color: #fff;
}

.footer-made-by {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .52rem .95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: #10263b;
    white-space: nowrap;
}

.footer-made-by span {
    color: #5d7184;
    font-size: .78rem;
}

.footer-made-by-logo {
    height: 22px;
    width: auto;
}

.footer-made-by--brand {
    display: none;
}

.footer-made-by--bottom {
    display: inline-flex;
}

@media (min-width: 900px) {
    .footer-made-by--brand {
        display: inline-flex;
    }

    .footer-made-by--bottom {
        display: none;
    }
}

@media (max-width: 560px) {
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-inner {
        padding-block: 3.75rem 2.5rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1.65rem;
    }

    .footer-col h4 {
        margin-bottom: .9rem;
    }

    .footer-col ul {
        gap: .68rem;
    }

    .footer-bottom-inner {
        padding-block: 1.2rem calc(1.25rem + var(--sticky-bar-height) + env(safe-area-inset-bottom));
    }
}
