.page-privacy {
  --pp-gap: clamp(20px, 4vw, 40px);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-text);
  line-height: 1.7;
  overflow-x: hidden;
}

.page-privacy .pp-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.page-privacy a {
  color: var(--pitch-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: background-color 0.15s ease;
}

.page-privacy a:hover {
  background: rgba(201, 162, 39, 0.14);
}

.page-privacy a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.page-privacy img {
  max-width: 100%;
  height: auto;
}

/* ===== Hero ===== */
.pp-hero {
  background:
    linear-gradient(120deg, rgba(0, 166, 81, 0.1) 0%, rgba(0, 166, 81, 0) 55%),
    radial-gradient(ellipse at 85% 20%, rgba(201, 162, 39, 0.2) 0%, rgba(0, 0, 0, 0) 55%),
    var(--midnight);
  border-bottom: 4px solid var(--gold);
  color: var(--white);
  padding-block: clamp(36px, 7vw, 72px);
}

.pp-hero__crumb {
  margin-bottom: 28px;
}

.pp-hero__crumb a,
.pp-hero__crumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.72);
}

.pp-hero__crumb a:hover {
  color: var(--champagne);
  background: transparent;
}

.pp-hero__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.pp-hero__text {
  max-width: 60em;
}

.pp-hero__text .mbx-kicker {
  margin-bottom: 12px;
}

.pp-hero__text h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 22px;
  color: var(--white);
  position: relative;
}

.pp-hero__text h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  background: var(--pitch);
  margin-top: 16px;
}

.pp-hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 30em;
}

.pp-hero__gold {
  color: var(--champagne);
  font-weight: 600;
}

.pp-hero__meta {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pp-hero__meta li {
  font-family: var(--font-num);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--champagne);
  border: 1px solid rgba(201, 162, 39, 0.5);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
}

.pp-hero__fig {
  margin: 0;
  border: 3px solid var(--gold);
  background: var(--midnight);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.28);
}

.pp-hero__fig img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.pp-hero__fig figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--champagne);
  border-top: 1px solid rgba(201, 162, 39, 0.5);
  font-family: var(--font-num);
  letter-spacing: 0.06em;
}

/* ===== TOC ===== */
.pp-toc {
  background: var(--mist);
  border-bottom: 3px solid var(--gold);
}

.pp-toc__label {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
  padding: 18px 0 6px;
}

.pp-toc__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0 0 20px;
}

.pp-toc__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  background: var(--white);
  border: 2px solid #D9E0E8;
  font-weight: 600;
  font-size: 14px;
  color: var(--midnight);
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(11, 30, 54, 0.16);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.pp-toc__list a:hover {
  border-color: var(--pitch);
  box-shadow: 6px 6px 0 rgba(0, 166, 81, 0.22);
  background: var(--white);
  transform: translate(-1px, -1px);
}

.pp-toc__num {
  font-family: var(--font-num);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ===== Section 通用 ===== */
.pp-section {
  padding-block: clamp(40px, 6vw, 72px);
}

.pp-section__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  border-bottom: 2px solid #DDE4EC;
  padding-bottom: 14px;
}

.pp-section__index {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.9;
  color: var(--pitch);
  flex-shrink: 0;
}

.pp-section__index--gold {
  color: var(--gold);
}

.pp-section__head .mbx-kicker {
  margin: 2px 0 6px;
}

.pp-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--midnight);
}

.pp-section__intro {
  max-width: 42em;
  font-size: 16px;
  line-height: 1.8;
  color: #53657A;
  margin: 0 0 28px;
}

/* ===== 01 信息收集 ===== */
.pp-collect__grid {
  display: grid;
  gap: 20px;
}

.pp-collect-card {
  background: var(--mist);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 22px 20px 20px;
}

.pp-collect-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  color: var(--midnight);
}

.pp-collect-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-collect-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #2A3B4D;
}

.pp-collect-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--pitch);
}

.pp-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 18px;
  border-left: 6px solid var(--gold);
  background: #FFF8EA;
  font-size: 14px;
  color: #5A4A1E;
}

.pp-note__tag {
  flex-shrink: 0;
  font-family: var(--font-num);
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: var(--white);
  padding: 2px 8px;
  font-size: 12px;
  line-height: 1.6;
}

.pp-note p {
  margin: 0;
  line-height: 1.65;
}

/* ===== 02 信息使用 ===== */
.pp-section--use {
  background: var(--mist);
  border-block: 3px solid var(--ink);
}

.pp-use__list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-use__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 18px;
  border: 2px solid #D9E0E8;
  background: var(--white);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.pp-use__item:hover {
  border-color: var(--pitch);
  background: #F7FBF8;
}

.pp-use__idx {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--gold);
}

.pp-use__item h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--midnight);
}

.pp-use__item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3D4E61;
}

/* ===== 03 数据共享 ===== */
.pp-section--share {
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.88);
}

.pp-section--share .pp-section__head {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.pp-section--share .pp-section__head h2 {
  color: var(--white);
}

.pp-section--share .pp-section__intro {
  color: rgba(255, 255, 255, 0.64);
}

.pp-share__grid {
  display: grid;
  gap: 18px;
}

.pp-share__card {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-top: 3px solid var(--gold);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.pp-share__card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
}

.pp-share__card h3 {
  color: var(--champagne);
  font-size: 17px;
  margin: 0 0 8px;
}

.pp-share__card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.pp-share__promise {
  margin-top: 28px;
  padding: 24px 22px;
  background: var(--pitch);
  color: #062A1C;
  border-left: 8px solid var(--gold);
  font-size: 15px;
  line-height: 1.75;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.28);
}

.pp-share__promise-label {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--midnight);
  color: var(--champagne);
  padding: 3px 10px;
  margin-bottom: 8px;
}

.pp-share__promise p {
  margin: 0;
}

/* ===== 04 用户权利 ===== */
.pp-rights__grid {
  display: grid;
  gap: 16px;
}

.pp-right-item {
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(11, 30, 54, 0.14);
  padding: 20px;
  display: flex;
  gap: 14px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.pp-right-item:hover {
  box-shadow: 8px 8px 0 rgba(0, 166, 81, 0.2);
  transform: translate(-1px, -1px);
}

.pp-right-item__idx {
  font-family: var(--font-num);
  font-weight: 700;
  color: var(--pitch);
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.pp-right-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--midnight);
}

.pp-right-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #53657A;
}

.pp-steps {
  margin-top: 32px;
  border-top: 3px solid var(--gold);
  background: var(--mist);
}

.pp-steps__item {
  padding: 18px 20px;
  border-bottom: 2px dashed #CFD8E3;
}

.pp-steps__tag {
  font-family: var(--font-num);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
}

.pp-steps__item p {
  margin: 6px 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #2A3B4D;
}

/* ===== 数据保护承诺 ===== */
.pp-promise-wrap {
  background: var(--mist);
  border-block: 3px solid var(--ink);
  padding-block: clamp(32px, 5vw, 56px);
}

.pp-promise {
  display: grid;
  gap: 20px;
  background: var(--white);
  border: 3px solid var(--pitch);
  box-shadow: 10px 10px 0 rgba(0, 166, 81, 0.18);
  padding: clamp(24px, 4vw, 36px);
}

.pp-promise__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 88px);
  line-height: 1;
  color: var(--pitch);
  white-space: nowrap;
}

.pp-promise__num span {
  font-size: 0.4em;
  color: var(--gold);
  font-family: var(--font-text);
  font-weight: 700;
}

.pp-promise__text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 10px;
  color: var(--midnight);
}

.pp-promise__text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #3D4E61;
}

/* ===== 05 联系我们 ===== */
.pp-contact__grid {
  display: grid;
  gap: 20px;
}

.pp-contact-card {
  padding: 24px 22px;
  background: var(--white);
  border: 3px solid var(--midnight);
  box-shadow: 8px 8px 0 var(--midnight);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-contact-card__type {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--pitch);
  font-weight: 700;
}

.pp-contact-card__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--midnight);
  word-break: break-word;
}

.pp-contact-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #526477;
}

.pp-contact__more {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--mist);
  border-left: 6px solid var(--gold);
  font-size: 14.5px;
}

.pp-contact__more p {
  margin: 0 0 6px;
}

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

.pp-contact__more a {
  font-weight: 600;
}

.pp-icp {
  font-family: var(--font-num);
  font-size: 13px;
  color: #64788B;
  letter-spacing: 0.02em;
}

/* ===== 高亮关键词 ===== */
.privacy-term {
  border-bottom: 2px dotted var(--pitch);
  color: var(--pitch-deep);
  cursor: help;
  padding: 0 2px;
  transition: background-color 0.15s ease;
}

.privacy-term:hover,
.privacy-term:focus-visible {
  background: rgba(0, 166, 81, 0.1);
}

.privacy-term--light {
  border-bottom-color: var(--champagne);
  color: var(--champagne);
}

.privacy-term--light:hover,
.privacy-term--light:focus-visible {
  background: rgba(232, 210, 137, 0.16);
}

/* ===== 媒体查询 ===== */
@media (min-width: 700px) {
  .pp-collect__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-share__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-rights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .pp-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
  }

  .pp-collect__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pp-share__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pp-rights__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pp-contact__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pp-use__list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .pp-promise {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 36px;
  }
}

@media (min-width: 1100px) {
  .pp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .pp-steps__item {
    border-right: 2px dashed #CFD8E3;
    border-bottom: 0;
  }

  .pp-steps__item:last-child {
    border-right: 0;
  }

  .pp-section__head {
    margin-bottom: 24px;
  }
}
