:root {
  --navy: #0a2f52;
  --navy-deep: #07223d;
  --blue: #117cc2;
  --blue-light: #29abe2;
  --gold: #f2c94c;
  --ink: #1c2b3a;
  --muted: #5b6b7a;
  --line: #dfe6ec;
  --bg: #f4f7fa;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(10, 47, 82, .16);
  --radius: 16px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); }
a:hover { color: var(--navy); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px 130px;
  background: var(--navy-deep) url("/assets/hero.jpg") center 62% / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 34, 61, .62) 0%, rgba(7, 34, 61, .38) 45%, rgba(7, 34, 61, .82) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 17px 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero__badge span.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(242, 201, 76, .75);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 11px rgba(242, 201, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 201, 76, 0); }
}

.hero h1 {
  margin: 26px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -.02em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .35);
}

.hero p {
  margin: 0 auto;
  max-width: 620px;
  color: rgba(255, 255, 255, .93);
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  text-shadow: 0 1px 14px rgba(0, 0, 0, .35);
}

.hero__claim {
  margin-top: 30px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* ---------- Logo-Karte ---------- */

.card-logo {
  position: relative;
  z-index: 2;
  margin: -78px auto 0;
  max-width: 560px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 40px;
  text-align: center;
}

.card-logo img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

/* ---------- Kontakt ---------- */

.section { padding: 62px 0; }

.section__head {
  text-align: center;
  margin-bottom: 38px;
}

.section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  letter-spacing: -.01em;
}

.section__head p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 20px;
}

.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10, 47, 82, .1);
  border-color: #c9dced;
}

.tile__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-light) 100%);
  margin-bottom: 16px;
}

.tile__icon svg { width: 23px; height: 23px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.tile h3 {
  margin: 0 0 6px;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.tile p, .tile address {
  margin: 0;
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.55;
}

.tile a {
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.tile a:hover { text-decoration: underline; }

/* ---------- Dokumente ---------- */

.docs {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.docs__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--navy) 0%, var(--blue) 100%);
}

.docs__icon svg { width: 23px; height: 23px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.docs__body { flex: 1 1 280px; }

.docs__body h3 {
  margin: 0 0 4px;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.docs__body p { margin: 0; color: var(--ink); }

.docs__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 11px 20px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.35;
  transition: background .18s ease;
}

.docs__btn small { font-weight: 400; font-size: .78rem; color: rgba(255, 255, 255, .72); }

.docs__btn:hover { background: var(--blue); color: #fff; }

/* ---------- Footer ---------- */

.footer {
  margin-top: 20px;
  background: var(--navy);
  color: rgba(255, 255, 255, .82);
  padding: 46px 0 34px;
}

.footer a { color: #fff; }

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer strong { color: #fff; }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer__legal a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .38);
  padding-bottom: 2px;
}

.footer__legal a:hover { border-color: #fff; }

.footer__bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .88rem;
  color: rgba(255, 255, 255, .62);
}

/* ---------- Rechtsseiten ---------- */

.page-head {
  background: var(--navy);
  color: #fff;
  padding: 46px 0 40px;
}

.page-head a.back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: .92rem;
  margin-bottom: 14px;
}

.page-head a.back:hover { color: #fff; }

.page-head h1 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.legal {
  background: var(--card);
  max-width: 860px;
  margin: -22px auto 60px;
  padding: 42px 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal h2 {
  margin: 34px 0 10px;
  font-size: 1.18rem;
  color: var(--navy);
}

.legal h2:first-child { margin-top: 0; }

.legal p { margin: 0 0 14px; }

.legal address { font-style: normal; margin: 0 0 14px; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: 56vh; padding: 72px 20px 110px; }
  .card-logo { margin-top: -62px; padding: 26px 24px; border-radius: 14px; }
  .section { padding: 46px 0; }
  .tile { padding: 24px 22px; }
  .docs { padding: 20px 22px; }
  .docs__btn { width: 100%; align-items: center; }
  .legal { padding: 30px 24px; margin-bottom: 44px; }
  .footer__cols { flex-direction: column; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
