.privacy-page .privacy-hero{
    border-radius: 22px;
    border: 1px solid rgba(100, 116, 139, .2);
    background:
        linear-gradient(180deg, rgba(248, 250, 252, .96), rgba(241, 245, 249, .95));
    box-shadow: 0 16px 34px rgba(30, 41, 59, .09);
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
}
.privacy-page .privacy-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 26px,
            rgba(148, 163, 184, .08) 27px,
            rgba(148, 163, 184, .08) 28px
        );
    pointer-events: none;
}
.privacy-page .privacy-hero-inner{
    position: relative;
    z-index: 1;
}
.privacy-page .hero-badge{
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .34rem .72rem;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 800;
    color: #1e3a8a;
    background: rgba(59, 130, 246, .1);
    border: 1px solid rgba(59, 130, 246, .22);
}
.privacy-page .hero-title{
    font-size: 2.12rem;
    font-weight: 900;
    margin: .8rem 0 .35rem;
}
.privacy-page .hero-subtitle{
    margin: 0;
    max-width: 80ch;
    color: #475569;
}
.privacy-page .pill{
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .58rem;
    border-radius: 10px;
    border: 1px solid rgba(51, 65, 85, .15);
    background: #fff;
    font-size: .8rem;
    font-weight: 700;
    color: #334155;
}

.privacy-page .toc{
    border: 1px solid rgba(51, 65, 85, .1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(30, 41, 59, .08);
}
.privacy-page .toc a{
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
}
.privacy-page .toc a:hover{
    color: #1d4ed8;
}

.privacy-page .section-card{
    border-radius: 16px;
    border: 1px solid rgba(51, 65, 85, .1);
    box-shadow: 0 12px 24px rgba(30, 41, 59, .07);
    position: relative;
}
.privacy-page .section-card::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .12), rgba(59, 130, 246, .2));
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    border-top-right-radius: 16px;
}
.privacy-page .section-card h3{
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: .55rem;
}
.privacy-page .muted{
    color: #475569;
}
.privacy-page .callout{
    border-radius: 12px;
    border: 1px dashed rgba(30, 64, 175, .35);
    background: linear-gradient(180deg, rgba(219, 234, 254, .45), rgba(239, 246, 255, .85));
    padding: .9rem 1rem;
}

.privacy-page .card:hover,
.privacy-page .section-card:hover{
    transform: none;
}

@media (max-width: 576px){
    .privacy-page .privacy-hero{
        padding: 1.35rem;
    }
    .privacy-page .hero-title{
        font-size: 1.72rem;
    }
}