/* ─── Legal Pages (Terms & Privacy) ─── */

.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    background: var(--grad-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    padding-top: 8px;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-sec);
    margin-bottom: 12px;
}

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

.legal-section ul li {
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-sec);
    padding-left: 24px;
    margin-bottom: 8px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.legal-section ul li strong {
    color: var(--text);
    font-weight: 600;
}

.legal-link {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-link:hover {
    color: var(--brand);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-section h2 {
        font-size: 19px;
    }
}
