/* === Фирменная кнопка Униксервиса === */
.svc-pill{
  box-sizing:border-box;
  display:flex; align-items:center; justify-content:center;
  width:100%; max-width:360px; min-height:56px;
  padding:14px 22px;
  border-radius:999px;
  background:#3f3f3f;
  color:#fff !important;   /* текст всегда белый */
  border:1px solid rgba(255,255,255,.08);
  font-family:'TildaSans',system-ui,Roboto,Arial,sans-serif;
  font-size:18px; font-weight:600; line-height:1.2;
  text-decoration:none; text-align:center;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.svc-pill:hover{
  border-color:#e2b847;
  box-shadow:0 6px 14px rgba(0,0,0,.4);
  transform:translateY(-2px);
}
.svc-pill:active{ transform:translateY(0); }
.svc-pill:focus-visible{
  outline:2px solid #e2b847;
  outline-offset:3px;
}
