/* Footer Styles - Extracted from landing.css */

:root {
    --text-tertiary: rgba(255, 255, 255, 0.35);
    --accent-rgb: 10, 132, 255;
}

.site-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 50px 20px 30px;
    margin-top: auto;
    font-family: 'Inter', -apple-system, sans-serif;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* Footer Trust Indicators */
.footer-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

/* Footer About */
.footer-about {
    max-width: 300px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.footer-brand span {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.footer-description {
    color: var(--text-tertiary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.social-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.1);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer-legal p {
    color: var(--text-tertiary);
    font-size: 12px;
    margin-bottom: 6px;
}

.footer-disclaimer {
    max-width: 500px;
    line-height: 1.5;
}

.footer-disclaimer a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.footer-disclaimer a:hover {
    color: var(--accent);
}

/* Footer Badges */
.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-badge {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Responsive Styles for Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on small screens */
        gap: 30px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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