/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 140px 0 80px;
    min-height: 80vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--text-2, var(--text2, #8e8ea0));
    font-size: 0.88rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border, rgba(255,255,255,0.06));
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text, #f5f5f7);
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--text, #f5f5f7);
}

.legal-section p {
    color: var(--text-2, var(--text2, #8e8ea0));
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section a {
    color: var(--accent, var(--accent-light, #e8673f));
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.15);
    text-underline-offset: 3px;
}

.legal-section a:hover {
    text-decoration-color: currentColor;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
}

.legal-section ul li {
    color: var(--text-2, var(--text2, #8e8ea0));
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 4px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent, var(--accent-light, #e8673f));
    opacity: 0.6;
}

.legal-section strong {
    color: var(--text, #f5f5f7);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }

    .legal-section {
        margin-bottom: 36px;
        padding-bottom: 36px;
    }
}
