/* B-001a-13: Footer kompakter — Basis 16px, lh ~1.4, engere Abstände; Hover-Logik unverändert */
.native-footer {
  --native-footer-bg: #0082CB;
  --nf-bg: var(--native-footer-bg);
  --nf-fg: #ffffff;
  --nf-fg-muted: rgba(255, 255, 255, 0.85);
  --nf-border: rgba(255, 255, 255, 0.18);
  --nf-btn-bg: #ffffff;
  --nf-btn-fg: #0082CB;
  --nf-maxw: 1200px;

  background: var(--nf-bg);
  color: var(--nf-fg);
  font-size: 16px;
  line-height: 1.4;
}

.native-footer a {
  color: inherit;
  text-decoration: none;
}

/* A + E: Footer-Menü und Legal – näher an Header-Logik (kräftiger, keine Linie) */
.native-footer__menu a:hover,
.native-footer__menu a:focus-visible,
.native-footer__legal a:hover,
.native-footer__legal a:focus-visible {
  font-weight: 600;
  text-decoration: none;
  color: var(--nf-fg);
}

/* tel/mailto im Fliesstext: keine sichtbare Hover-/Fokus-Aenderung (Navigation = Menue-/Legal-Links).
   Support-Hotline, Support-E-Mail, Buero-Telefon, Team-Mail - optisch stabil, nur Cursor. */
.native-footer__text a[href^="tel:"],
.native-footer__text a[href^="mailto:"],
.native-footer__text a[href^="tel:"]:hover,
.native-footer__text a[href^="tel:"]:focus,
.native-footer__text a[href^="tel:"]:focus-visible,
.native-footer__text a[href^="tel:"]:active,
.native-footer__text a[href^="tel:"]:visited,
.native-footer__text a[href^="mailto:"]:hover,
.native-footer__text a[href^="mailto:"]:focus,
.native-footer__text a[href^="mailto:"]:focus-visible,
.native-footer__text a[href^="mailto:"]:active,
.native-footer__text a[href^="mailto:"]:visited {
  font-weight: inherit;
  text-decoration: none;
  color: inherit;
  outline: none;
  outline-offset: 0;
  box-shadow: none;
}

/* CSS-001b: Footer-Fokusring nicht auf Tel-/Mailto (Menue/Legal/Button unveraendert) */
.native-footer a[href^="tel:"]:focus,
.native-footer a[href^="tel:"]:focus-visible,
.native-footer a[href^="mailto:"]:focus,
.native-footer a[href^="mailto:"]:focus-visible {
  outline: none;
  outline-offset: 0;
  box-shadow: none;
}

.native-footer :focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.native-footer__inner {
  max-width: var(--nf-maxw);
  margin: 0 auto;
  padding: 34px 18px 24px;
}

.native-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.native-footer__col {
  min-width: 0;
}

.native-footer__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.35;
}

.native-footer__text {
  margin: 0;
  color: var(--nf-fg-muted);
  font-size: inherit;
  line-height: 1.4;
}

.native-footer__text strong {
  color: var(--nf-fg);
  font-weight: 700;
}

.native-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.native-footer__menus {
  display: grid;
  gap: 14px;
}

.native-footer__menu-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 7px;
  color: var(--nf-fg);
  line-height: 1.35;
}

.native-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.native-footer__menu a {
  line-height: 1.4;
}

.native-footer__button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--nf-btn-bg);
  color: var(--nf-btn-fg);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  line-height: 1.2;
  text-align: center;
  min-height: 44px;
}

.native-footer__button,
.native-footer__button * {
  color: var(--nf-btn-fg);
}

.native-footer__button:hover,
.native-footer__button:focus-visible {
  text-decoration: none;
  filter: brightness(0.98);
}

.native-footer__button-line {
  display: block;
}

.native-footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.native-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.native-footer__social-link:hover,
.native-footer__social-link:focus-visible {
  text-decoration: none;
}

.native-footer__linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
  transform: translateY(-0.5px);
  color: var(--nf-btn-fg);
}

.native-footer__social-link:hover .native-footer__linkedin-icon,
.native-footer__social-link:focus-visible .native-footer__linkedin-icon {
  filter: brightness(0.98);
}

.native-footer__bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--nf-border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: flex-end;
  font-size: 15px;
  line-height: 1.35;
}

.native-footer__legal a {
  color: var(--nf-fg-muted);
}

@media (min-width: 900px) {
  .native-footer__top {
    grid-template-columns: 1.05fr 1fr 1.45fr;
    gap: 32px;
  }

  .native-footer__menus {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 899.98px) {
  .native-footer__bottom {
    justify-content: flex-start;
  }
}

