.privacy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--surface-soft);
}

.privacy-header {
  border-bottom: 1px solid var(--border-brand);
  background: rgba(255, 255, 255, .96);
}

.privacy-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.privacy-back-link {
  color: var(--blue);
  font-size: .84rem;
  font-weight: 700;
}

.privacy-main {
  flex: 1;
  padding: clamp(38px, 7vw, 80px) 0;
  background: linear-gradient(180deg, var(--brand-yellow) 0 230px, var(--surface-soft) 230px 100%);
}

.privacy-document {
  width: min(780px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--border-brand);
  border-top: 10px solid var(--brand-blue);
  border-radius: 30px;
  background: var(--brand-white);
  box-shadow: 0 24px 70px rgba(23, 61, 125, .1);
}

.privacy-title {
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 3px solid var(--brand-yellow);
}

.privacy-title h1 {
  margin: 16px 0 7px;
  color: var(--navy);
  font-family: var(--font-primary);
  font-weight: 820;
  font-size: clamp(2.7rem, 7vw, 4.6rem);
  letter-spacing: -.04em;
  line-height: 1.02;
}

.privacy-title p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.privacy-document section + section {
  margin-top: 32px;
}

.privacy-document h2 {
  margin: 0 0 11px;
  color: var(--navy);
  font-family: var(--font-primary);
  font-weight: 760;
  font-size: 1.45rem;
  line-height: 1.25;
}

.privacy-document p,
.privacy-document li {
  color: var(--text-body);
}

.privacy-document p {
  margin: 0 0 12px;
}

.privacy-document ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.privacy-document li + li {
  margin-top: 6px;
}

.privacy-pending-section {
  padding: 20px;
  border: 1px solid rgba(41, 87, 164, .24);
  border-left: 6px solid var(--brand-yellow);
  border-radius: 16px;
  background: var(--brand-yellow-soft);
}

.privacy-pending {
  margin-bottom: 0 !important;
  color: var(--brand-blue-deep) !important;
  font-weight: 700;
}

.privacy-footer {
  padding: 21px 0;
  color: rgba(255, 255, 255, .72);
  background: var(--brand-blue);
  font-size: .78rem;
}

.privacy-footer .container,
.privacy-footer .container > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.privacy-footer p {
  margin: 0;
}

.privacy-footer .privacy-footer-brand { display: flex; align-items: center; justify-content: flex-start; gap: 12px; }
.privacy-footer-brand img { width: 76px; height: 38px; object-fit: contain; object-position: left; }

.privacy-footer a {
  color: var(--white);
  font-weight: 600;
}

.privacy-back-link:hover,
.privacy-back-link:focus-visible,
.privacy-footer a:hover,
.privacy-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 560px) {
  .privacy-header-inner {
    min-height: 70px;
  }

  .privacy-back-link {
    max-width: 95px;
    text-align: right;
    line-height: 1.25;
  }

  .privacy-document {
    width: min(100% - 24px, 780px);
    padding: 27px 20px;
    border-radius: 24px;
  }

  .privacy-footer .container {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }
}
