/* ─── NAVBAR (privacy page variant) ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(9, 13, 30, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--white); }

/* ─── PAGE HEADER ─── */
.page-header {
  position: relative;
  padding: 140px 5% 80px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(circle, rgba(35,71,232,0.18) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 16px;
}

.page-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--brand-2);
  border-radius: 2px;
}

.page-label::after {
  content: '';
  width: 20px; height: 2px;
  background: var(--brand-2);
  border-radius: 2px;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.effective-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 6px 16px;
  background: rgba(35,71,232,0.12);
  border: 1px solid rgba(35,71,232,0.28);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--brand-2);
  font-weight: 600;
}

/* ─── CONTENT LAYOUT ─── */
.content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 5% 100px;
}

/* ─── TABLE OF CONTENTS ─── */
.toc {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 56px;
}

.toc-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.toc ol {
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}

.toc ol li a {
  color: var(--brand-2);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.toc ol li a:hover { color: var(--white); text-decoration: underline; }

@media (max-width: 600px) {
  .toc ol { grid-template-columns: 1fr; }
}

/* ─── POLICY SECTIONS ─── */
.policy-section {
  margin-bottom: 52px;
  scroll-margin-top: 90px;
}

.policy-section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-section h2 .section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  font-size: 0.8rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.policy-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 20px 0 10px;
}

.policy-section p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.policy-section ul,
.policy-section ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.policy-section li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 6px;
}

.policy-section li strong { color: var(--white); }

/* ─── PERMISSION CARDS ─── */
.permission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

@media (max-width: 600px) {
  .permission-grid { grid-template-columns: 1fr; }
}

.permission-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s;
}

.permission-card:hover {
  border-color: rgba(35,71,232,0.35);
}

.permission-card .perm-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.permission-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.permission-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.perm-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.perm-badge.required { background: rgba(35,71,232,0.18); color: var(--brand-2); }
.perm-badge.optional { background: rgba(52,211,153,0.12); color: #34D399; }

/* ─── INFO BOXES ─── */
.info-box {
  background: rgba(35,71,232,0.1);
  border: 1px solid rgba(35,71,232,0.25);
  border-left: 3px solid var(--brand-2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}

.info-box p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
}

.info-box.warning {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.3);
  border-left-color: var(--accent);
}

/* ─── DIVIDER ─── */
.policy-divider {
  height: 1px;
  background: var(--card-border);
  margin: 48px 0;
}

/* ─── CONTACT CARD ─── */
.contact-card {
  background: linear-gradient(135deg, rgba(35,71,232,0.12), rgba(79,115,240,0.08));
  border: 1px solid rgba(35,71,232,0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(35,71,232,0.4);
  transition: all 0.2s;
}

.contact-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(35,71,232,0.55);
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  background: var(--dark-2);
  border-top: 1px solid var(--card-border);
  padding: 48px 5% 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }
.footer-links a.active { color: var(--brand-2); }
