/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background:
    linear-gradient(
      180deg,
      rgba(11,14,20,.95) 0%,
      rgba(16,20,30,.98) 100%
    );
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px var(--pad);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo .logo-aktien,
.footer-logo .logo-report { color: rgba(255,255,255,.5); }
.footer-logo img { height: 44px; }

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a,
.footer-nav a,
.footer-nav .menu-item a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover,
.footer-nav a:hover,
.footer-nav .menu-item a:hover { color: rgba(255,255,255,.65); }

/* WordPress footer menu */
.footer-nav ul {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }

/* Pre-footer CTA */
.pre-footer-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #131831 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px var(--pad);
  text-align: center;
}
.pre-footer-cta .sec-h2 {
  color: #fff;
  max-width: 100%;
  font-size: clamp(20px, 2.5vw, 30px);
  margin-bottom: 16px;
}
