/* ══════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════ */
:root {
  --navy:        #14153d;
  --navy2:       #1c1e52;
  --navy-light:  #eef0fb;
  --orange:      #ef843f;
  --orange2:     #f9a06a;
  --orange3:     #d4612b;
  --orange-bg:   #fff5ee;
  --orange-bg2:  #fde8d8;
  --bg:          #ffffff;
  --bg2:         #f8f9fc;
  --bg3:         #f1f3fa;
  --text:        #1a1b3a;
  --text2:       #3d3f6b;
  --muted:       #6b6f9a;
  --border:      rgba(20,21,61,0.09);
  --border2:     rgba(20,21,61,0.15);
  --green:       #16a34a;
  --font-heading:'Plus Jakarta Sans', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --container:   860px;
  --radius:      18px;
  --radius-sm:   12px;
  --radius-xs:   8px;
  --header-h:    72px;
  --transition:  0.25s ease;
  --shadow-sm:   0 2px 12px rgba(20,21,61,0.08);
  --shadow-md:   0 8px 32px rgba(20,21,61,0.12);
  --shadow-orange: 0 8px 28px rgba(239,132,63,0.35);
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg2);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

::selection { background: rgba(239,132,63,0.2); color: var(--navy); }
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

@keyframes fadeUp    { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse-ring { 0% { transform:scale(1); opacity:0.7; } 100% { transform:scale(1.6); opacity:0; } }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  position: relative;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(20,21,61,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 20px rgba(20,21,61,0.2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo-wrap { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-img  { height: 44px; width: auto; object-fit: contain; }
.header-right { display: flex; align-items: center; gap: 12px; }
.back-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.6);
  text-decoration: none; padding: 7px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.back-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
}
.header-badge {
  background: linear-gradient(135deg, var(--orange), var(--orange3));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px;
  box-shadow: var(--shadow-orange);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(239,132,63,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(239,132,63,0.15);
  border: 1px solid rgba(239,132,63,0.35);
  color: var(--orange2);
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  margin-bottom: 14px; position: relative;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero p {
  max-width: 500px; margin: 0 auto;
  color: rgba(255,255,255,0.6); font-size: 0.97rem; line-height: 1.7;
  position: relative;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px; padding: 6px 16px;
  font-size: 0.76rem; color: rgba(255,255,255,0.5);
  position: relative;
}

/* ══════════════════════════════════════════
   POLICY CONTENT
══════════════════════════════════════════ */
.policy-wrap {
  padding: 48px 0 80px;
  animation: fadeUp 0.5s ease forwards;
}

/* Table of Contents */
.policy-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.policy-toc-title {
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 700;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.policy-toc ol {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.policy-toc li { counter-increment: none; }
.policy-toc a {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text2); font-weight: 500;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.policy-toc a:hover { color: var(--orange3); border-bottom-color: var(--orange-bg2); }
.policy-toc .toc-num {
  min-width: 24px; height: 24px;
  background: var(--orange-bg);
  border: 1px solid rgba(239,132,63,0.2);
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-size: 0.7rem; font-weight: 700; color: var(--orange3);
  flex-shrink: 0;
}

/* Section cards */
.policy-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
@media (max-width: 600px) {
  .policy-section { padding: 24px 20px; }
}

.policy-section-header {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.policy-section-num {
  min-width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange3));
  border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(239,132,63,0.3);
}
.policy-section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  line-height: 1.3;
  padding-top: 8px;
}

/* Text inside sections */
.policy-text {
  font-size: 0.94rem; color: var(--text2); line-height: 1.8;
  margin-bottom: 16px;
}
.policy-text:last-child { margin-bottom: 0; }

.policy-sub {
  font-family: var(--font-heading);
  font-size: 0.88rem; font-weight: 700; color: var(--navy);
  margin: 24px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--orange);
}

.policy-sub2 {
  font-size: 0.84rem; font-weight: 600; color: var(--text2);
  margin: 18px 0 8px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.policy-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.policy-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.93rem; color: var(--text2); line-height: 1.7;
}
.policy-list li::before {
  content: '';
  min-width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 9px;
  flex-shrink: 0;
}

.policy-list--alpha {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.policy-list--alpha li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.93rem; color: var(--text2); line-height: 1.7;
}
.policy-list--alpha li .item-label {
  min-width: 28px; height: 28px;
  background: var(--orange-bg);
  border: 1px solid rgba(239,132,63,0.2);
  border-radius: 7px;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-size: 0.7rem; font-weight: 700; color: var(--orange3);
  flex-shrink: 0; margin-top: 1px;
}

/* Final warning box */
.policy-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.policy-final::before {
  content: '';
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(239,132,63,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.policy-final p {
  font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 700;
  color: rgba(255,255,255,0.85); line-height: 1.8;
  position: relative;
  letter-spacing: 0.01em;
}
.policy-final p span { color: var(--orange2); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center; padding: 22px 2rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
}
footer a { color: var(--orange2); transition: color var(--transition); }
footer a:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  display: grid; place-items: center;
  cursor: pointer; border: none; outline: none;
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wa-float.visible { opacity: 1; transform: scale(1); }
.wa-float:hover   { transform: scale(1.1); }
.wa-float::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse-ring 2.2s ease-out infinite;
}
