.policy-page {
  background:
    radial-gradient(circle at 85% 4%, rgba(56, 167, 245, 0.12), transparent 24rem),
    linear-gradient(180deg, #f7fbff 0, #fff 28rem);
}

.policy-header .nav-shell {
  min-height: 72px;
}

.policy-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-nav a {
  padding: 10px 12px;
  border-radius: 9px;
  color: #405469;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.policy-nav a:hover,
.policy-nav a[aria-current="page"] {
  color: var(--blue-700);
  background: var(--wash-blue);
}

.policy-main {
  padding: 78px 0 100px;
}

.policy-shell {
  width: min(1040px, calc(100% - 48px));
  margin-inline: auto;
}

.policy-hero {
  max-width: 780px;
  margin-bottom: 48px;
}

.policy-hero .eyebrow {
  margin-bottom: 18px;
}

.policy-hero h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 72px);
}

.policy-summary {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: #50657a;
  font-size: 13px;
  font-weight: 650;
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 54px;
}

.policy-toc {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.policy-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-900);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-toc a {
  display: block;
  padding: 6px 0;
  color: #5b6d80;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.policy-toc a:hover {
  color: var(--blue-700);
}

.policy-content {
  min-width: 0;
}

.policy-section {
  padding: 0 0 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.policy-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.policy-section h2 {
  margin-bottom: 16px;
  color: var(--navy-950);
  font-size: clamp(27px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.policy-section h3 {
  margin: 24px 0 9px;
  color: var(--navy-900);
  font-size: 18px;
  letter-spacing: -0.015em;
}

.policy-section p,
.policy-section li {
  color: #4e6175;
  font-size: 16px;
  line-height: 1.78;
}

.policy-section p {
  margin-bottom: 15px;
}

.policy-section ul,
.policy-section ol {
  margin: 12px 0 18px;
  padding-left: 23px;
}

.policy-section li + li {
  margin-top: 9px;
}

.policy-section a,
.support-card a,
.contact-panel a {
  color: var(--blue-700);
  font-weight: 680;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-note {
  padding: 20px 22px;
  border: 1px solid #cfe3f8;
  border-radius: 14px;
  background: var(--wash-blue);
}

.policy-note p:last-child {
  margin-bottom: 0;
}

.data-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 18px;
}

.data-card,
.support-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 37, 66, 0.055);
}

.data-card h3,
.support-card h3 {
  margin-top: 0;
}

.data-card p:last-child,
.support-card p:last-child {
  margin-bottom: 0;
}

.contact-panel {
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(140deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-lg);
}

.contact-panel h2,
.contact-panel h3 {
  color: #fff;
}

.contact-panel p,
.contact-panel li {
  color: #d5e4f2;
}

.contact-panel a {
  color: #8fdcff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-actions .button {
  color: var(--navy-950);
  background: #fff;
}

.contact-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.response-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.response-table th,
.response-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.response-table th {
  color: var(--navy-900);
  background: var(--wash);
  font-size: 13px;
}

.response-table td {
  color: #4e6175;
  font-size: 14px;
  line-height: 1.55;
}

.response-table tr:last-child td {
  border-bottom: 0;
}

.policy-footer .footer-bottom {
  min-height: 94px;
}

@media (max-width: 820px) {
  .policy-nav {
    gap: 2px;
  }

  .policy-nav a {
    padding: 9px 8px;
    font-size: 12px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .policy-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px 16px;
  }

  .policy-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .policy-main {
    padding: 52px 0 72px;
  }

  .policy-shell {
    width: min(100% - 30px, 1040px);
  }

  .policy-header .brand > span {
    display: none;
  }

  .policy-nav a:first-child {
    display: none;
  }

  .policy-hero h1 {
    font-size: 43px;
  }

  .policy-summary {
    font-size: 17px;
  }

  .policy-toc,
  .data-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .data-card,
  .support-card,
  .contact-panel {
    padding: 20px;
  }

  .response-table,
  .response-table tbody,
  .response-table tr,
  .response-table td {
    display: block;
    width: 100%;
  }

  .response-table thead {
    display: none;
  }

  .response-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .response-table tr:last-child {
    border-bottom: 0;
  }

  .response-table td {
    padding: 2px 0;
    border: 0;
  }

  .response-table td:first-child {
    color: var(--navy-900);
    font-weight: 760;
  }
}
