/* ============================================================
   HARBORPASS — Privacy Policy Page
   privacy-policy.css
   ============================================================ */

/* ── Page shell ── */
.pp-page {
  background: #ffffff;
  min-height: 100vh;
}

/* ── Hero header ── */
.pp-hero {
  background: #0033FF;
  padding: 100px 32px 72px;
  text-align: center;
}

.pp-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}


.pp-hero-title {
  font-family: 'Neue Power', sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 18px;
}

.pp-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.pp-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pp-hero-meta svg { opacity: 0.6; }

/* ── Layout: sidebar + content ── */
.pp-layout {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Sticky TOC sidebar ── */
.pp-toc {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.pp-toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(1, 3, 62, 0.4);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(1, 3, 62, 0.08);
}

.pp-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pp-toc-list a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(1, 3, 62, 0.5);
  text-decoration: none;
  padding: 6px 10px 6px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  line-height: 1.4;
}

.pp-toc-list a:hover {
  color: #01033E;
  background: rgba(1, 3, 62, 0.04);
  border-left-color: rgba(128, 125, 254, 0.4);
}

.pp-toc-list a.active {
  color: #807DFE;
  background: rgba(128, 125, 254, 0.07);
  border-left-color: #807DFE;
  font-weight: 600;
}

/* ── Main content ── */
.pp-content {
  min-width: 0;
}

/* ── Intro block ── */
.pp-intro {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(128, 125, 254, 0.06) 0%, rgba(1, 3, 62, 0.03) 100%);
  border: 1px solid rgba(128, 125, 254, 0.15);
  border-radius: 16px;
  margin-bottom: 52px;
}

.pp-intro p {
  font-size: 15px;
  color: rgba(1, 3, 62, 0.75);
  line-height: 1.7;
  margin: 0 0 14px;
}

.pp-intro p:last-child { margin-bottom: 0; }

/* ── Sections ── */
.pp-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(1, 3, 62, 0.07);
  scroll-margin-top: 96px;
}

.pp-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pp-section-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #807DFE;
  margin-bottom: 8px;
}

.pp-section-title {
  font-family: 'Neue Power', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #01033E;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  line-height: 1.25;
}

.pp-sub-title {
  font-family: 'Neue Power', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #01033E;
  letter-spacing: -0.01em;
  margin: 28px 0 12px;
}

.pp-section p {
  font-size: 15px;
  color: rgba(1, 3, 62, 0.72);
  line-height: 1.75;
  margin: 0 0 14px;
}

.pp-section p:last-child { margin-bottom: 0; }

/* ── Bullet list ── */
.pp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: rgba(1, 3, 62, 0.72);
  line-height: 1.65;
}

.pp-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #807DFE;
  margin-top: 8px;
}

/* ── Rights grid (section 7) ── */
.pp-rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}

.pp-right-card {
  background: rgba(1, 3, 62, 0.025);
  border: 1px solid rgba(1, 3, 62, 0.07);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.pp-right-card:hover {
  border-color: rgba(128, 125, 254, 0.25);
  background: rgba(128, 125, 254, 0.04);
}

.pp-right-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #01033E;
  margin-bottom: 5px;
}

.pp-right-card-desc {
  font-size: 13px;
  color: rgba(1, 3, 62, 0.58);
  line-height: 1.55;
  margin: 0;
}

/* ── Jurisdiction chips (section 11) ── */
.pp-jurisdiction-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.pp-jurisdiction-item {
  border: 1px solid rgba(1, 3, 62, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  background: #fafafa;
}

.pp-jurisdiction-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pp-jurisdiction-flag {
  font-size: 22px;
  line-height: 1;
}

.pp-jurisdiction-name {
  font-size: 14px;
  font-weight: 700;
  color: #01033E;
}

.pp-jurisdiction-law {
  font-size: 12px;
  color: #807DFE;
  font-weight: 600;
}

.pp-jurisdiction-item p {
  margin: 0;
  font-size: 14px;
  color: rgba(1, 3, 62, 0.65);
  line-height: 1.65;
}

/* ── Contact box ── */
.pp-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #01033E;
  border-radius: 18px;
  padding: 28px 32px;
  margin-top: 24px;
}

.pp-contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(128, 125, 254, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-contact-body { flex: 1; }

.pp-contact-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
}

.pp-contact-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 4px;
  line-height: 1.6;
}

.pp-contact-body a {
  color: #b4b2fe;
  text-decoration: none;
  font-weight: 500;
}

.pp-contact-body a:hover { color: #ffffff; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .pp-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 24px 72px;
  }

  .pp-toc {
    position: static;
    max-height: none;
    overflow: visible;
    background: #f7f7fb;
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 40px;
  }

  .pp-toc-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .pp-toc-list a {
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
    padding: 5px 10px;
    background: rgba(1, 3, 62, 0.04);
    font-size: 12px;
  }

  .pp-toc-list a:hover,
  .pp-toc-list a.active {
    border-left-color: transparent;
    border-bottom-color: #807DFE;
    background: rgba(128, 125, 254, 0.1);
  }

  .pp-rights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pp-hero {
    padding: 88px 20px 52px;
  }

  .pp-layout {
    padding: 32px 20px 60px;
  }

  .pp-section-title {
    font-size: 19px;
  }

  .pp-intro {
    padding: 20px;
  }

  .pp-contact-box {
    flex-direction: column;
    padding: 22px;
  }

  .pp-jurisdiction-item {
    padding: 16px 18px;
  }
}
