/* ── PRIVACY POLICY PAGE ── */

body {
  background: #000000 !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

#main-content {
  position: relative;
  z-index: 1;
  min-height: 40vh;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Page transition curtain */
#page-curtain {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a0e27, #0d1b3e);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}

#page-curtain.slide-in {
  transform: translateX(0);
  pointer-events: all;
}

body {
  opacity: 0;
  transition: opacity 0.35s ease 0.1s;
}

body.loaded {
  opacity: 1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── PRIVACY POLICY CONTENT ── */
.pp-section {
  padding: 110px 0 7rem;
  position: relative;
  z-index: 1;
}

.pp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1100px;
  background: linear-gradient(
    180deg,
    rgba(96, 165, 250, 0.2) 0%,
    rgba(236, 72, 153, 0.14) 45%,
    rgba(96, 165, 250, 0.07) 78%,
    transparent 100%
  );
  z-index: -1;
  pointer-events: none;
}

.pp-container {
  max-width: 100%;
  margin: 0;
  padding: 0 11rem;
}

.pp-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pp-title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.pp-effective {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-body, 'Inter', sans-serif);
}

.pp-effective strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.pp-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pp-block {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pp-heading {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 0.25rem;
}

.pp-block p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-family: var(--font-body, 'Inter', sans-serif);
}

.pp-block strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.pp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pp-list li {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 1.5rem;
  position: relative;
  font-family: var(--font-body, 'Inter', sans-serif);
}

@media (max-width: 900px) {
  .pp-container {
    padding: 0 4rem;
  }
}

@media (max-width: 600px) {
  .pp-section {
    padding: 90px 0 4rem;
  }
  .pp-container {
    padding: 0 1.5rem;
  }
  .pp-title {
    font-size: 2.2rem;
  }
}

.pp-list li::before {
  content: '•';
  position: absolute;
  left: 0.4rem;
  color: rgba(255, 255, 255, 0.4);
}

.pp-link {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pp-link:hover {
  color: #93c5fd;
}

.pp-contact-block {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.pp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
