/* fedv-footer.css */

.mfooter{
  /* Fuhr-EDV konforme, helle Blauabstufung */
  --footer-bg:linear-gradient(60deg,#d0ddf7 0%,#82a9ff 50%,#0028a1 100%);
  --footer-panel:#f4f7ff;

  --footer-text:#0b1220;
  --footer-muted:#4c5b73;

  --footer-link:#0b1220;
  --footer-link-hover:#0f2fa8;

  --footer-focus:rgba(27,71,218,.45);
  --footer-radius:16px;
  --footer-max:1320px;
  --footer-border:rgba(15,23,42,.12);
}

.mfooter, .mfooter *{ box-sizing:border-box; }

.mfooter{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:64px 0 28px;
  background:var(--footer-bg);
  color:var(--footer-text);
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.mfooter a{
  color:var(--footer-link);
  text-decoration:none;
  text-underline-offset:4px;
}
.mfooter a:hover{
  color:var(--footer-link-hover);
  text-decoration:underline;
}
.mfooter a:focus-visible{
  outline:3px solid var(--footer-focus);
  outline-offset:3px;
  border-radius:8px;
  text-decoration:underline;
}

.mfooter .wrap{
  max-width:var(--footer-max);
  margin:0 auto;
  padding:0 24px;
}

.mfooter-top{
  background:var(--footer-panel);
  padding:38px 36px;
  border-radius:var(--footer-radius);
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

.mfooter-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:32px;
  align-items:start;
}

.mfooter h2{
  font-size:17px;
  margin:0 0 14px;
  color:#0b1220;
  letter-spacing:.2px;
}

.mfooter p{
  margin:0 0 14px;
  color:var(--footer-muted);
  line-height:1.7;
  font-size:15px;
}

.mfooter ul{ list-style:none; padding:0; margin:0; }
.mfooter li{ margin:10px 0; font-size:15px; color:var(--footer-muted); }

.brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  margin-bottom:14px;
}

.logo{ width:240px; max-width:100%; }
.logo img{
  width:100%;
  height:auto;
  display:block;
}

.brand span{
  font-size:15px;
  color:var(--footer-muted);
}

.pill{
  display:flex;
  gap:12px;
  padding:14px;
  border:1px solid var(--footer-border);
  background:#ffffff;
  font-size:15px;
  border-radius:14px;
}
.pill + .pill{ margin-top:12px; }

.pill .ico{
  width:20px;
  color:#1b47da;
  flex:0 0 auto;
  line-height:1.2;
}

.social{
  display:flex;
  gap:12px;
  margin-top:16px;
  flex-wrap:wrap;
}
.social a{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--footer-border);
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#1b47da;
}
.social a:hover{
  background:#eef2ff;
}
.social svg{ width:20px; height:20px; fill:currentColor; }

.mfooter-bottom{
  margin:22px 0 0;
  padding-top:18px;
  border-top:1px solid var(--footer-border);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px 18px;
  font-size:14px;
  color:var(--footer-muted);
}

.mfooter-bottom nav{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

@media(max-width:1100px){
  .mfooter-grid{ grid-template-columns:1fr 1fr; }
}

@media(max-width:560px){
  .mfooter-grid{ grid-template-columns:1fr; }
  .mfooter-bottom{ flex-direction:column; align-items:flex-start; }
  .logo{ width:140px; }
  .mfooter-top{ padding:24px 20px; }
}
