.site-footer {
    margin-top: auto;
    background: linear-gradient(135deg, #4a1a5c 0%, #2d1b69 55%, #1a0a2e 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__main {
    padding: 48px 0;
}

.site-footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-footer__main .site-footer__inner {
    display: grid;
    gap: 32px;
}

@media (min-width: 992px) {
    .site-footer__main {
        padding: 64px 0;
    }

    .site-footer__inner {
        padding: 0 24px;
    }

    .site-footer__main .site-footer__inner {
        grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(145px, 0.7fr));
        align-items: start;
    }
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 16px;
}

.site-footer__logo img {
    display: block;
    height: auto;
    max-width: 200px;
}

.site-footer__tagline {
    margin: 0 0 20px;
    max-width: 320px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__social-link i {
    color: inherit;
    line-height: 1;
}

.site-footer .site-footer__social-link:hover,
.site-footer .site-footer__social-link:focus-visible {
    background: rgba(118, 39, 200, 0.32);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    opacity: 1;
    transform: translateY(-1px);
}

.site-footer .site-footer__social-link:hover i,
.site-footer .site-footer__social-link:focus-visible i {
    color: #fff;
}

.site-footer__social-link.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.site-footer .site-footer__social-link.is-disabled:hover,
.site-footer .site-footer__social-link.is-disabled:focus-visible {
    opacity: 1;
    cursor: not-allowed;
}

.site-footer__nav {
    justify-self: start;
}

@media (min-width: 992px) {
    .site-footer__nav {
        justify-self: start;
        text-align: left;
    }
}

@media (min-width: 640px) and (max-width: 991px) {
    .site-footer__main .site-footer__inner {
        grid-template-columns: 1.4fr 1fr;
    }
}

.site-footer__nav-title {
    margin: 0 0 16px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.site-footer__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__nav-list li + li {
    margin-top: 10px;
}

.site-footer__nav-list a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.site-footer__nav-list a:hover {
    color: #cb1bdb;
}

.site-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.site-footer__bar-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .site-footer__bar-inner {
        flex-direction: row;
        gap: 16px;
    }
}

.site-footer__copyright {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.site-footer__copyright a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.site-footer__legal a:hover {
    color: #cb1bdb;
}
