/* ── Terms & Conditions — reuse pp-* vars dari privacy-policy ── */
.tc-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* Hero */
.tc-hero {
    text-align: center;
    padding: 56px 24px 48px;
    position: relative;
    margin-bottom: 12px;
}
.tc-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;
}
.tc-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;
}
.tc-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;
}
.tc-hero-title span { color: var(--gold-light, #e5c96a); }
.tc-hero-sub {
    font-size: .8rem;
    color: var(--text-3, #6b6860);
    margin-top: 8px;
}

/* Lang toggle */
.tc-lang-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.tc-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;
}
.tc-lang-btn:first-child { border-radius: var(--radius, 8px) 0 0 var(--radius, 8px); }
.tc-lang-btn:last-child  { border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0; border-left: none; }
.tc-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));
}
.tc-lang-btn:not(.active):hover { color: var(--text-1, #f0ece0); }

/* TOC */
.tc-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;
}
.tc-toc-title {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-light, #e5c96a);
    margin-bottom: 12px;
}
.tc-toc-list {
    list-style: none;
    padding: 0; margin: 0;
    columns: 2; column-gap: 16px;
}
@media (max-width: 540px) { .tc-toc-list { columns: 1; } }
.tc-toc-list li { margin-bottom: 6px; break-inside: avoid; }
.tc-toc-list a {
    font-size: .73rem;
    color: var(--text-3, #6b6860);
    text-decoration: none;
    display: flex; align-items: center; gap: 7px;
    transition: color .15s;
}
.tc-toc-list a:hover { color: var(--gold-light, #e5c96a); }
.tc-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 */
.tc-section {
    margin-bottom: 40px;
    scroll-margin-top: 80px;
}
.tc-section-hd {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 1px solid var(--border, #2a2720);
}
.tc-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;
}
.tc-section-title {
    font-size: 1rem; font-weight: 700;
    color: var(--text-1, #f0ece0); line-height: 1.3;
}
.tc-section-subtitle {
    font-size: .72rem;
    color: var(--text-3, #6b6860);
    margin-top: 2px;
}

/* Body prose */
.tc-body {
    font-size: .82rem; line-height: 1.8;
    color: var(--text-2, #a09880);
}
.tc-body p { margin-bottom: 12px; }
.tc-body p:last-child { margin-bottom: 0; }
.tc-body strong { color: var(--text-1, #f0ece0); font-weight: 600; }
.tc-body a { color: var(--gold-light, #e5c96a); text-decoration: none; }
.tc-body a:hover { text-decoration: underline; }

/* Item list */
.tc-list {
    list-style: none; padding: 0; margin: 14px 0;
    display: flex; flex-direction: column; gap: 8px;
}
.tc-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);
}
.tc-item-icon {
    color: var(--gold, #d4af37); font-size: .82rem;
    margin-top: 2px; flex-shrink: 0;
    width: 16px; text-align: center;
}
.tc-item strong { color: var(--text-1, #f0ece0); font-weight: 600; }

/* Highlight / warning box */
.tc-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;
}
.tc-highlight i { color: var(--gold, #d4af37); margin-right: 6px; }

.tc-warning {
    background: rgba(239,68,68,.07);
    border: 1px solid rgba(239,68,68,.2);
    border-radius: var(--radius, 8px);
    padding: 14px 18px;
    font-size: .78rem; color: var(--text-2, #a09880);
    margin: 14px 0; line-height: 1.7;
}
.tc-warning i { color: var(--red, #ef4444); margin-right: 6px; }

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

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

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

/* Lang visibility */
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; }
