/* =============================================================
   Privacy Policy Page — Hosn Theme
   ============================================================= */

.privacy-page {
  background: #0a0a0a;
  color: #f5f5f5;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
  width: 100%;
}

.privacy-page .gold {
  color: #f3ce34;
}

/* ============================================================
   DECORATIVE DIAMOND ORBS — match careers / service pages
   ============================================================ */
.privacy-page .top-left-image {
  position: absolute;
  left: 0;
  top: 30%;
  z-index: 1;
  pointer-events: none;
  animation: ppOrbDrift 14s ease-in-out infinite;
}

.privacy-page .top-right-ai-image {
  position: absolute;
  right: 5%;
  top: 40%;
  left: unset;
  z-index: 1;
  pointer-events: none;
  animation: ppOrbDrift 16s ease-in-out infinite -3s;
}

.privacy-page .top-left-image img,
.privacy-page .top-right-ai-image img {
  display: block;
  height: auto;
  max-width: 100%;
}

@keyframes ppOrbDrift {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(1.5deg); }
}

/* ============================================================
   HERO — left-aligned, matches about/service pages
   ============================================================ */
.pp-hero {
  position: relative;
  padding: 130px 100px 100px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}

.pp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pp-blob {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.pp-blob-1 {
  background: #f3ce34;
  top: -120px;
  left: -120px;
  animation: ppFloat 14s ease-in-out infinite;
}

.pp-blob-2 {
  background: #f3ce34;
  top: -120px;
  right: -120px;
  animation: ppFloat 16s ease-in-out infinite reverse;
}

@keyframes ppFloat {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, 30px); }
}

.pp-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 1280px;
  margin: 0;
}

.pp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(243, 206, 52, 0.35);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #f3ce34;
  background: rgba(243, 206, 52, 0.06);
  margin: 0;
}

.pp-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f3ce34;
  box-shadow: 0 0 10px #f3ce34;
}

.pp-hero h1 {
  font-size: 83px;
  font-weight: 400;
  line-height: 96px;
  letter-spacing: -0.005em;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  text-align: left;
  max-width: 778px;
}

.pp-hero h1 .gold {
  font-weight: 700;
}

.pp-hero-desc {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  opacity: 0.9;
  max-width: 720px;
  margin: 0;
  font-weight: 300;
  text-align: left;
}

.pp-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.55);
  margin: 0;
}

.pp-updated .material-symbols-outlined {
  font-size: 18px;
  color: #f3ce34;
}

.pp-updated strong {
  color: #f5f5f5;
  font-weight: 500;
}

/* ============================================================
   CONTENT LAYOUT — full-width, left-aligned
   ============================================================ */
.pp-content {
  position: relative;
  padding: 80px 100px 120px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}

.pp-content-grid {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 1280px;
  margin: 0;
}

/* ============================================================
   BODY
   ============================================================ */
.pp-body {
  position: relative;
  z-index: 2;
  min-width: 0;
  text-align: left;
}

.pp-section {
  scroll-margin-top: 120px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.pp-section:first-child {
  padding-top: 0;
}

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

.pp-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: -0.3px;
  text-align: left;
}

.pp-section p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 16px;
  text-align: left;
}

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

.pp-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  text-align: left;
}

.pp-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.75);
  text-align: left;
}

.pp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f3ce34;
  box-shadow: 0 0 0 4px rgba(243, 206, 52, 0.12);
}

.pp-list li strong {
  color: #ffffff;
  font-weight: 600;
  margin-right: 4px;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.pp-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f3ce34;
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, box-shadow 0.3s ease;
  z-index: 100;
}

.pp-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pp-top:hover {
  box-shadow: 0 10px 24px rgba(243, 206, 52, 0.4);
  transform: translateY(-3px);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .privacy-page .top-left-image img,
  .privacy-page .top-right-ai-image img { max-width: 220px; }
}

@media (max-width: 1024px) {
  .pp-content {
    padding: 60px 40px 100px;
  }

  .pp-hero {
    padding: 110px 40px 80px;
  }

  .pp-hero h1 {
    font-size: 60px;
    line-height: 1.1;
  }

  .privacy-page .top-left-image,
  .privacy-page .top-right-ai-image { opacity: 0.55; }

  .privacy-page .top-left-image img,
  .privacy-page .top-right-ai-image img { max-width: 170px; }
}

@media (max-width: 640px) {
  .pp-hero {
    padding: 90px 20px 60px;
  }

  .pp-hero h1 {
    font-size: 40px;
    line-height: 1.15;
  }

  .pp-hero-desc {
    font-size: 16px;
  }

  .pp-content {
    padding: 40px 20px 80px;
  }

  .pp-section h2 {
    font-size: 22px;
  }

  .pp-section p,
  .pp-list li {
    font-size: 14px;
  }

  .pp-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .privacy-page .top-left-image,
  .privacy-page .top-right-ai-image { display: none; }
}
