/* ============================================================
   Baduga Symphony — Legal Pages Styles
   ============================================================ */

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

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

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

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-top: 20px;
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-effective {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Content Sections */
.legal-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-subtle);
}

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

.legal-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 14px;
    opacity: 0.9;
}

.legal-section p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

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

.legal-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.legal-section a {
    color: var(--brand-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

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

/* Contact Box */
.legal-contact {
    margin-top: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.legal-contact p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 120px 20px 60px;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }

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