/* NexCore Patch 3.55b · einheitlicher Rechts- und Kundeninformationsfooter */
.nc-legal-footer {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: clamp(34px, 5vw, 72px);
  border-top: 1px solid rgba(76, 181, 232, .18);
  background:
    linear-gradient(90deg, rgba(52, 202, 255, .035), transparent 34%, rgba(159, 89, 255, .035)),
    rgba(4, 10, 18, .84);
  box-shadow: 0 -22px 70px rgba(0, 0, 0, .16);
  color: #93a8bd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nc-legal-footer__inner {
  width: min(1480px, calc(100% - 48px));
  min-height: 86px;
  margin-inline: auto;
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(420px, 1.5fr) auto;
  align-items: center;
  gap: 18px 28px;
}

.nc-legal-footer__brand {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.nc-legal-footer__brand strong {
  color: #edf7ff;
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: -.01em;
}

.nc-legal-footer__brand span {
  color: #71879d;
  font-size: .72rem;
}

.nc-legal-footer__links {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 16px;
}

.nc-legal-footer__links a {
  color: #8fa7bd;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, text-shadow .2s ease;
}

.nc-legal-footer__links a:hover,
.nc-legal-footer__links a:focus-visible {
  color: #dff8ff;
  outline: none;
  text-shadow: 0 0 16px rgba(62, 218, 255, .34);
}

.nc-legal-footer__payments {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #7f97ad;
  font-size: .7rem;
  font-weight: 750;
  white-space: nowrap;
}

.nc-legal-footer__payments::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7a73ff;
  box-shadow: 0 0 14px rgba(122, 115, 255, .7);
}

.nc-legal-footer__lang--de { display: none; }
html[lang^="de"] .nc-legal-footer__lang--de { display: flex; }
html[lang^="de"] .nc-legal-footer__lang--en { display: none; }
html:not([lang^="de"]) .nc-legal-footer__lang--en { display: flex; }

@media (max-width: 980px) {
  .nc-legal-footer__inner {
    grid-template-columns: 1fr auto;
  }
  .nc-legal-footer__links {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .nc-legal-footer__inner {
    width: min(100% - 28px, 1480px);
    grid-template-columns: 1fr;
    align-items: start;
    padding: 22px 0;
  }
  .nc-legal-footer__links,
  .nc-legal-footer__payments {
    justify-content: flex-start;
  }
  .nc-legal-footer__payments { white-space: normal; }
}
