/* Footer */
.site-footer {
    background: rgba(10, 8, 6, 0.66);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.7rem 0 2.4rem;
    position: relative;
    z-index: 20;
}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

@media (max-width: 760px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
    }
}