/* Landing Page - Footer Styles */

footer {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 56px 0 32px;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.footer-section p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--color-text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
}

.footer-section a:hover {
    color: var(--color-text);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.footer-bottom a {
    color: var(--color-text-secondary);
}
