/* ── 152-ФЗ: чекбоксы согласия + cookie-баннер ── */

.consent{
  display:flex; gap:10px; align-items:flex-start;
  cursor:pointer; user-select:none;
  font-size:12px; line-height:1.45; color:#9fb4cc;
  margin:14px 0 0; text-align:left;
}
.consent__input{ position:absolute; opacity:0; width:0; height:0; }
.consent__box{
  flex-shrink:0; width:20px; height:20px; margin-top:1px;
  border:1.5px solid #3d5878; border-radius:5px;
  background:rgba(255,255,255,.04); position:relative;
  transition:background .15s, border-color .15s;
}
.consent__input:checked + .consent__box{
  background:#2e8fff; border-color:#2e8fff;
}
.consent__input:checked + .consent__box::after{
  content:""; position:absolute; left:6px; top:2px;
  width:5px; height:10px;
  border:solid #fff; border-width:0 2px 2px 0;
  transform:rotate(45deg);
}
.consent__input:focus-visible + .consent__box{
  outline:2px solid #2e8fff; outline-offset:2px;
}
.consent a{ color:#2e8fff; text-decoration:underline; }
.consent--error .consent__box{ border-color:#ff5a5a; }

/* заблокированная кнопка отправки */
.submit-form input[type="submit"]:disabled,
.submit-form button:disabled{
  opacity:.5; cursor:not-allowed;
}

/* ── Cookie-баннер (мягкий) ── */
.cookie{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:9000;
  max-width:560px; margin:0 auto;
  background:#0f2033; color:#e7eef6;
  border:1px solid #29465f; border-radius:14px;
  box-shadow:0 20px 50px -15px rgba(0,0,0,.6);
  padding:18px 20px;
  display:flex; flex-direction:column; gap:14px;
}
.cookie[hidden]{ display:none; }
.cookie__text{ margin:0; font-size:13px; line-height:1.5; color:#bcd0e4; }
.cookie__text a{ color:#2e8fff; text-decoration:underline; cursor:pointer; }
.cookie__actions{ display:flex; gap:10px; flex-wrap:wrap; }
.cookie__btn{
  flex:1; min-width:140px;
  padding:11px 16px; border-radius:10px; cursor:pointer;
  font:inherit; font-weight:700; font-size:14px;
  background:#2e8fff; color:#fff; border:0;
}
.cookie__btn:active{ transform:translateY(1px); }
