.site-footer {
    width: 100%;
    background: rgba(42, 79, 217, 0.92);
    color: #fff;
    padding: 0;
    margin: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.12);
    font-family: 'Outfit', 'Tondu', sans-serif;
    box-shadow: 0 -4px 32px rgba(26, 18, 64, 0.18);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2.5rem 1.2rem 2.5rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-favicon {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 0.9rem;
    border-radius: 1rem;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    letter-spacing: 0.03em;
}

.footer-links a:hover {
    background: #5f78fc;
    color: #fff;
    box-shadow: 0 2px 12px #5f78fcaa;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-x-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 0.9rem;
    border-radius: 1rem;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    letter-spacing: 0.03em;
}

.footer-x-link:hover {
    background: #5f78fc;
    color: #fff;
    box-shadow: 0 2px 12px #5f78fcaa;
}

.footer-x-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.18s;
}

.footer-x-link:hover svg {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1.2rem;
        gap: 1.2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
        align-items: flex-start;
    }

    .footer-logo-text {
        font-size: 1.2rem;
    }

    .footer-social {
        width: 100%;
        justify-content: flex-start;
    }
}
