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

.legal-container {
    max-width: 800px;
}

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

.legal-header h1 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    line-height: 1.15;
}

.legal-updated {
    color: var(--text-3);
    font-size: 0.9rem;
}

.legal-content {
    display: grid;
    gap: 0;
}

.legal-section {
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}

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

.legal-section h2 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-align: left;
}

.legal-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text);
}

.legal-section p {
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

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

.legal-section ul li {
    position: relative;
    padding-left: 24px;
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.65;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--cyan);
    font-weight: 700;
}

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

.legal-section em {
    color: var(--text);
    font-style: italic;
}

.legal-section a {
    color: var(--cyan);
    transition: color 0.3s;
    text-decoration: none;
}

.legal-section a:hover {
    color: var(--purple);
}

.legal-contact {
    margin-top: 16px;
    padding: 24px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
}

.legal-contact p {
    margin-bottom: 8px;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 968px) {
    .legal-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    .legal-header h1 {
        font-size: 1.8rem;
    }
    .legal-section h2 {
        font-size: 1.2rem;
    }
}
