#cookies,
#personal-data {
  max-width: clamp(320px, 90%, 2000px);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) clamp(16px, 5vw, 64px) clamp(40px, 8vw, 120px);
}
.payments {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 60px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--earth);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: clamp(32px, 5vw, 72px);
  position: relative;
  padding-bottom: clamp(16px, 2vw, 28px);
}
.payments::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(32px, 5vw, 64px);
  height: clamp(2px, 1vw, 4px);
  background: var(--bark);
}
.doc {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 48px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--earth);
  text-transform: uppercase;
  margin: clamp(32px, 4vw, 56px) 0 clamp(16px, 2vw, 24px);
  position: relative;
  padding-bottom: clamp(8px, 1vw, 16px);
}
.doc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(20px, 2vw, 50px);
  height: clamp(1px, 1vw, 3px);
  background: var(--bark);
}
.point {
  font-family: var(--sans);
  font-size: clamp(14px, 1vw, 28px);
  font-weight: 300;
  color: var(--earth);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: clamp(12px, 2vw, 20px);
}
.point strong {
  font-weight: 500;
  color: var(--earth);
  letter-spacing: 0.06em;
}
.coul {
  list-style: none;
  margin-bottom: clamp(16px, 3vw, 28px);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 10px);
}
.coul .ulli {
  font-size: clamp(14px, 1vw, 28px);
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.04em;
  line-height: 1.7;
  padding-left: clamp(14px, 2vw, 28px);
  position: relative;
}
.coul .ulli::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bark);
  font-weight: 400;
}
.cook-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: clamp(24px, 4vw, 48px);
  font-size: clamp(14px, 1vw, 28px);
  font-family: var(--sans);
}
.cook-table thead tr { border-bottom: 2px solid var(--earth); }
.cook-table thead th.name_cook {
  font-size: clamp(14px, 1vw, 28px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: left;
  padding: 0 clamp(8px, 2vw, 20px) clamp(14px, 1vw, 16px) clamp(8px, 2vw, 20px);
}
.cook-table thead th.name_cook:last-child { padding-right: 0; }
.cook-table tbody tr {
  border-bottom: 1px solid var(--sand);
  transition: background 0.2s ease;
}
.cook-table tbody tr:hover { background: rgba(213, 214, 210, 0.25); }
.cook-table tbody td.item_cookie {
  padding: clamp(8px, 1vw, 16px) clamp(8px, 2vw, 16px);
  color: var(--earth);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.5;
  vertical-align: top;
  font-size: clamp(14px, 1vw, 28px);
}
.cook-table tbody td.item_cookie:first-child {
  font-family: 'Courier New', monospace;
  font-size: clamp(16px, 1vw, 30px);
  color: var(--bark);
  font-weight: 400;
  white-space: nowrap;
}
.browser-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  flex-direction: column;
}
.browser-list li {
  display: flex;
  align-items: center;
}
.browser-list li a {
  font-size: clamp(12px, 1vw, 26px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
  padding: clamp(4px, 1vw, 8px) 0;
  position: relative;
  transition: color 0.25s ease;
}
.browser-list li a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.browser-list li a:hover { color: var(--earth); }
.browser-list li a:hover::after { transform: scaleX(1); }
.browser-list li a i {
  font-size: clamp(12px, 1vw, 26px);
  color: var(--sand);
  transition: color 0.25s ease;
  width: clamp(18px, 1vw, 28px);
  text-align: center;
  flex-shrink: 0;
}
.browser-list li a:hover i { color: var(--bark) !important; }
#cookies .point + .point,
#cookies .coul + .point { position: relative; }
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#cookies > * { animation: fadeUp 0.6s ease both; }
#cookies > *:nth-child(1) { animation-delay: 0.05s; }
#cookies > *:nth-child(2) { animation-delay: 0.12s; }
#cookies > *:nth-child(3) { animation-delay: 0.18s; }
#cookies > *:nth-child(4) { animation-delay: 0.24s; }
#cookies > *:nth-child(5) { animation-delay: 0.30s; }
#cookies > *:nth-child(6) { animation-delay: 0.36s; }
#cookies > *:nth-child(7) { animation-delay: 0.42s; }
#cookies > *:nth-child(8) { animation-delay: 0.48s; }
#cookies > *:nth-child(9) { animation-delay: 0.54s; }
#cookies > *:nth-child(10) { animation-delay: 0.60s; }
.utv {
  font-family: var(--serif);
  font-size: clamp(14px, 1vw, 24px);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--stone);
  text-transform: uppercase;
  line-height: 1.6;
  white-space: pre-line;
  margin-bottom: clamp(32px, 4vw, 52px);
  padding: clamp(16px, 2vw, 24px);
  border-left: 2px solid var(--bark);
  background: rgba(213, 214, 210, 0.2);
}
.adres {
  font-style: normal;
  display: block;
  margin-top: 16px;
  padding: 20px 24px;
  border-left: 1px solid var(--sand);
  background: rgba(213, 214, 210, 0.12);
  line-height: 1.8;
  margin-bottom: clamp(12px, 2vw, 20px);
}
.adres .point {
  font-size: clamp(14px, 1vw, 28px);
  margin-bottom: clamp(6px, 1vw, 8px);
  color: var(--stone);
}
.adres .point:last-child { margin-bottom: 0; }
.adres_p {
  color: var(--bark);
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  display: inline;
}
.adres_p::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.adres_p:hover::after { transform: scaleX(1); }
#personal-data .point:not([class*="1."]):not([class*="2."]) { padding-left: 0; }
#personal-data .doc { margin-top: clamp(40px, 6vw, 60px); }
#personal-data .doc:first-of-type { margin-top: clamp(20px, 2vw, 40px); }
.policy-footer {
  max-width: 960px;
  font-size: clamp(10px, 0.8vw, 20px);
  margin-bottom: clamp(24px, 3vw, 72px);
  padding: 0 clamp(16px, 3vw, 52px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 16px;
}
.policy-footer::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--bark);
  flex-shrink: 0;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#personal-data > * { animation: fadeUp 0.6s ease both; }
#personal-data > *:nth-child(1)  { animation-delay: 0.05s; }
#personal-data > *:nth-child(2)  { animation-delay: 0.10s; }
#personal-data > *:nth-child(3)  { animation-delay: 0.15s; }
#personal-data > *:nth-child(4)  { animation-delay: 0.20s; }
#personal-data > *:nth-child(5)  { animation-delay: 0.25s; }
#personal-data > *:nth-child(6)  { animation-delay: 0.30s; }
#personal-data > *:nth-child(7)  { animation-delay: 0.35s; }
#personal-data > *:nth-child(8)  { animation-delay: 0.40s; }
#personal-data > *:nth-child(9)  { animation-delay: 0.45s; }
#personal-data > *:nth-child(10) { animation-delay: 0.50s; }

/* ── MOBILE ── */
@media (min-width:601px) and (max-width:1000px){
  .cook-table thead { display: none; }
  .cook-table tbody tr {
    display: block;
    border: 1px solid var(--sand);
    margin-bottom: 16px;
    padding: 12px;
  }
  .cook-table tbody td.item_cookie {
    display: block;
    padding: 6px 0;
    border: none;
  }
  .cook-table tbody td.item_cookie::before {
    content: attr(data-label);
    display: block;
    font-size: clamp(10px, 2.5vw, 13px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 4px;
  }
  .cook-table tbody td.item_cookie:first-child {
    white-space: normal;
    font-size: clamp(14px, 3vw, 18px);
  }
}
@media (max-width: 600px) {
  .cook-table thead { display: none; }
  .cook-table tbody tr {
    display: block;
    border: 1px solid var(--sand);
    margin-bottom: 16px;
    padding: 12px;
  }
  .cook-table tbody td.item_cookie {
    display: block;
    padding: 6px 0;
    border: none;
  }
  .cook-table tbody td.item_cookie::before {
    content: attr(data-label);
    display: block;
    font-size: clamp(10px, 2.5vw, 13px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 4px;
  }
  .cook-table tbody td.item_cookie:first-child {
    white-space: normal;
    font-size: clamp(14px, 3vw, 18px);
  }
  .browser-list { flex-direction: column; }
  /*#cookies,
  #personal-data { padding-top: clamp(60px, 12vw, 80px); }*/
  .payments { font-size: clamp(16px, 4vw, 22px); }
  .doc {
    font-size: clamp(13px, 3.5vw, 16px);
    margin: clamp(20px, 4vw, 30px) 0 clamp(10px, 3vw, 16px);
  }
  .utv {
    font-size: 13px;
    padding: 18px 20px;
  }
  .adres { padding: 16px 18px; }
  .policy-footer {
    padding: 0 20px;
    margin-bottom: 20px;
    font-size: 9px;
  }
}