:root{
      --brand:#E31E24;
      --brand-dark:#8f152a;
      --gray:#727271;
      --text:#1f2937;
      --muted:#6b7280;
    }
    body {
        font-family: 'Lato';
        font-style: normal;
    }
    .navbar { box-shadow: 0 2px 10px rgba(0,0,0,.05); }
    .logo { height:56px; width:auto; }
    .brand-badge{
      background: linear-gradient(90deg, var(--brand), var(--brand-dark));
      color:#fff; border-radius:999px; padding:.375rem .75rem; font-weight:600; letter-spacing:.3px; font-size:.9rem;
      display:inline-flex; align-items:center; gap:.5rem;
    }
    .hero{
      position:relative; padding:6rem 0 4rem;
      background: radial-gradient(1200px 400px at 10% -10%, rgba(194,30,58,.10), transparent 60%),
                  radial-gradient(800px 300px at 90% 0%, rgba(109,110,113,.10), transparent 70%), #fff;
    }
    .hero h1{ font-weight:800; letter-spacing:.2px; }
    .hero .lead{ color:var(--muted); font-size:1.15rem; }
    .stat{ border-radius:1rem; background:#fff; box-shadow:0 4px 24px rgba(0,0,0,.06); padding:1rem 1.25rem; }
    .section-title{ font-weight:800; letter-spacing:.3px; }
    .card{ border:1px solid rgba(0,0,0,.06); border-radius:1rem; box-shadow:0 6px 20px rgba(0,0,0,.05); }
    .icon-pill{ width:2.75rem; height:2.75rem; border-radius:.8rem; display:inline-flex; align-items:center; justify-content:center;
      background:rgba(194,30,58,.08); color:var(--brand); font-size:1.25rem; }
    .cta{ background: linear-gradient(180deg, rgba(194,30,58,.08), rgba(0,0,0,0)); border:1px solid rgba(0,0,0,.06); border-radius:1.25rem; }
    footer{ background:#343a40; color:#cbd5e1; }
    footer a{ color:#cbd5e1; text-decoration:none; }
    footer a:hover{ color:#fff; text-decoration:underline; }
    .btn-brand{ background:var(--brand); border:none; }
    a.btn-brand {
      color:#FFFFFF;
    }
    a.btn-brand:hover {
      color:#FFFFFF;
    }
    .btn-brand:hover{ background:var(--brand-dark); }
    .ribbon{ background:#6d6e71; color:#fff; display:inline-block; padding:.5rem .75rem; border-radius:.5rem; }

  .hero {
  background: url("assets/header1.jpeg") center top/cover no-repeat;
  padding: 18rem 0 10rem;
  color: #fff;
  position: relative; /* das bleibt */
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}

/* Warum-wir: Parallax-Hintergrund */
.why-us{
  position: relative;
  padding: 6rem 0;
  color: #fff;
  background: url("assets/flyer_bild.jpg") center center / cover no-repeat fixed;
  /* iOS ignoriert fixed -> Fallback unten */
}
.why-us::before{
  content:"";
  position:absolute;
  inset:0;
  /* leichtes Vignette + Abdunklung für Lesbarkeit */
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(0,0,0,.25), rgba(0,0,0,.55)),
    rgba(0,0,0,.35);
  z-index:0;
}
.why-us .container, .why-us .container *{
  position: relative;
  z-index:1;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

/* halbtransparente Boxen auf dem Bild */
.why-card{
  border-radius: 1rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,.18);
}
.why-tile{
  border-radius:.75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
}

/* Icon-Hintergrund in Weiß für Kontrast */
.icon-pill{
  width:2.75rem; height:2.75rem; border-radius:.8rem;
  display:inline-flex; align-items:center; justify-content:center;
}

/* Mobile & iOS: Parallax-Fallback, weil background-attachment: fixed dort zickt */
@media (max-width: 991.98px){
  .why-us{ background-attachment: scroll; }
}

/* Wenn Nutzer reduzierte Bewegung wünschen, Parallax aus */
@media (prefers-reduced-motion: reduce){
  .why-us{ background-attachment: scroll; }
}
.team-grid .card {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  transition: transform .15s ease, box-shadow .15s ease;
}
.team-grid .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.team-avatar {
  width: 100%;
  aspect-ratio: 1 / 1.3;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.team-role { color: #6b7280; }