/* ─── Legal & Support Pages ─────────────────────────────────── */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}
.legal-header {
    max-width: 720px;
    margin: 0 auto 48px;
}
.legal-header h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.legal-effective {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

.legal-body {
    max-width: 720px;
    margin: 0 auto;
}
.legal-body section {
    margin-bottom: 40px;
}
.legal-body h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text);
    padding-top: 8px;
    border-top: 1px solid var(--color-border);
}
.legal-body section:first-child h2 {
    border-top: none;
    padding-top: 0;
}
.legal-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--color-text);
}
.legal-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}
.legal-body ul {
    margin: 8px 0 16px 20px;
    list-style: disc;
}
.legal-body li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}
.legal-body a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-body a:hover {
    color: var(--color-accent-hover);
}
.legal-body code {
    font-size: 13px;
    background: rgba(194,149,107,0.08);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--color-text);
}

/* ─── Support Page Specifics ─────────────────────────────── */
.support-contact {
    margin-bottom: 48px;
}
.contact-card {
    background: linear-gradient(135deg, rgba(194,149,107,0.06) 0%, rgba(123,163,143,0.06) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}
.contact-card h2 {
    border-top: none;
    padding-top: 0;
    text-align: center;
}
.contact-card p {
    text-align: center;
}
.contact-note {
    font-size: 13px;
    color: var(--color-text-tertiary);
    margin-top: 12px;
}

.faq-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--color-text);
}
.faq-item p {
    margin-bottom: 0;
}
