/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    padding: var(--space-96) 0 var(--space-48);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 50%, transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-64);
    margin-bottom: var(--space-64);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
}

.footer-brand-title {
    font-size: var(--font-2xl);
    font-weight: var(--weight-black);
    color: var(--text-primary);
    margin-bottom: var(--space-8);
}

.footer-col p {
    color: var(--text-secondary);
    font-size: var(--font-base);
    line-height: 1.6;
    max-width: 320px;
}

.footer-label {
    font-size: var(--font-xs);
    font-weight: var(--weight-semibold);
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.footer-col a {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
}

.footer-col a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: var(--space-12);
    margin-top: var(--space-8);
}

.footer-social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
    color: var(--text-secondary);
}

.footer-social-link:hover {
    border-color: var(--border-light);
    background: var(--bg);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--space-48);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-size: var(--font-sm);
    color: var(--text-tertiary);
}

/* Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-48);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: var(--space-64) 0 var(--space-32);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-32);
    }
    
    .footer-bottom {
        text-align: center;
    }
}
