.site-footer {
    position: relative;
    overflow: hidden;
    padding: 100px 0 35px;
    border-top: 1px solid var(--border);
    background: var(--background-secondary);
}

.footer-glow {
    position: absolute;
    top: -260px;
    left: 50%;
    width: 650px;
    height: 450px;
    border-radius: 50%;
    background: rgba(79, 140, 255, 0.06);
    filter: blur(120px);
    transform: translateX(-50%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(280px, 1.1fr)
        minmax(500px, 1.4fr);
    gap: 90px;
}

.footer-brand-column {
    max-width: 430px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-brand:hover {
    color: var(--text-primary);
}

.footer-description {
    margin: 0 0 25px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 650;
}

.footer-contact-link:hover {
    color: white;
}

.footer-contact-link i {
    transition: transform 0.2s ease;
}

.footer-contact-link:hover i {
    transform: translate(3px, -3px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 45px;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-group-title {
    margin-bottom: 7px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
}

.footer-link-group a,
.footer-location {
    color: var(--text-soft);
    font-size: 0.75rem;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-link-group a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-divider {
    position: relative;
    z-index: 2;
    height: 1px;
    margin: 65px 0 28px;
    background: var(--border);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.7rem;
}

.footer-bottom-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-soft);
    font-size: 0.7rem;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .footer-links-grid {
        max-width: 700px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 65px 0 28px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 25px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

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