/* ======================================================
   PRIVACY POLICY PAGE
====================================================== */

.privacy-policy-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(120, 130, 255, 0.25),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      #05060f 0%,
      #070a1a 50%,
      #04050c 100%
    );
  min-height: 100vh;
}


/* ================= HERO ================= */

.privacy-policy-page .page-hero {
  min-height: 75vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.privacy-policy-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(248, 51, 44, 0.15),
    transparent 60%
  );
  pointer-events: none;
}

.privacy-policy-page .page-hero .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}


/* Badge */

.privacy-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 14px;
  font-size: 14px;
  color: #8ea2ff;
  border: 1px solid rgba(142, 162, 255, 0.3);
  border-radius: 20px;
  background: rgba(142, 162, 255, 0.08);
  backdrop-filter: blur(6px);
}


/* Title */

.privacy-policy-page .page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.privacy-policy-page .page-hero h1 span {
  color: #f8332c;
}

.privacy-policy-page .page-hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}


/* ================= CONTENT LAYOUT ================= */

.privacy-content {
  padding: 40px 0 40px;
}

/* .privacy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
} */

.privacy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 70px;

  max-width: 1000px;   /* reduced from 1100 */
  margin: 0 auto;
  padding: 0 20px;
}



/* ================= TOC ================= */

/* .privacy-toc {
  position: sticky;
  top: 140px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
} */

.privacy-toc {
  position: sticky;
  top: 140px;

  height: calc(100vh - 360px);
  overflow-y: auto;

  padding: 24px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}


.privacy-toc h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

.privacy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-toc li {
  margin-bottom: 14px;
}

.privacy-toc a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: 0.2s ease;
}

.privacy-toc a:hover {
  color: #ffffff;
}


/* ================= MAIN CONTENT ================= */

.privacy-main {
  width: 100%;
}

.policy-block {
  margin-bottom: 50px;
  padding-bottom: 40px;
  position: relative;
  scroll-margin-top: 160px;
}

.policy-block h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

.policy-block p,
.policy-block li {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.policy-block ul {
  padding-left: 20px;
}


/* Premium Fade Divider */

.policy-block:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-toc {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

}

@media (max-width: 768px) {

  .privacy-policy-page .page-hero h1 {
    font-size: 34px;
  }

}
