.main-footer {
    position: relative;
    background: var(--bg-primary);
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2rem 3%;
}

.footer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo svg {
    width: 44px;
    height: 44px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 380px;
    text-align: right;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-btn svg {
    width: 20px;
    height: 20px;
}

.footer-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

@media (max-width: 768px) {
    .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-tagline {
        text-align: left;
        max-width: none;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 1.5rem 5%;
    }

    .footer-logo svg {
        width: 36px;
        height: 36px;
    }

    .footer-logo span {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }
}
