.bntic-appbar {
  position: relative;
  z-index: 1100;
  border-bottom: 1px solid #dce5ef;
  color: #172033;
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
}
.bntic-appbar *, .bntic-appbar *::before, .bntic-appbar *::after { box-sizing: border-box; }
.bntic-appbar__inner {
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 52px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bntic-appbar a { color: inherit; text-decoration: none; }
.bntic-appbar__brand { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.bntic-appbar__brand > span:not(.bntic-appbar__mark) { color: #f28c18; font-size: 15px; }
.bntic-appbar__brand strong { color: #102b55; }
.bntic-appbar__brand small { margin-left: 6px; color: #64748b; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.bntic-appbar__mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #1768c5, #172c78);
  font-weight: 900;
  box-shadow: 0 6px 14px -8px #0f4d9d;
}
.bntic-appbar__nav { display: flex; align-items: center; gap: 5px; }
.bntic-appbar__nav > a, .bntic-appbar__services > summary {
  padding: 8px 10px;
  border-radius: 8px;
  color: #42526a;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.bntic-appbar__services > summary::-webkit-details-marker { display: none; }
.bntic-appbar__nav > a:hover, .bntic-appbar__services > summary:hover,
.bntic-appbar__services[open] > summary { color: #13599f; background: #edf5ff; }
.bntic-appbar__account { border: 1px solid #cbd9ea; }
.bntic-appbar__services { position: relative; }
.bntic-appbar__menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  width: min(440px, calc(100vw - 24px));
  padding: 10px;
  border: 1px solid #d8e2ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 50px -26px rgba(15, 39, 73, .55);
}
.bntic-appbar__menu a { display: grid; gap: 2px; padding: 10px 12px; border-radius: 9px; }
.bntic-appbar__menu a:hover { background: #f1f7fd; }
.bntic-appbar__menu strong { color: #193354; font-size: 13px; }
.bntic-appbar__menu small { color: #718096; font-size: 11px; }
@media (max-width: 760px) {
  .bntic-appbar__inner { width: min(100% - 20px, 1120px); min-height: 48px; gap: 8px; }
  .bntic-appbar__brand small, .bntic-appbar__nav > a:first-child { display: none; }
  .bntic-appbar__nav > a, .bntic-appbar__services > summary { padding: 7px 8px; font-size: 12px; }
  .bntic-appbar__menu { right: -72px; grid-template-columns: 1fr; width: min(300px, calc(100vw - 20px)); }
}
