/* Product footer: enterprise-style external-link area, loaded last. */
:root {
  --hz-layout-max-width: 1480px;
  --hz-layout-gutter: clamp(.9rem, 2vw, 1.5rem);
}

.brand-nav .container-fluid,
.app-shell-inner {
  max-width: var(--hz-layout-max-width) !important;
}

.app-shell {
  padding-right: var(--hz-layout-gutter) !important;
  padding-left: var(--hz-layout-gutter) !important;
}

.app-footer {
  position: relative;
  padding: .2rem var(--hz-layout-gutter) 1.65rem;
  color: #5f7889;
}

.app-footer::before {
  position: absolute;
  right: 5%;
  bottom: 1rem;
  width: min(34rem, 55vw);
  height: 10rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 40%, rgba(17, 148, 195, .16), transparent 34%),
    radial-gradient(circle at 12% 76%, rgba(7, 91, 136, .10), transparent 32%);
  content: "";
}

.app-footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, .86fr) minmax(26rem, 1.42fr);
  gap: 1rem 2rem;
  max-width: var(--hz-layout-max-width);
  margin: 0 auto;
  padding: 1.18rem 1.35rem .95rem;
  overflow: hidden;
  border: 1px solid rgba(7, 91, 136, .14);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(247, 251, 253, .96) 54%, rgba(239, 249, 252, .94) 100%),
    radial-gradient(circle at 0 0, rgba(17, 148, 195, .18), transparent 22rem);
  box-shadow:
    0 14px 34px rgba(18, 67, 97, .08),
    inset 0 1px 0 rgba(255, 255, 255, .78);
}

.app-footer-inner::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #075b88, #12a3d6 38%, rgba(18, 163, 214, .12));
  content: "";
}

.app-footer-panel {
  position: relative;
  min-width: 0;
  padding: .15rem 0 .35rem;
}

.app-footer-kicker {
  color: #0c86b3;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.app-footer-title {
  display: flex;
  align-items: center;
  gap: .62rem;
  margin-top: .32rem;
  color: #123d56;
  font-size: 1.06rem;
  font-weight: 950;
  letter-spacing: .01em;
}

.app-footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.app-footer-desc {
  max-width: 28rem;
  margin-top: .45rem;
  color: #6c8494;
  font-size: .81rem;
  line-height: 1.58;
}

.app-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .7rem;
}

.app-footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: .24rem .58rem;
  border: 1px solid rgba(7, 91, 136, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #507084;
  font-size: .7rem;
  font-weight: 850;
}

.app-footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  justify-self: stretch;
  width: 100%;
  gap: .9rem 1.25rem;
}

.app-footer-group h6 {
  margin: 0 0 .5rem;
  color: #183f55;
  font-size: .82rem;
  font-weight: 950;
}

.app-footer-group a {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: .38rem;
  color: #5d7688;
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.app-footer-group a::after {
  margin-left: .28rem;
  color: #9ab0bd;
  font-size: .72rem;
  content: "↗";
  transition: transform .18s ease, color .18s ease;
}

.app-footer-group a:hover,
.app-footer-group a:focus {
  transform: translateX(2px);
  color: #075b88;
}

.app-footer-group a:hover::after,
.app-footer-group a:focus::after {
  transform: translate(1px, -1px);
  color: #1194c3;
}

.app-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .8rem;
  margin-top: .15rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(7, 91, 136, .10);
  color: #7a909e;
  font-size: .74rem;
}

.app-footer-bottom a {
  color: #087ca7;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.app-footer-bottom a:hover,
.app-footer-bottom a:focus {
  color: #075b88;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .app-footer {
    padding: .1rem var(--hz-layout-gutter) 1.25rem;
  }

  .app-footer-inner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 1.05rem 1rem .95rem;
    border-radius: 18px;
  }

  .app-footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .app-footer {
    padding-bottom: 6rem;
  }

  .app-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem .9rem;
  }

  .app-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .app-footer-columns {
    grid-template-columns: 1fr;
  }

  .app-footer-title {
    font-size: 1.02rem;
  }
}
