/* ─── специфика страницы Политики конфиденциальности ─── */
.policy-table {
  width: 100%; max-width: 820px;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.policy-table thead tr { background: var(--bp); color: #fff; }
.policy-table thead th {
  padding: 12px 20px; text-align: left;
  font-weight: 600; letter-spacing: .03em; font-size: 13px;
}
.policy-table tbody tr {
  background: var(--n950);
  border-bottom: 1px solid var(--border);
}
.policy-table tbody tr:nth-child(even) { background: var(--n900); }
.policy-table tbody td {
  padding: 12px 20px; color: var(--text);
  vertical-align: top; line-height: 1.6;
}
.policy-table tbody td:first-child {
  font-weight: 600; color: var(--bi);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}

.operator-card {
  max-width: 820px;
  background: var(--n950);
  border: 1px solid var(--border);
  border-left: 4px solid var(--bp);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  font-size: 14px;
}
.operator-card .oc-row { display: contents; }
.operator-card .oc-label {
  color: var(--g6); font-weight: 600;
  font-size: 12px; letter-spacing: .04em;
  text-transform: uppercase; padding-top: 2px;
}
.operator-card .oc-val { color: var(--text); }
.oc-placeholder {
  color: var(--bn); font-style: italic; font-size: 12px;
}

.consent-box {
  max-width: 820px;
  background: rgba(29,78,216,.04);
  border: 1.5px dashed rgba(29,78,216,.3);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 24px 0;
}
.consent-box-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bp); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.consent-box-title::before {
  content: '✔';
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--bp); color: #fff;
  border-radius: 4px; font-size: 11px;
}
.consent-box p {
  margin-bottom: 10px; font-size: 14px;
  color: var(--text); max-width: none;
}
.consent-box p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .operator-card { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .policy-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-y: visible;
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 100%;
  }
  .policy-table th { min-width: 120px; }
  .policy-table td { min-width: 120px; }
  .policy-table tbody td:first-child {
    white-space: nowrap;
    min-width: auto;
  }
}
