/* =========================================================
   FOOTER
   ========================================================= */

#app-footer{
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--footer-bg);
}

footer.nx-footer{
  display: block;
  width: 100%;
  margin: 0 !important;
}

.nx-footer{
  padding: 48px 18px 20px;
  color: var(--footer-text);
  background:
    radial-gradient(900px 320px at 18% 0%, rgba(31,106,225,.20), transparent 58%),
    radial-gradient(900px 320px at 82% 0%, rgba(110,193,255,.14), transparent 60%),
    var(--footer-bg);
  border-top: 1px solid var(--footer-border);
}

.nx-footer__inner{
  display: grid;
  grid-template-columns: 1.4fr 1.6fr;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.nx-footer__brand{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nx-footer__logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}

.nx-footer__name{
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
}

.nx-footer__desc{
  max-width: 420px;
  margin: 6px 0 0;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.45;
}

.nx-footer__mail a{
  display: inline-block;
  margin-top: 8px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}

.nx-footer__cols{
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 18px;
}

.nx-footer__cols h4{
  margin: 0 0 10px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.nx-footer__cols a{
  display: block;
  padding: 4px 0;
  color: var(--footer-muted);
  font-size: 14px;
  transition: color .15s ease, transform .15s ease;
}

.nx-footer__cols a:hover{
  color: #fff;
  transform: translateY(-1px);
}

.nx-footer__bottom{
  max-width: 1120px;
  margin: 22px auto 0;
  padding-top: 16px;
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 940px){
  .nx-footer__inner{
    grid-template-columns: 1fr;
  }

  .nx-footer__cols{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
