/* === Legal Pages Styles === */

.legal-section {
    position: relative;
    z-index: 1;
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-card {
    padding: 48px 48px 56px;
}

.legal-card .glass-swirl {
    opacity: 0.5;
}

/* Legal content sits above glass swirl */
.legal-content {
    position: relative;
    z-index: 3;
}

.legal-content h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.legal-effective-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 36px;
    letter-spacing: 0.3px;
}

.legal-content h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

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

.legal-content ul li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 4px 0 4px 20px;
    position: relative;
}

.legal-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.legal-content a {
    color: var(--accent-hover);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: #4D93FF;
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Back link */
.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 32px;
    transition: color 0.2s;
    position: relative;
    z-index: 3;
}

.legal-back-link:hover {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 110px 0 60px;
    }
    .legal-container {
        padding: 0 16px;
    }
    .legal-card {
        padding: 28px 20px 36px;
    }
    .legal-content h1 {
        font-size: 22px;
    }
    .legal-content h2 {
        font-size: 16px;
    }
}
