/* ── Privacy Policy Page ─────────────────────────────────── */
.pp-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* Hero */
.pp-hero {
    text-align: center;
    padding: 56px 24px 48px;
    position: relative;
    margin-bottom: 12px;
}
.pp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212,175,55,.10) 0%, transparent 70%);
    pointer-events: none;
}
.pp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-dim, rgba(212,175,55,.12));
    border: 1px solid var(--border-gold, rgba(212,175,55,.25));
    border-radius: 999px;
    padding: 4px 14px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-light, #e5c96a);
    margin-bottom: 20px;
}
.pp-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text-1, #f0ece0);
    line-height: 1.15;
    margin-bottom: 12px;
}
.pp-hero-title span { color: var(--gold-light, #e5c96a); }
.pp-hero-sub {
    font-size: .8rem;
    color: var(--text-3, #6b6860);
    margin-top: 8px;
}

/* Lang toggle */
.pp-lang-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.pp-lang-btn {
    padding: 7px 22px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .05em;
    cursor: pointer;
    border: 1px solid var(--border-gold, rgba(212,175,55,.25));
    background: transparent;
    color: var(--text-3, #6b6860);
    transition: all .2s;
    font-family: inherit;
}
.pp-lang-btn:first-child { border-radius: var(--radius, 8px) 0 0 var(--radius, 8px); }
.pp-lang-btn:last-child  { border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0; border-left: none; }
.pp-lang-btn.active {
    background: var(--gold-dim, rgba(212,175,55,.15));
    color: var(--gold-light, #e5c96a);
    border-color: var(--border-gold, rgba(212,175,55,.4));
}
.pp-lang-btn:not(.active):hover { color: var(--text-1, #f0ece0); }

/* TOC */
.pp-toc {
    background: var(--surface-2, #1a1915);
    border: 1px solid var(--border, #2a2720);
    border-left: 3px solid var(--gold, #d4af37);
    border-radius: var(--radius, 8px);
    padding: 20px 24px;
    margin-bottom: 36px;
}
.pp-toc-title {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-light, #e5c96a);
    margin-bottom: 12px;
}
.pp-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 16px;
}
@media (max-width: 540px) { .pp-toc-list { columns: 1; } }
.pp-toc-list li { margin-bottom: 6px; break-inside: avoid; }
.pp-toc-list a {
    font-size: .73rem;
    color: var(--text-3, #6b6860);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .15s;
}
.pp-toc-list a:hover { color: var(--gold-light, #e5c96a); }
.pp-toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    background: var(--gold-dim, rgba(212,175,55,.12));
    border-radius: 4px;
    font-size: .6rem;
    font-weight: 800;
    color: var(--gold, #d4af37);
    flex-shrink: 0;
}

/* Section */
.pp-section {
    margin-bottom: 40px;
    scroll-margin-top: 80px;
}
.pp-section-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border, #2a2720);
}
.pp-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: var(--gold-dim, rgba(212,175,55,.12));
    border: 1px solid var(--border-gold, rgba(212,175,55,.25));
    border-radius: 7px;
    font-size: .68rem;
    font-weight: 800;
    color: var(--gold, #d4af37);
    flex-shrink: 0;
}
.pp-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1, #f0ece0);
    line-height: 1.3;
}
.pp-section-subtitle {
    font-size: .72rem;
    color: var(--text-3, #6b6860);
    margin-top: 2px;
}
.pp-body {
    font-size: .82rem;
    line-height: 1.8;
    color: var(--text-2, #a09880);
}
.pp-body p { margin-bottom: 12px; }
.pp-body p:last-child { margin-bottom: 0; }
.pp-body strong { color: var(--text-1, #f0ece0); font-weight: 600; }
.pp-body a { color: var(--gold-light, #e5c96a); text-decoration: none; }
.pp-body a:hover { text-decoration: underline; }

/* Data list */
.pp-data-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pp-data-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--surface-2, #1a1915);
    border: 1px solid var(--border, #2a2720);
    border-radius: var(--radius, 8px);
    padding: 10px 14px;
    font-size: .78rem;
    color: var(--text-2, #a09880);
}
.pp-data-icon {
    color: var(--gold, #d4af37);
    font-size: .82rem;
    margin-top: 1px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.pp-data-label { font-weight: 600; color: var(--text-1, #f0ece0); }

/* Highlight box */
.pp-highlight {
    background: var(--gold-dim, rgba(212,175,55,.07));
    border: 1px solid var(--border-gold, rgba(212,175,55,.2));
    border-radius: var(--radius, 8px);
    padding: 14px 18px;
    font-size: .78rem;
    color: var(--text-2, #a09880);
    margin: 14px 0;
    line-height: 1.7;
}
.pp-highlight i { color: var(--gold, #d4af37); margin-right: 6px; }

/* Contact card */
.pp-contact {
    background: var(--surface-2, #1a1915);
    border: 1px solid var(--border, #2a2720);
    border-radius: var(--radius-lg, 12px);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 16px;
}
.pp-contact-icon {
    width: 40px; height: 40px;
    background: var(--gold-dim, rgba(212,175,55,.12));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold, #d4af37);
    font-size: 1rem;
    flex-shrink: 0;
}
.pp-contact-body { flex: 1; }
.pp-contact-name { font-size: .82rem; font-weight: 700; color: var(--text-1, #f0ece0); margin-bottom: 4px; }
.pp-contact-detail { font-size: .74rem; color: var(--text-3, #6b6860); line-height: 1.6; }
.pp-contact-detail a { color: var(--gold-light, #e5c96a); text-decoration: none; }

/* Divider */
.pp-divider {
    border: none;
    border-top: 1px solid var(--border, #2a2720);
    margin: 44px 0;
}

/* Footer note */
.pp-footer-note {
    text-align: center;
    font-size: .7rem;
    color: var(--text-3, #6b6860);
    padding: 24px;
    border-top: 1px solid var(--border, #2a2720);
}

/* Lang content visibility */
.lang-id, .lang-en { transition: opacity .2s; }
body.lang-en .lang-id { display: none; }
body.lang-id .lang-en { display: none; }
body:not(.lang-en):not(.lang-id) .lang-en { display: none; }
