/* Footer */
.footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(30, 30, 30, 0.95) 0%,
            rgba(25, 25, 25, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-6) var(--space-8);
    margin-top: var(--space-12);
    overflow: hidden;
}



.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

.footer__section {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__title {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.footer__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer__link:hover {
    color: var(--accent-primary);
}

.footer__link svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-sm);
}