.site-footer {
    padding: 80px 0 28px;
    color: #cbd5e1;
    background: #080f1f;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 1fr));
    gap: 55px;
    padding-bottom: 60px;
}

.footer-brand {
    width: fit-content;
    margin-bottom: 22px;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand-column p {
    max-width: 380px;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: 11px;
    margin-top: 25px;
}

.footer-socials a {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: #dbeafe;
    font-size: 12px;
    font-weight: 900;
    background: #172033;
    border: 1px solid #263349;
    border-radius: 11px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.footer-socials a:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-column h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
}

.footer-column nav {
    display: grid;
    gap: 14px;
}

.footer-column a {
    width: fit-content;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #bfdbfe;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 28px;
    border-top: 1px solid #1e293b;
}

.footer-bottom p {
    color: #64748b;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-legal a {
    color: #64748b;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #bfdbfe;
}
