/* === Privacy Policy page === */

/* Hero */
.pp-hero {
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(60% 60% at 50% 0%, rgba(64,204,191,0.07), transparent 70%);
}
.pp-hero .eyebrow { margin: 0 auto 20px; }
.pp-hero h1 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.03em; line-height: 1.08; }
.pp-hero-meta { margin-top: 16px; font-size: 14px; color: var(--muted); }

/* Layout */
.pp-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0 80px;
}

/* Sidebar TOC */
.pp-toc {
  position: sticky;
  top: 88px;
}
.pp-toc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}
.pp-toc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.pp-toc-list li a {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.pp-toc-list li a:hover { background: var(--surface); color: var(--ink); }
.pp-toc-list li a.active { background: var(--teal-50); color: var(--teal-700); font-weight: 600; }
.pp-toc-list li.pp-toc-sub a { padding-left: 22px; font-size: 12px; }

/* Content */
.pp-content { min-width: 0; }
.pp-intro {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.pp-intro p { margin-bottom: 12px; }
.pp-intro p:last-child { margin-bottom: 0; }
.pp-section { padding-bottom: 40px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.pp-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pp-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal-600);
  background: var(--teal-50);
  border-radius: 8px;
  margin-bottom: 12px;
}
.pp-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 16px;
}
.pp-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 8px;
}
.pp-section h3:first-of-type { margin-top: 0; }
.pp-section p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.pp-section p:last-child { margin-bottom: 0; }
.pp-section ul, .pp-section ol {
  margin: 12px 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.pp-section ul li, .pp-section ol li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
}
.pp-section address {
  font-style: normal;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
}

/* Tables */
.pp-table-wrap { overflow-x: auto; margin: 20px 0; }
.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.pp-table th {
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}
.pp-table th:last-child { border-right: none; }
.pp-table td {
  padding: 12px 14px;
  color: var(--ink-2);
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: top;
}
.pp-table td:last-child { border-right: none; }
.pp-table tr:last-child td { border-bottom: none; }
.pp-table tr:hover td { background: var(--bg); }
.pp-table td.pp-row-head {
  font-weight: 700;
  color: var(--ink);
  background: var(--surface);
  white-space: nowrap;
}
.pp-table th.pp-col-empty { background: var(--bg); }

/* Responsive */
@media (max-width: 860px) {
  .pp-layout { grid-template-columns: 1fr; }
  .pp-toc { display: none; }
}
@media (max-width: 600px) {
  .pp-table { font-size: 12px; }
  .pp-table th, .pp-table td { padding: 8px 10px; }
}
