/* ══════════════════════════════════════════════════════════════
   FOOTER - Simple & Clean
   ══════════════════════════════════════════════════════════════ */

.footer {
    position: relative;
    padding: 40px 48px;
    background: var(--bg);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.footer-logo {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-mark {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-mark svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.4));
}

/* Copyright */
.footer-copyright {
    font-size: 14px;
    color: var(--gray-400);
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .footer {
        padding: 32px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
