.site-footer {
  background-color: #12163d;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nbnow-footer {
  font-size: 0.9rem;
}

.nbnow-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nbnow-footer a:hover,
.nbnow-footer a:focus {
  color: #f05144;
  text-decoration: none;
}

.nbnow-footer__top {
  padding: 3rem 1.5rem 2.5rem;
}

.nbnow-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.nbnow-footer__brand {
  max-width: 320px;
}

/* Same logo asset as header – consistent proportions */
.nbnow-footer__logo-img {
  display: block;
  max-width: 180px;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.nbnow-footer__tagline {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.nbnow-footer__description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.nbnow-footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.nbnow-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nbnow-footer__list li + li {
  margin-top: 0.4rem;
}

.nbnow-footer__list--contacts li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nbnow-footer__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}

.nbnow-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.5rem 1.5rem;
}

.nbnow-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: space-between;
}

.nbnow-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
}

.nbnow-footer__bottom-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.nbnow-footer__bottom-links a {
  font-size: 0.8rem;
}

@media (min-width: 600px) {
  .nbnow-footer__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

@media (min-width: 992px) {
  .nbnow-footer__grid {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  }

  .nbnow-footer__bottom-inner {
    flex-direction: row;
    align-items: center;
  }
}

