/* ========================
   PRIVACY POLICY — HERO (Pinned Parallax, matches site pattern)
   ======================== */
.pp-hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 0;
  background-color: #050505;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}
.pp-hero + section {
  margin-top: 100vh;
}
.pp-hero ~ section,
.pp-hero ~ .cta-banner-section,
.pp-hero ~ .site-footer {
  position: relative;
  z-index: 1;
}
.pp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    radial-gradient(
      circle at 20% 30%,
      rgba(212, 168, 26, 0.15) 0%,
      transparent 55%
    );
  z-index: 0;
}
.pp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 26, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
  z-index: 0;
  pointer-events: none;
}
.pp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.pp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: ppFloat 14s ease-in-out infinite alternate;
}
.pp-hero-orb-1 {
  width: 560px;
  height: 560px;
  top: -15%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 26, 0.55),
    transparent 70%
  );
}
.pp-hero-orb-2 {
  width: 440px;
  height: 440px;
  bottom: -15%;
  right: -10%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 26, 0.32),
    transparent 70%
  );
  animation-delay: -5s;
}
@keyframes ppFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, -30px) scale(1.08);
  }
}

.pp-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.pp-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}
.pp-hero-breadcrumb a:hover {
  color: var(--accent);
}
.pp-hero-breadcrumb .pp-hero-sep {
  color: var(--accent);
  opacity: 0.6;
}

.pp-hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.pp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(212, 168, 26, 0.5);
  color: var(--accent);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.pp-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: ppPulse 1.6s ease-in-out infinite;
}
@keyframes ppPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.pp-hero-title {
  font-family: var(--font-primary);
  color: #fff;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1.4rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}
.pp-hero-title .text-accent {
  background: linear-gradient(135deg, #f5d76e 0%, #d4a81a 50%, #f5d76e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 20px rgba(212, 168, 26, 0.4));
  animation: ppShine 6s linear infinite;
}
@keyframes ppShine {
  to {
    background-position: 200% center;
  }
}

.pp-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 1.8rem;
}

.pp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
}
.pp-hero-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.75);

  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.pp-hero-stamp i {
  color: var(--accent);
  font-size: 0.85rem;
}
.pp-hero-stamp strong {
  color: #fff;
  font-weight: 600;
  margin-left: 0.2rem;
}

.pp-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
  z-index: 3;
}
.pp-hero-scroll:hover {
  color: var(--accent);
}
.pp-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.pp-hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--accent);
  animation: ppScrollLine 2s ease-in-out infinite;
}
@keyframes ppScrollLine {
  0% {
    top: -40px;
  }
  100% {
    top: 40px;
  }
}

/* ========================
   POLICY CONTENT
   ======================== */
.pp-content-section {
  background: #0a0a0a;
  padding: 4rem 0 6rem;
  position: relative;
}
.pp-content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 90% 10%,
      rgba(212, 168, 26, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 0% 90%,
      rgba(212, 168, 26, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.pp-content-section .container {
  position: relative;
  z-index: 1;
}

/* Sticky TOC */
.pp-toc {
  position: sticky;
  top: 110px;
  padding: 1.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}
.pp-toc-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.pp-toc-eyebrow {
  display: block;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.pp-toc-title {
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  margin: 0;
}
.pp-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}
.pp-toc-list li {
  margin: 0;
}
.pp-toc-list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 0.7rem;
  margin: 0.15rem -0.7rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
  position: relative;
}
.pp-toc-list a span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(212, 168, 26, 0.08);
  border: 1px solid rgba(212, 168, 26, 0.2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  transition:
    background 0.25s,
    color 0.25s;
}
.pp-toc-list a:hover,
.pp-toc-list a:focus {
  background: rgba(212, 168, 26, 0.06);
  color: #fff;
  transform: translateX(2px);
}
.pp-toc-list a:hover span {
  background: var(--accent);
  color: #050505;
}
/* Active state — driven by scroll-spy JS */
.pp-toc-list a.is-active {
  background: linear-gradient(
    90deg,
    rgba(212, 168, 26, 0.16),
    rgba(212, 168, 26, 0.04)
  );
  color: #fff;
  font-weight: 600;
  box-shadow: inset 3px 0 0 var(--accent);
}
.pp-toc-list a.is-active span {
  background: var(--accent);
  color: #050505;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(212, 168, 26, 0.35);
}

/* Article */
.pp-article {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.5;
}
.pp-intro-card {
  padding: 1.8rem 1.8rem;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 26, 0.08) 0%,
    rgba(212, 168, 26, 0.02) 100%
  );
  border: 1px solid rgba(212, 168, 26, 0.25);
  border-radius: 18px;
  margin-bottom: 2.5rem;
}
.pp-intro-lead {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.pp-intro-lead strong {
  color: var(--accent);
}
.pp-intro-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin: 0;
}
.pp-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(212, 168, 26, 0.5);
  transition:
    color 0.25s,
    border-color 0.25s;
}
.pp-link:hover {
  color: #f5d76e;
  border-bottom-color: #f5d76e;
}

.pp-section {
  position: relative;
  padding: 1rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 1.5rem;
  scroll-margin-top: 110px;
}
.pp-section:first-of-type {
  border-top: 0;
  padding-top: 1rem;
  margin-top: 0;
}
.pp-section-num {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 4px;
  margin-bottom: 0.6rem;
}
.pp-section-title {
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.pp-section-subtitle {
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.2px;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
}
.pp-section p {
  margin-bottom: 1rem;
}
.pp-section p:last-child {
  margin-bottom: 0;
}
.pp-section strong {
  color: #fff;
  font-weight: 600;
}

/* Lists */
.pp-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.pp-list li {
  position: relative;
  padding: 0.6rem 0 0.1rem 1.8rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.pp-list li:last-child {
  border-bottom: 0;
}
.pp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(212, 168, 26, 0.5);
}
.pp-list-checked li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background: transparent;
  box-shadow: none;
  color: var(--accent);
  font-size: 0.9rem;
  top: 0.7rem;
  width: auto;
  height: auto;
}

/* Use-case grid */
.pp-usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 0.5rem;
}
.pp-usecase {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  transition:
    transform 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.pp-usecase:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 26, 0.3);
  background: rgba(212, 168, 26, 0.04);
}
.pp-usecase i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.pp-usecase strong {
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
}
.pp-usecase span {
  color: rgba(255, 255, 255, 0.6);

  line-height: 1.55;
}

/* Cookies table */
.pp-cookies-table {
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.pp-cookies-row {
  display: grid;
  grid-template-columns: 1.1fr 2.5fr 1fr;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  font-size: 0.9rem;
}
.pp-cookies-row:last-child {
  border-bottom: 0;
}
.pp-cookies-row.pp-cookies-head {
  background: rgba(212, 168, 26, 0.08);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
}
.pp-cookies-row strong {
  color: #fff;
}

/* ========================
   FULL-WIDTH CONTACT SECTION
   ======================== */
.pp-contact-section {
  position: relative;
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 110px;
}
.pp-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 26, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center top, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center top,
    #000 25%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 0;
}
.pp-contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.pp-contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.pp-contact-orb-1 {
  width: 520px;
  height: 520px;
  top: -20%;
  left: -8%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 26, 0.55),
    transparent 70%
  );
}
.pp-contact-orb-2 {
  width: 420px;
  height: 420px;
  bottom: -15%;
  right: -10%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 26, 0.35),
    transparent 70%
  );
}
.pp-contact-section .container {
  position: relative;
  z-index: 1;
}

.pp-contact-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.pp-contact-head .pp-section-num {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(212, 168, 26, 0.08);
  border: 1px solid rgba(212, 168, 26, 0.25);
  border-radius: 100px;
}
.pp-contact-heading {
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.pp-contact-heading .text-accent {
  background: linear-gradient(135deg, #f5d76e 0%, #d4a81a 50%, #f5d76e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ppShine 6s linear infinite;
}
.pp-contact-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

.pp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pp-contact-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 1.8rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.pp-contact-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 100% 0%,
    rgba(212, 168, 26, 0.18) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
a.pp-contact-tile:hover,
a.pp-contact-tile:focus {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 26, 0.45);
  background: linear-gradient(
    180deg,
    rgba(212, 168, 26, 0.05),
    rgba(255, 255, 255, 0.015)
  );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 168, 26, 0.15) inset;
}
a.pp-contact-tile:hover::after,
a.pp-contact-tile:focus::after {
  opacity: 1;
}

.pp-contact-tile-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: linear-gradient(
    135deg,
    rgba(212, 168, 26, 0.22),
    rgba(212, 168, 26, 0.06)
  );
  border: 1px solid rgba(212, 168, 26, 0.3);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.pp-contact-tile-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.pp-contact-tile-value {
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.4px;
  line-height: 1.35;
  word-break: break-word;
}
.pp-contact-tile-value-sm {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.pp-contact-tile-hint {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}
.pp-contact-tile-arrow {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212, 168, 26, 0.1);
  border: 1px solid rgba(212, 168, 26, 0.25);
  color: var(--accent);
  font-size: 0.85rem;
  opacity: 0.85;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}
a.pp-contact-tile:hover .pp-contact-tile-arrow {
  transform: translate(2px, -2px);
  background: var(--accent);
  color: #050505;
}
.pp-contact-tile-address {
  cursor: default;
}

/* Bottom CTA bar */
.pp-contact-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.8rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 26, 0.1) 0%,
    rgba(212, 168, 26, 0.02) 100%
  );
  border: 1px solid rgba(212, 168, 26, 0.25);
  border-radius: 18px;
  backdrop-filter: blur(6px);
}
.pp-contact-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pp-contact-cta-text strong {
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}
.pp-contact-cta-text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}
.pp-contact-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  background: var(--accent);
  color: #050505;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  white-space: nowrap;
}
.pp-contact-cta:hover {
  transform: translateY(-2px);
  background: #f5d76e;
  color: #050505;
  box-shadow: 0 14px 36px rgba(212, 168, 26, 0.4);
}

.pp-footnote {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.6;
}
.pp-footnote i {
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 991px) {
  .pp-hero {
    position: relative;
    height: auto;
    min-height: 72vh;
    padding: 7rem 0 4rem;
  }
  .pp-hero + section {
    margin-top: 0;
  }
  .pp-hero-meta {
    gap: 0.6rem;
  }

  .pp-toc {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
  .pp-toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.2rem;
  }
}

@media (max-width: 767px) {
  .pp-hero {
    padding: 6rem 0 3rem;
  }
  .pp-hero-content {
    max-width: 100%;
  }
  .pp-hero-title {
    letter-spacing: -1px;
    margin-bottom: 1rem;
  }
  .pp-hero-desc {
    font-size: 0.95rem;
  }
  .pp-hero-scroll {
    display: none;
  }

  .pp-content-section {
    padding: 3rem 0 4rem;
  }
  .pp-intro-card {
    padding: 1.4rem 1.3rem;
  }
  .pp-intro-lead {
    font-size: 1rem;
  }
  .pp-section {
    padding: 1.6rem 0 0.5rem;
  }
  .pp-toc {
    padding: 1.3rem 1.1rem;
  }
  .pp-toc-list {
    grid-template-columns: 1fr;
  }
  .pp-toc-list a {
    font-size: 0.88rem;
    padding: 0.5rem 0.6rem;
  }

  .pp-usecase {
    padding: 1rem 1rem;
  }

  /* Stack cookies table on narrow screens */
  .pp-cookies-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0.9rem 1rem;
  }
  .pp-cookies-row.pp-cookies-head {
    display: none;
  }
  .pp-cookies-row span:nth-child(1)::before {
    content: "Type — ";
    color: var(--accent);
    font-weight: 700;
  }
  .pp-cookies-row span:nth-child(2)::before {
    content: "Purpose — ";
    color: var(--accent);
    font-weight: 700;
  }
  .pp-cookies-row span:nth-child(3)::before {
    content: "Lifetime — ";
    color: var(--accent);
    font-weight: 700;
  }

  .pp-contact-section {
    padding: 4rem 0 4.5rem;
  }
  .pp-contact-head {
    margin-bottom: 2.5rem;
  }
  .pp-contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pp-contact-tile {
    padding: 1.6rem 1.4rem;
  }
  .pp-contact-tile-value {
    font-size: 1.1rem;
  }
  .pp-contact-tile-arrow {
    top: 1.2rem;
    right: 1.2rem;
    width: 32px;
    height: 32px;
  }
  .pp-contact-cta-row {
    padding: 1.4rem 1.4rem;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .pp-contact-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pp-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pp-contact-tile-address {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .pp-hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .pp-hero-stamp {
    font-size: 0.78rem;
  }
  .pp-section-title {
    font-size: 1.3rem;
  }
}
