:root{
  --hg-primary:#0d6efd;
  --hg-dark:#0b1d33;
  --hg-light:#f8f9fa;
}
html,body{
  min-height:100%;
}
body{
  background:#f5f7fb;
}
.navbar-brand{
  letter-spacing:.08em;
}
.hero{
  background:linear-gradient(135deg, rgba(13,110,253,.95), rgba(11,29,51,.95));
  color:#fff;
  border-radius:1.25rem;
  padding:2rem;
  box-shadow:0 .75rem 1.5rem rgba(0,0,0,.12);
}
.card{
  border:0;
  border-radius:1rem;
  box-shadow:0 .5rem 1rem rgba(0,0,0,.06);
}
.page-title{
  font-weight:700;
}
.section-title{
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:1rem;
}
.placeholder-box{
  min-height:180px;
  border:2px dashed rgba(13,110,253,.25);
  border-radius:1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#6c757d;
  text-align:center;
  padding:1rem;
}
.list-clean{
  list-style:none;
  padding-left:0;
  margin-bottom:0;
}
.list-clean li{
  padding:.7rem 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.list-clean li:last-child{
  border-bottom:0;
}
.install-banner{
  display:none;
}
.offline-badge{
  display:none;
  position:fixed;
  right:1rem;
  bottom:1rem;
  z-index:9999;
}
.footer{
  background:var(--hg-dark);
  color:#fff;
}
.small-muted{
  color:#6c757d;
  font-size:.95rem;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.partner-item {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.partner-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}