.page-privacy {
  background-color: var(--c-navy);
  color: var(--c-text);
  min-height: 100vh;
}

.pp-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 52px;
  background-color: var(--c-navy);
  background-image:
    linear-gradient(rgba(35, 53, 84, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 53, 84, 0.35) 1px, transparent 1px);
  background-size: 28px 28px;
  border-bottom: 4px solid var(--c-green);
}

.pp-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 77, 109, 0.12) 50%);
  pointer-events: none;
}

.pp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.pp-hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pp-breadcrumb {
  margin-bottom: 22px;
}

.pp-kicker {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--c-green);
  margin-bottom: 12px;
}

.pp-hero h1 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-white);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  max-width: 640px;
}

.pp-lead {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--c-text);
  margin: 0 0 28px;
  max-width: 580px;
}

.pp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pp-hero-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pp-shield-hero {
  width: 132px;
  height: 132px;
  filter: drop-shadow(0 0 28px rgba(41, 244, 154, 0.18));
}

.pp-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.pp-hero-stat {
  background: rgba(17, 34, 64, 0.72);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.pp-hero-stat:hover {
  border-color: var(--c-green);
  background: rgba(41, 244, 154, 0.04);
}

.pp-hero-num {
  display: block;
  font-family: var(--font-num);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-green);
  white-space: nowrap;
}

.pp-hero-num em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--c-text);
  margin-left: 2px;
  letter-spacing: 0;
}

.pp-hero-label {
  display: block;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--c-dim);
  margin-top: 6px;
}

.pp-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0 96px;
}

.pp-policy-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.pp-clause {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 18px;
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-border);
  border-radius: var(--radius-lg);
  background: var(--c-navy-2);
  scroll-margin-top: 88px;
  transition: border-color 0.3s var(--ease), border-left-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.pp-clause:hover {
  border-color: rgba(41, 244, 154, 0.4);
  border-left-color: var(--c-green);
  box-shadow: var(--shadow-green);
  transform: translateX(6px);
}

.pp-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  font-family: var(--font-num);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--c-red);
  background: rgba(255, 77, 109, 0.08);
  border: 1px solid rgba(255, 77, 109, 0.18);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.pp-clause:hover .pp-num {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
}

.pp-clause-inner {
  flex: 1;
  min-width: 0;
}

.pp-clause-head h2 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 6px;
  line-height: 1.25;
}

.pp-clause-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--c-dim);
  margin: 0 0 16px;
}

.pp-clause-body {
  min-width: 0;
}

.pp-collect-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.pp-collect-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--c-border);
}

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

.pp-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(41, 244, 154, 0.08);
  color: var(--c-green);
}

.pp-collect-item h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 0 0 4px;
}

.pp-collect-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-dim);
  margin: 0;
  max-width: 62ch;
}

.pp-context-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  background: rgba(17, 34, 64, 0.5);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--c-green);
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--c-dim);
}

.pp-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(41, 244, 154, 0.06);
  border: 1px solid rgba(41, 244, 154, 0.22);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-text);
  margin: 0 0 16px;
}

.pp-guarantee::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: var(--shadow-green);
  margin-top: 8px;
}

.pp-use-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pp-use-card {
  background: rgba(10, 25, 41, 0.5);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.pp-use-card:hover {
  border-color: var(--c-green);
  background: rgba(41, 244, 154, 0.03);
  transform: translateY(-2px);
}

.pp-use-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-green);
  background: rgba(41, 244, 154, 0.08);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.pp-use-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--c-dim);
}

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

.pp-store-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(10, 25, 41, 0.4);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.pp-store-list li:hover {
  border-color: rgba(41, 244, 154, 0.35);
  background: rgba(41, 244, 154, 0.03);
}

.pp-store-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: var(--font-num);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-red);
  background: rgba(255, 77, 109, 0.08);
}

.pp-store-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}

.pp-store-list p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--c-dim);
}

.pp-rights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pp-right {
  background: rgba(10, 25, 41, 0.4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.pp-right:hover {
  border-color: var(--c-green);
  background: rgba(41, 244, 154, 0.03);
  transform: translateY(-2px);
}

.pp-right-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 77, 109, 0.1);
  color: var(--c-red);
  flex-shrink: 0;
}

.pp-right h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 0;
}

.pp-right p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--c-dim);
}

.pp-rights-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(255, 77, 109, 0.06);
  border-left: 3px solid var(--c-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--c-dim);
}

.pp-rights-note p {
  margin: 0;
}

.pp-note-icon {
  color: var(--c-red);
  flex-shrink: 0;
  margin-top: 3px;
}

.pp-side {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pp-side-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  margin-bottom: 16px;
  background: var(--c-navy-2);
}

.pp-security-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pp-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(to top, rgba(10, 25, 41, 0.92), transparent);
  color: var(--c-text);
  font-size: 0.82rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.pp-summary-card,
.pp-contact-card,
.pp-related-card {
  background: var(--c-navy-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 16px;
  transition: border-color 0.25s var(--ease);
}

.pp-summary-card:hover,
.pp-contact-card:hover,
.pp-related-card:hover {
  border-color: rgba(41, 244, 154, 0.3);
}

.pp-side-title {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-green);
  line-height: 1.4;
}

.pp-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pp-sum;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pp-summary-list li {
  counter-increment: pp-sum;
  position: relative;
  padding: 10px 0 10px 36px;
  border-bottom: 1px dashed var(--c-border);
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--c-dim);
}

.pp-summary-list li:last-child {
  border-bottom: none;
}

.pp-summary-list li::before {
  content: counter(pp-sum, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-green);
  background: rgba(41, 244, 154, 0.1);
  border-radius: 50%;
}

.pp-summary-list li span {
  display: block;
  font-weight: 600;
  color: var(--c-text);
}

.pp-contact-card {
  background: linear-gradient(140deg, var(--c-navy-2), rgba(17, 34, 64, 0.85));
}

.pp-contact-tip {
  margin: 0 0 14px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--c-dim);
}

.pp-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--c-border);
  font-size: 0.88rem;
}

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

.pp-contact-row span {
  color: var(--c-dim);
  flex-shrink: 0;
  padding-top: 1px;
}

.pp-contact-row strong {
  color: var(--c-text);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
  word-break: break-all;
}

.pp-related-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.pp-related-links li {
  border-bottom: 1px dashed var(--c-border);
}

.pp-related-links li:last-child {
  border-bottom: none;
}

.pp-related-links a {
  display: block;
  padding: 12px 0;
  color: var(--c-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.pp-related-links a:hover {
  color: var(--c-green);
  padding-left: 8px;
}

.pp-hl {
  color: var(--c-green);
  font-weight: 600;
}

.pp-back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  background: var(--c-navy-2);
  border: 1px solid var(--c-border);
  color: var(--c-dim);
  font-size: 0.82rem;
  font-family: var(--font-body);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pp-back-top:hover {
  color: var(--c-green);
  border-color: var(--c-green);
  background: rgba(41, 244, 154, 0.06);
  box-shadow: var(--shadow-green);
}

.pp-back-top svg {
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .pp-hero h1 {
    font-size: 2.8rem;
  }

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

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

  .pp-hero-stats {
    gap: 14px;
  }

  .pp-hero-stat {
    padding: 16px 12px;
  }

  .pp-hero-num {
    font-size: 1.7rem;
  }
}

@media (min-width: 992px) {
  .pp-hero {
    padding: 64px 0 72px;
  }

  .pp-hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
  }

  .pp-hero h1 {
    font-size: 3.4rem;
  }

  .pp-lead {
    font-size: 1.08rem;
  }

  .pp-hero-side {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }

  .pp-shield-hero {
    width: 176px;
    height: 176px;
  }

  .pp-hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    width: auto;
    flex: 1;
  }

  .pp-hero-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 18px;
    text-align: left;
  }

  .pp-hero-num {
    font-size: 1.5rem;
  }

  .pp-hero-label {
    margin-top: 0;
    text-align: right;
    max-width: 90px;
  }

  .pp-body {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    padding: 44px 0 110px;
    align-items: start;
  }

  .pp-clause {
    padding: 32px 28px;
    gap: 22px;
  }

  .pp-num {
    width: 58px;
    height: 58px;
    font-size: 1.7rem;
  }

  .pp-clause-head h2 {
    font-size: 1.8rem;
  }

  .pp-clause-desc {
    font-size: 0.95rem;
  }

  .pp-side {
    gap: 0;
  }
}

@media (min-width: 1200px) {
  .pp-hero-grid {
    gap: 72px;
  }

  .pp-hero-side {
    gap: 30px;
  }

  .pp-shield-hero {
    width: 200px;
    height: 200px;
  }

  .pp-body {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pp-clause,
  .pp-use-card,
  .pp-right,
  .pp-store-list li,
  .pp-back-top {
    transition: none;
  }

  .pp-clause:hover,
  .pp-use-card:hover,
  .pp-right:hover {
    transform: none;
  }
}
