/* =========================================================== */
/* LEGAL PAGES (Privacy Policy & Terms of Service)             */
/* =========================================================== */
.legal-hero {
    padding: clamp(6rem, 10vw, 10rem) 0 clamp(2rem, 4vw, 4rem) 0;
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
}

.legal-hero .hero-headline {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.legal-hero .hero-subheading {
    font-size: 1.05rem;
    color: var(--text-subtle);
    line-height: 1.7;
}

/* =========================================================== */
/* LEGAL CONTENT — Clean flowing text, no cards                */
/* =========================================================== */
.legal-content {
    max-width: 48rem;
    margin: 0 auto clamp(3rem, 5vw, 6rem) auto;
    padding: 0 2rem;
}

.legal-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.legal-section h2 i {
    font-size: 0.9rem;
    opacity: 0.4;
}

.legal-section p,
.legal-section li {
    font-size: 0.95rem;
    color: var(--text-subtle);
    line-height: 1.85;
    margin-bottom: 0.6rem;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.legal-section ul li {
    padding-inline-start: 1.25rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.7rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-subtle);
    opacity: 0.3;
}

.legal-section p:last-child,
.legal-section li:last-child {
    margin-bottom: 0;
}

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

.legal-contact {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-contact p {
    color: var(--text-subtle);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* =========================================================== */
/* RESPONSIVE                                                  */
/* =========================================================== */
@media (max-width: 64rem) {
    .legal-hero {
        padding-inline: 1.5rem;
    }

    .legal-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 48rem) {
    .legal-section h2 {
        font-size: 1.05rem;
    }
}