/* Единый header + footer (все публичные страницы). Светлая тема. */

.site-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
  color: #111;   /* перекрывает тёмный header { color:#fff } на контент-страницах */
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  flex: none;
}
.site-header .brand .brand-logo {
  width: 30px;
  height: 30px;
  background: #111;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  flex: none;
}
.site-header .brand .brand-name {
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}
.site-nav a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.site-nav a:hover {
  background: #f2f2f2;
  color: #111;
}
.site-header .site-auth {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.site-auth #user-bar {
  font-size: 13px;
  color: #555;
  white-space: nowrap;
}
.site-login {
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  white-space: nowrap;
}
.site-login:hover {
  background: #f5f5f5;
}

.site-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 28px 20px 20px;
  margin-top: 48px;
}
.site-footer .footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.site-footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}
.site-footer .footer-head {
  font-weight: 700;
  font-size: 13px;
  color: #111;
  margin-bottom: 4px;
}
.site-footer .footer-col a,
.site-footer .footer-bottom a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
}
.site-footer .footer-col a:hover,
.site-footer .footer-bottom a:hover {
  color: #111;
}
.site-footer .footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #888;
}
@media (max-width: 720px) {
  .site-nav {
    order: 3;
    width: 100%;
  }
}

/* On-prem: скрыть SaaS-поверхности (тарифы/B2B/маркетинг). Класс .onprem
   выставляет /js/tenant.js по edition из /config/public. */
.onprem .hide-saas { display: none !important; }
