/* ============================================================
   CARGOTEER — COOKIE POLICY PAGE
   ============================================================ */

.cookie-page {
  background: var(--white);
}

.cookie-page .navbar,
.cookie-page .feature-btn {
  opacity: 1;
  animation: none;
}

/* ── Hero ─────────────────────────────────────────────────── */
.pp-hero {
  position: relative;
  padding: clamp(140px, 18vw, 180px) 24px clamp(64px, 8vw, 88px);
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

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

.pp-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 20% 80%, rgba(253, 82, 2, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(253, 82, 2, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #000a07 0%, var(--black) 100%);
}

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

.pp-hero-eyebrow {
  color: var(--orange);
  margin-bottom: 20px;
}

.pp-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.pp-hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin: 0 auto;
}

/* ── Content ──────────────────────────────────────────────── */
.pp-content {
  padding: clamp(64px, 8vw, 96px) 24px clamp(72px, 9vw, 100px);
  background: var(--white);
}

.pp-content-inner {
  max-width: 760px;
  margin: 0 auto;
}

.pp-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-dark);
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 15, 10, 0.08);
}

.pp-section {
  margin-bottom: 40px;
}

.pp-section:last-of-type {
  margin-bottom: 0;
}

.pp-section-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pp-section-num {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
}

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

.pp-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

.pp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.pp-list strong {
  color: var(--black);
  font-weight: 600;
}

.pp-list a {
  color: var(--orange);
  text-decoration: underline;
}

/* ── CTA ──────────────────────────────────────────────────── */
.pp-cta {
  padding: clamp(64px, 8vw, 88px) 24px;
  background: var(--gray-light);
  text-align: center;
}

.pp-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.pp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 640px) {
  .pp-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pp-cta-actions .feature-btn {
    justify-content: center;
  }
}
