/* ================= LEGAL MOBILE ================= */

.legal-section {
    max-width: 100%;
    padding: 50px 20px;
}

.legal-section .page-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 14px;
}

.legal-subtitle {
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 32px;
}

.legal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.05);
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.legal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.12);
}

.legal-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 1.3;
}

.legal-card p {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
}

.legal-card ul {
    margin: 14px 0 0;
    padding-left: 20px;
}

.legal-card li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.legal-updated {
    text-align: center;
    margin-top: 36px;
    font-size: 12px;
    opacity: 0.6;
}