/* ─── Privacy Policy Layout ─── */
.privacy-policy-container {
    min-height: 100vh;
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 1;
}

.privacy-policy-parent {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── Header ─── */
.privacy-policy-header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.privacy-policy-header h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-policy-subheader {
    text-align: center;
    margin-bottom: 3.5rem;
}

.privacy-policy-subheader h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ─── Sections ─── */
.privacy-policy-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.privacy-policy-section {
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.privacy-policy-section:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

/* ─── Section Header ─── */
.privacy-policy-section-header {
    padding: 1.75rem 2.25rem 0;
    position: relative;
}

.privacy-policy-section-header::after {
    content: '';
    display: block;
    margin-top: 1.25rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.privacy-policy-section-header h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--accent-light);
}

/* ─── Section Body ─── */
.privacy-policy-section-outline {
    padding: 1.75rem 2.25rem 2.25rem;
}

.privacy-policy-section-outline p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.privacy-policy-section-outline p:last-child {
    margin-bottom: 0;
}

/* ─── Headings inside sections ─── */
.privacy-policy-section-outline h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.privacy-policy-section-outline h4:first-child {
    margin-top: 0;
}

.privacy-policy-section-outline h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

/* ─── Lists ─── */
.privacy-policy-section-outline ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.privacy-policy-section-outline ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 1.25rem;
    position: relative;
}

.privacy-policy-section-outline ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ─── Links ─── */
.privacy-policy-section-outline a {
    color: var(--accent-light);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.privacy-policy-section-outline a:hover {
    color: var(--accent);
}

/* ─── Strong ─── */
.privacy-policy-section-outline strong {
    color: var(--text);
    font-weight: 600;
}

/* ─── Tablet (≤ 768px) ─── */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 3rem 0 4rem;
    }

    .privacy-policy-parent {
        padding: 0 1.5rem;
    }

    .privacy-policy-header h1 {
        font-size: 2.5rem;
    }

    .privacy-policy-subheader {
        margin-bottom: 2.5rem;
    }

    .privacy-policy-section-header {
        padding: 1.5rem 1.75rem 0;
    }

    .privacy-policy-section-outline {
        padding: 1.5rem 1.75rem 1.75rem;
    }
}

/* ─── Mobile (≤ 480px) ─── */
@media (max-width: 480px) {
    .privacy-policy-container {
        padding: 2rem 0 3rem;
    }

    .privacy-policy-parent {
        padding: 0 1.25rem;
    }

    .privacy-policy-header h1 {
        font-size: 1.85rem;
    }

    .privacy-policy-subheader {
        margin-bottom: 1.75rem;
    }

    .privacy-policy-subheader h4 {
        font-size: 0.82rem;
    }

    .privacy-policy-sections {
        gap: 1.25rem;
    }

    .privacy-policy-section-header {
        padding: 1.25rem 1.25rem 0;
    }

    .privacy-policy-section-header h3 {
        font-size: 1.15rem;
    }

    .privacy-policy-section-outline {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .privacy-policy-section-outline p,
    .privacy-policy-section-outline ul li {
        font-size: 0.9rem;
    }

    .privacy-policy-section-outline h4 {
        font-size: 0.95rem;
        margin-top: 1.25rem;
    }

    .privacy-policy-section-outline h5 {
        font-size: 0.88rem;
    }
}