/* A40 canonical public nav only. No route/DB/form/search/payment logic. */
.a40-public-nav{
  height:86px;
  padding:0 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:sticky;
  top:0;
  z-index:999999;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(213,226,240,.92);
  box-shadow:0 10px 28px rgba(6,23,51,.08);
  backdrop-filter:blur(18px) saturate(150%);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
}
.a40-brand{
  width:300px;
  text-decoration:none;
  color:#061733;
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.a40-brand span{
  font-size:20px;
  font-weight:1000;
  letter-spacing:-.035em;
}
.a40-brand small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  color:#075da3;
}
.a40-menu{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  white-space:nowrap;
}
.a40-menu a{
  text-decoration:none;
  color:#061733;
  font-size:15px;
  font-weight:1000;
  padding:13px 2px 11px;
  border-bottom:3px solid transparent;
}
.a40-menu a:hover,
.a40-menu a.active{
  color:#0874ff;
  border-bottom-color:#0874ff;
}
.a40-admin{
  margin-left:auto;
  text-decoration:none;
  background:#061733;
  color:#fff !important;
  padding:15px 31px;
  border-radius:999px;
  font-size:15px;
  font-weight:1000;
  box-shadow:0 14px 28px rgba(6,23,51,.22);
}
@media(max-width:980px){
  .a40-public-nav{height:auto;padding:15px 18px;display:block}
  .a40-brand{width:auto;margin-bottom:12px}
  .a40-menu{position:static;transform:none;justify-content:flex-start;overflow:auto;gap:22px;padding-bottom:10px}
  .a40-admin{display:inline-flex;margin-top:8px}
}
