/* ================================
   Legal Pages (Privacy, Terms)
   ================================ */

.legal-page {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--slate);
}

.legal-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--cloud-white);
    margin-bottom: 12px;
}

.legal-effective {
    font-size: 14px;
    color: var(--silver);
    font-weight: 500;
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--cloud-white);
    margin-bottom: 16px;
    padding-top: 8px;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--cloud);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--silver);
    margin-bottom: 16px;
}

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

.legal-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--silver);
}

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

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

.legal-section a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: var(--cyan-accent);
    text-decoration: underline;
}

.legal-contact {
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 8px;
    padding: 24px;
    margin-top: 16px;
}

.legal-contact p {
    margin-bottom: 6px;
    font-size: 15px;
}

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

.legal-contact a {
    color: var(--electric-blue);
    text-decoration: none;
}

.legal-contact a:hover {
    color: var(--cyan-accent);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 60px;
    }

    .legal-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .legal-section {
        margin-bottom: 32px;
    }

    .legal-section h2 {
        font-size: 19px;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 14px;
    }
}
