.site-footer {
    padding: 2.2rem 0 2.8rem;
}

.site-footer-shell {
    background:
        radial-gradient(circle at top left, rgba(98, 88, 247, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.14), transparent 26%),
        rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(221, 229, 239, 0.95);
    border-radius: 1.75rem;
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
    backdrop-filter: blur(18px);
    padding: 2.2rem;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.site-footer-brand,
.site-footer-nav {
    display: flex;
    flex-direction: column;
}

.site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    width: fit-content;
    color: var(--dark, #101828);
    text-decoration: none;
}

.site-footer-logo-image {
    width: 3rem;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.site-footer-logo-text {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.site-footer-description {
    max-width: 26rem;
    margin-top: 0.95rem;
    color: var(--gray, #667085);
    line-height: 1.75;
}

.site-footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.15rem;
}

.site-footer-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(221, 229, 239, 0.92);
    background: rgba(255, 255, 255, 0.82);
    color: var(--dark, #101828);
    font-size: 0.8rem;
    font-weight: 600;
}

.site-footer-tag .ui-icon {
    color: var(--primary-dark, #473FD1);
}

.site-footer-synx {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    margin-top: 1.2rem;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    background: rgba(16, 24, 40, 0.92);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
}

.site-footer-synx a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.site-footer-title {
    margin-bottom: 0.85rem;
    color: var(--gray, #667085);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--dark, #101828);
    text-decoration: none;
    padding: 0.22rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-link:hover {
    color: var(--primary-dark, #473FD1);
    transform: translateX(2px);
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(221, 229, 239, 0.9);
    color: var(--gray, #667085);
    font-size: 0.85rem;
}

.site-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark, #101828);
    text-decoration: none;
    font-weight: 600;
}

.site-footer-contact:hover {
    color: var(--primary-dark, #473FD1);
}

.site-footer-platform {
    padding-top: 1rem;
}

.site-footer-platform .site-footer-shell {
    background:
        radial-gradient(circle at top left, rgba(98, 88, 247, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.1), transparent 26%),
        rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 0 2rem;
    }

    .site-footer-shell {
        padding: 1.5rem;
        border-radius: 1.4rem;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

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