/* PREMIUM FOOTER */
.site-footer {
    background: #000000;
    color: #fff;
    padding: 80px 40px 40px;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Links Grid */
.footer-links-grid {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-col h3 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #ccc;
    font-family: var(--font-mono);
}

.footer-legal-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.separator {
    color: var(--accent);
}

@media (max-width: 800px) {
    .site-wrapper {
        border-radius: 0;
        margin: 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-grid {
        gap: 40px;
        width: 100%;
        justify-content: space-between;
    }

    .footer-col {
        min-width: 140px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* MOCKERY DISCLAIMER */
.footer-mockery {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #666;
    text-align: center;
    font-family: var(--font-mono);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-mockery:hover {
    opacity: 1;
}

.footer-mockery strong {
    color: #0071e3;
}