/* ============================================================
   PIP — Privacy Policy
   privacy-policy.html
   ============================================================ */

/* ── TOP BAR ── */
.pp-topbar {
  background: var(--navy);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.pp-topbar-logo img { height: 30px; width: auto; display: block; }

.pp-topbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pp-topbar-nav a {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.pp-topbar-nav a:hover { color: #fff; }

.pp-topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8) !important;
  font-size: .8rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.pp-topbar-btn:hover { background: rgba(255,255,255,.18); color: #fff !important; }
.pp-topbar-btn svg { width: 14px; height: 14px; }

/* ── HERO ── */
.pp-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0A3A7A 100%);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.pp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/watermark-PIP-3.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: .04;
  pointer-events: none;
}

.pp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pp-hero-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ice);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.pp-hero-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--ice);
  border-radius: 2px;
}

.pp-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.pp-hero p {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

/* ── BODY LAYOUT ── */
.pp-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 100px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── TOC SIDEBAR ── */
.pp-toc {
  position: sticky;
  top: 80px;
}

.pp-toc-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 14px;
}

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

.pp-toc-list a {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-left: 2px solid var(--border);
  line-height: 1.4;
  transition: color .15s, border-color .15s, background .15s;
  border-radius: 0 6px 6px 0;
}
.pp-toc-list a:hover {
  color: var(--navy);
  border-left-color: var(--ice);
  background: rgba(86,199,242,.05);
}

/* ── MAIN CONTENT ── */
.pp-main { min-width: 0; }

/* Notice */
.pp-notice {
  background: rgba(86,199,242,.07);
  border: 1px solid rgba(86,199,242,.25);
  border-left: 3px solid var(--ice);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  margin-bottom: 52px;
}
.pp-notice p {
  font-size: .9rem;
  color: var(--navy);
  line-height: 1.75;
  margin: 0;
}

/* Sections */
.pp-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 90px;
}
.pp-section:last-of-type { border-bottom: none; }

.pp-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.pp-section p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.pp-section p:last-child { margin-bottom: 0; }

.pp-subheading {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin: 22px 0 10px;
}

.pp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}
.pp-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ice);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Contact block */
.pp-contact {
  margin-top: 52px;
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 40px;
  scroll-margin-top: 90px;
}

.pp-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.pp-contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.pp-contact p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0;
}

.pp-contact-items { display: flex; flex-direction: column; gap: 10px; }

.pp-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(86,199,242,.12);
  border: 1px solid rgba(86,199,242,.25);
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.pp-contact-item:hover { background: rgba(86,199,242,.22); }
.pp-contact-item svg { width: 15px; height: 15px; stroke: var(--ice); flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pp-wrap { grid-template-columns: 1fr; gap: 0; padding-top: 48px; }
  .pp-toc { display: none; }
}

@media (max-width: 600px) {
  .pp-topbar { padding: 12px 20px; }
  .pp-topbar-nav a:not(.pp-topbar-btn) { display: none; }
  .pp-hero { padding: 48px 20px; }
  .pp-wrap { padding: 40px 20px 72px; }
  .pp-contact-inner { flex-direction: column; align-items: flex-start; }
  .pp-contact { padding: 28px 24px; }
}
