/* ============================================
   MEP Heimspiel – Ergänzungen zum Live-Design
   Baut auf style.css + extensions.css des Themes
   munich-event-planner auf. Nur Zusätze, keine
   Änderung an den Originaldateien.
   ============================================ */

/* ---- Icons statt der Lucide-Web-Schrift (alles lokal) ---- */
.hs-ico {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
}
.hero-badge .hs-ico { width: 14px; height: 14px; }
.btn .hs-ico { width: 16px; height: 16px; }
.leistung-card-icon .hs-ico,
.usp-icon .hs-ico,
.trust-bar-icon .hs-ico,
.hero-float-icon .hs-ico { width: 28px; height: 28px; }

/* ---- Hinweiszeile im Fließtext ---- */
.hs-note {
  border-left: 3px solid var(--green);
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 26px 0;
}
.hs-note p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.hs-note p + p { margin-top: 10px; }
.hs-note strong { color: var(--text); }
.section[style*="dark"] .hs-note,
.hs-dark .hs-note { background: rgba(255, 255, 255, 0.05); border-left-color: var(--neon); }
.hs-dark .hs-note p { color: rgba(255, 255, 255, 0.72); }
.hs-dark .hs-note strong { color: #fff; }

/* ---- Tabellen ---- */
.hs-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  margin: 28px 0;
  -webkit-overflow-scrolling: touch;
}
.hs-table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 0.92rem; }
.hs-table th {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: left;
  padding: 15px 18px;
  background: var(--bg-alt);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.hs-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.5;
}
.hs-table tbody tr:last-child td { border-bottom: 0; }
.hs-table tbody tr:hover td { background: rgba(241, 148, 49, 0.04); }
.hs-table td:first-child { color: var(--text); font-weight: 600; }
.hs-table .zahl { white-space: nowrap; }

/* ---- Checklisten ----
   Kommentar 4 vom 11.09.2026: Haekchen standen doppelt, weil extensions.css
   (Kreis + Textglyphe) und heimspiel.css (ausgestanzter Kreis) beide malten.
   Seither gilt NUR diese Definition; in extensions.css sind .hs-check,
   .hs-check li und deren ::before/::after ersatzlos entfernt.
   Ein Marker: Kreis im Gelb-Orange-Verlauf, darin ein dunkler Haken aus
   demselben 24er-Raster wie assets/icons.svg — keine Schriftglyphe, die je
   nach Schnitt anders sitzt. Abstand einheitlich padding-left: 34px. */
.hs-check { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.hs-check li {
  position: relative;
  padding: 8px 0 8px 34px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px dashed rgba(160, 148, 132, 0.22);
}
.hs-check li:last-child { border-bottom: 0; }
.hs-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 2px 7px rgba(241, 148, 49, 0.28);
}
.hs-check li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  background: #12100e;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.hs-check.hs-check-nein li::before { background: #a8324a; box-shadow: 0 2px 7px rgba(168, 50, 74, 0.22); }
.hs-check.hs-check-nein li::after { background: #fff; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/11px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/11px no-repeat; }
.hs-dark .hs-check li { color: rgba(255, 255, 255, 0.78); border-bottom-color: rgba(255, 255, 255, 0.10); }

/* ---- Zwei Spalten Text + Karte ---- */
.hs-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .hs-split { grid-template-columns: 1.35fr 1fr; gap: 48px; }
  .hs-split-even { grid-template-columns: 1fr 1fr; }
}
.hs-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.hs-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.hs-card > .hs-ico { color: var(--akzent); width: 34px; height: 34px; margin-bottom: 14px; }
.hs-dark .hs-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.hs-dark .hs-card h3 { color: #fff; }

/* ---- Dunkle Sektion ---- */
.hs-dark { background: var(--dark); color: rgba(255, 255, 255, 0.72); position: relative; overflow: hidden; }
.hs-dark h2, .hs-dark h3, .hs-dark h4 { color: #fff; }
.hs-dark .section-title { color: #fff; }
.hs-dark .section-subtitle { color: rgba(255, 255, 255, 0.62); }
.hs-dark .section-label { color: var(--neon); }
.hs-dark p { color: rgba(255, 255, 255, 0.72); }
.hs-dark .hs-table-wrap { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.12); box-shadow: none; }
.hs-dark .hs-table th { background: rgba(255, 255, 255, 0.06); color: #fff; border-bottom-color: rgba(255, 255, 255, 0.12); }
.hs-dark .hs-table td { color: rgba(255, 255, 255, 0.7); border-bottom-color: rgba(255, 255, 255, 0.08); }
.hs-dark .hs-table td:first-child { color: #fff; }
.hs-dark .hs-table tbody tr:hover td { background: rgba(252, 201, 0, 0.06); }
.hs-dark .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.hs-dark .btn-outline:hover { color: var(--neon); border-color: var(--neon); }

/* ---- Fließtext ---- */
.hs-lese { max-width: 780px; }
.hs-lese p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.85; margin-bottom: 16px; }
.hs-lese p strong { color: var(--text); }
.hs-lese a { color: var(--akzent); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(241, 148, 49, 0.35); }
.hs-lese a:hover { color: var(--blue); }
.hs-lese h3 { font-size: 1.3rem; margin: 34px 0 14px; }
.hs-lese h4 { font-size: 1.05rem; margin: 26px 0 10px; }
.hs-lese ul, .hs-lese ol { color: var(--text-muted); padding-left: 22px; margin-bottom: 18px; line-height: 1.8; }
.hs-lese li { margin-bottom: 8px; }
.hs-dark .hs-lese p { color: rgba(255, 255, 255, 0.72); }
.hs-dark .hs-lese a { color: var(--light); }

/* ---- Kicker über Überschriften innerhalb von Blöcken ---- */
.hs-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--akzent);
  margin-bottom: 12px;
}
.hs-dark .hs-kicker { color: var(--neon); }

/* ---- Live-Rangliste (aus heimspiel-mockup übernommen) ---- */
.hs-lb-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hs-leaderboard {
  background: #151210;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px 16px 18px;
  width: 100%;
  max-width: 328px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.hs-lb-head {
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.hs-lb-live {
  color: #ff5f7a;
  font-size: 0.66rem;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}
.hs-lb-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f7a;
  animation: hsLbPulse 1.4s infinite;
}
@keyframes hsLbPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(1.4); } }
.hs-lb-row {
  display: grid;
  grid-template-columns: 22px 1fr 52px;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.hs-lb-rank { font-family: 'Anton', sans-serif; color: #9a8d7e; font-size: 1rem; text-align: center; }
.hs-lb-name { color: #f7ecd2; font-size: 0.82rem; min-width: 0; }
.hs-lb-name b { display: block; font-weight: inherit; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* Kommentar 5 vom 11.09.2026: unter dem Teamnamen stehen die Spieler, damit
   im Schaubild zu sehen ist, dass hinter einem Team Leute stecken. Kleine,
   gedaempfte Zeile, damit der Teamname die erste Zeile bleibt. */
.hs-lb-spieler {
  display: block;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(247, 236, 210, 0.52);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
  font-weight: 400;
}
.hs-lb-pts { color: #fede15; font-family: 'Anton', sans-serif; font-size: 0.9rem; text-align: right; }
.hs-lb-bar { grid-column: 1 / -1; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, 0.08); overflow: hidden; margin-top: 3px; }
.hs-lb-bar i {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #f19431, #fcc900);
  transform-origin: left;
  animation: hsLbGrow 1.3s cubic-bezier(.4, 0, .2, 1) both;
}
@keyframes hsLbGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hs-lb-1 .hs-lb-rank { color: #e6a817; }
.hs-lb-1 .hs-lb-name { color: #fff; font-weight: 700; }
.hs-lb-1 .hs-lb-spieler { color: rgba(255, 255, 255, 0.62); }
.hs-lb-cap { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); text-align: center; max-width: 328px; margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .hs-lb-bar i, .hs-lb-live::before { animation: none; }
}

/* ---- Stufen / Ablauf ----
   Kommentar 8 vom 11.09.2026: Der harte Verlaufsrahmen am oberen Rand
   (border-image in extensions.css) ist raus, die dortige .hs-step-Fassung
   ebenso. Stattdessen: Nummer als Kreis im Verlauf, Dauer als Chip, auf dem
   Desktop eine Linie, die die Schritte verbindet. */
.hs-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
@media (min-width: 760px) { .hs-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) {
  .hs-steps-3 { grid-template-columns: repeat(3, 1fr); }
  .hs-steps-4 { grid-template-columns: repeat(4, 1fr); }
  .hs-steps-5 { grid-template-columns: repeat(5, 1fr); }
}
.hs-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 24px 24px;
  box-shadow: 0 10px 28px rgba(21, 18, 16, 0.07);
  position: relative;
  transition: var(--transition);
}
.hs-step:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 148, 49, 0.35);
  box-shadow: 0 18px 40px rgba(21, 18, 16, 0.13);
}
.hs-step-num {
  font-family: 'Anton', sans-serif;
  font-size: 1.45rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #12100e;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(241, 148, 49, 0.34);
  position: relative;
  z-index: 1;
}
/* Die verbindende Linie sitzt auf Hoehe der Nummernkreise und laeuft durch
   die Luecke zwischen zwei Kacheln. Sie erscheint nur dort, wo alle Schritte
   wirklich in EINER Reihe stehen - sonst haenge sie am Zeilenanfang im Nichts. */
@media (min-width: 1100px) {
  .hs-steps-3 .hs-step + .hs-step::before,
  .hs-steps-4 .hs-step + .hs-step::before,
  .hs-steps-5 .hs-step + .hs-step::before {
    content: "";
    position: absolute;
    left: -19px;
    top: 52px;
    width: 19px;
    height: 2px;
    background: linear-gradient(90deg, rgba(241, 148, 49, 0.18), rgba(241, 148, 49, 0.60));
  }
}
.hs-step h3 { font-size: 1.12rem; margin-bottom: 10px; }
.hs-step .hs-dauer {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a4a12;
  background: rgba(252, 201, 0, 0.20);
  border: 1px solid rgba(241, 148, 49, 0.28);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.hs-step p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.hs-dark .hs-step { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); box-shadow: none; }
.hs-dark .hs-step p { color: rgba(255, 255, 255, 0.7); }
.hs-dark .hs-step .hs-dauer { color: var(--neon); background: rgba(252, 201, 0, 0.12); border-color: rgba(252, 201, 0, 0.30); }

/* ---- Paket-/Zuschnitt-Karten ----
   Kommentar 7 vom 11.09.2026: klare Hierarchie von oben nach unten -
   Symbolflaeche, Anton-Titel, Preis als Chip, Text, Verweis als Pfeilknopf
   am Fuss. Ruhiger Schatten, kein farbiger Linksrand, keine Verlaufsflaeche
   als Hintergrund. */
.hs-tiles { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .hs-tiles-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .hs-tiles-3 { grid-template-columns: repeat(3, 1fr); } }
.hs-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 28px 26px;
  box-shadow: 0 10px 28px rgba(21, 18, 16, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}
.hs-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(21, 18, 16, 0.14);
  border-color: rgba(241, 148, 49, 0.38);
}
.hs-tile-num {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-tile h3 { font-size: 1.28rem; margin: 0; line-height: 1.25; }
.hs-tile > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }
/* Die Preiszeile als Chip: sie ist eine Angabe, kein Satz. */
.hs-tile-price {
  align-self: flex-start;
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #8a4a12;
  background: rgba(252, 201, 0, 0.20);
  border: 1px solid rgba(241, 148, 49, 0.28);
  border-radius: 999px;
  padding: 5px 14px;
}
/* Der Verweis steht immer unten und traegt einen Pfeil, der beim Zeigen
   vorlaeuft. Die Kachel bekommt dafuer eine duenne Trennlinie. */
.hs-tile > p.hs-tile-link {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(160, 148, 132, 0.28);
}
.hs-tile .leistung-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--akzent);
}
.hs-tile .leistung-link::after {
  content: "\2192";
  font-size: 1.05rem;
  line-height: 1;
  transition: transform .25s ease;
}
.hs-tile .leistung-link:hover::after { transform: translateX(4px); }
.hs-dark .hs-tile { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); box-shadow: none; }
.hs-dark .hs-tile > p { color: rgba(255, 255, 255, 0.72); }
.hs-dark .hs-tile-price { color: var(--neon); background: rgba(252, 201, 0, 0.12); border-color: rgba(252, 201, 0, 0.30); }
.hs-dark .hs-tile > p.hs-tile-link { border-top-color: rgba(255, 255, 255, 0.14); }

/* ---- Kommentar 6 vom 11.09.2026: die Reihen gehen auf ----
   Sechs Karten in vier Spalten liessen die zweite Reihe mit zwei Karten
   halb leer stehen. Drei Spalten ergeben zwei volle Reihen; bei 1024 px
   (zwei Spalten) sind es drei volle Reihen, bei 768 px eine Spalte.
   Kein Text musste dafuer zusammengelegt oder gestrichen werden. */
@media (min-width: 1025px) {
  .leistungen-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Katalog: Kategorie-Sprungmarken ---- */
.hs-jump { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 8px; }
.hs-jump a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.hs-jump a:hover { border-color: var(--green); color: var(--akzent); transform: translateY(-2px); }
.hs-jump a b { font-family: 'Anton', sans-serif; font-weight: 400; color: var(--akzent); }
.hs-kat-h {
  font-size: 1.5rem;
  margin: 52px 0 4px;
  scroll-margin-top: 100px;
}
.hs-kat-h span { font-size: 0.95rem; font-family: 'Titillium Web', sans-serif; font-weight: 600; color: var(--text-muted); letter-spacing: 0; }

/* ---- Bildkarten ---- */
.hs-figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.hs-figure img { width: 100%; height: auto; display: block; }
.hs-figure svg { width: 100%; height: auto; display: block; }
.hs-figure figcaption { font-size: 0.82rem; color: var(--text-muted); padding: 12px 16px; background: var(--bg-alt); }

/* ---- Kontakt / Anfrage ---- */
.hs-form-note { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-top: 14px; }
.hs-form-note a { color: var(--akzent); text-decoration: underline; text-underline-offset: 3px; }
.hs-platzhalter {
  display: inline-block;
  background: #fff4d6;
  border: 1px dashed #d9a441;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #7a5410;
}
.hs-consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0 6px; }
.hs-consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--akzent); flex-shrink: 0; }
.hs-consent label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.hs-consent label a { color: var(--akzent); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Honigtopf: fuer Menschen unsichtbar, fuer Bots sichtbar ---- */
.hs-honigtopf {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- Fehlermeldung ueber dem Formular ---- */
.hs-fehler {
  border: 1px solid rgba(168, 50, 74, 0.45);
  background: rgba(168, 50, 74, 0.08);
  color: #8f1f3a;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 600;
}

/* ---- Rechtstexte ---- */
.hs-recht { max-width: 820px; }
.hs-recht h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.hs-recht h2:first-child { margin-top: 0; }
.hs-recht h3 { font-size: 1.12rem; margin: 26px 0 10px; }
.hs-recht p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; font-size: 0.98rem; }
.hs-recht ul { color: var(--text-muted); padding-left: 22px; line-height: 1.8; margin-bottom: 16px; }
.hs-recht a { color: var(--akzent); text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.hs-recht strong { color: var(--text); }

/* ---- kompakter Hero für Unterseiten ---- */
.hero-kompakt { min-height: 62vh; }
.hero-kompakt .hero-content { padding-top: 120px; padding-bottom: 40px; }
.hero-recht { min-height: 42vh; }
.hero-recht .hero-content { padding-top: 130px; padding-bottom: 30px; }
.hero-recht h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* Hero mit Rangliste: die Bahn wird voll breit, damit der Text nicht
   unter die absolut gesetzte Rangliste laeuft. */
.hero-mit-lb .container { width: 100%; }
.hero-mit-lb .hero-content { max-width: 660px; }
.hero-mit-lb .hero-content p { max-width: 620px; }
.hero-lb-slot {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 1200px) { .hero-lb-slot { display: none; } }

/* Rangliste im Fließtext (mobil / kleine Viewports) */
.hs-lb-inline { margin: 30px auto 0; }
.hs-lb-inline .hs-lb-cap { color: var(--text-muted); }

/* ---- Aufzählung mit Icon (zwei Spalten) ---- */
.hs-iconlist { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .hs-iconlist { grid-template-columns: repeat(2, 1fr); gap: 26px 40px; } }
.hs-iconlist li { display: flex; gap: 18px; align-items: flex-start; }
.hs-iconlist strong { display: block; font-size: 1.02rem; color: var(--text); margin-bottom: 5px; }
.hs-iconlist p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.hs-dark .hs-iconlist strong { color: #fff; }
.hs-dark .hs-iconlist p { color: rgba(255, 255, 255, 0.7); }


/* ---- Symbolflaeche (Kommentar 3 vom 11.09.2026) ----
   Die Symbole aus assets/icons.svg standen frei im Text, 24 px, duenner
   Strich — der Inhaber hat sie schlicht nicht gesehen. Sie sitzen jetzt
   ueberall in derselben cremefarbenen Flaeche mit 60 px Kantenlaenge und
   runden Ecken; das Symbol selbst misst 30 px. Gilt fuer .hs-iconlist,
   .hs-tile, .hs-card und jede Sektion, die .hs-ico-box setzt. */
.hs-ico-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(140deg, #fff4d2, var(--bg-alt, #fdf6e3));
  border: 1px solid rgba(241, 148, 49, 0.26);
  color: var(--akzent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(241, 148, 49, 0.14);
  transition: var(--transition);
}
.hs-ico-box .hs-ico { width: 30px; height: 30px; }
.hs-card .hs-ico-box, .hs-tile .hs-ico-box { margin-bottom: 16px; }
.hs-tile:hover .hs-ico-box,
.leistung-card:hover .hs-ico-box { transform: translateY(-2px) rotate(-3deg); }
.hs-dark .hs-ico-box {
  background: rgba(252, 201, 0, 0.13);
  border-color: rgba(252, 201, 0, 0.28);
  color: var(--neon);
  box-shadow: none;
}
@media (max-width: 560px) {
  .hs-ico-box { width: 52px; height: 52px; border-radius: 15px; }
  .hs-ico-box .hs-ico { width: 26px; height: 26px; }
}

/* Die Symbole in der Kachelreihe oben und im Kontaktblock ziehen mit. */
.leistung-card-icon .hs-ico, .contact-detail-icon .hs-ico { width: 30px; height: 30px; }
.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(140deg, #fff4d2, var(--bg-alt, #fdf6e3));
  border: 1px solid rgba(241, 148, 49, 0.26);
  color: var(--akzent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.leistung-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(140deg, #fff4d2, var(--bg-alt, #fdf6e3));
  border: 1px solid rgba(241, 148, 49, 0.26);
  box-shadow: 0 6px 16px rgba(241, 148, 49, 0.14);
  transition: var(--transition);
}
/* In der Vertrauensleiste steht das Symbol neben dem Text, dort genuegt ein
   kleinerer Kreis - eine 60-px-Flaeche sprengte die Zeile. */
.trust-bar-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(252, 201, 0, 0.14);
  border: 1px solid rgba(252, 201, 0, 0.28);
  justify-content: center;
  flex-shrink: 0;
}
.trust-bar-icon .hs-ico { width: 24px; height: 24px; }

/* ---- Kennzahlenreihe innerhalb einer Sektion ---- */
.hs-kpi { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 30px; }
@media (min-width: 820px) { .hs-kpi { grid-template-columns: repeat(4, 1fr); } }
.hs-kpi div b {
  display: block;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.9rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-kpi div span { display: block; font-size: 0.84rem; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.hs-dark .hs-kpi div span { color: rgba(255, 255, 255, 0.55); }

/* ---- Anker unter der fixen Navigation ---- */
[id] { scroll-margin-top: 96px; }

/* ---- Mobile Navigation ---- */
@media (max-width: 1024px) {
  .navbar-nav { display: none; }
  .nav-toggle { display: flex; }
  .navbar.menu-open .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
    padding: 14px 18px;
  }
  .navbar.menu-open .navbar-nav a { color: var(--text); display: block; padding: 10px 0; font-size: 1rem; }
  .navbar-cta .btn-primary { padding: 10px 20px; font-size: 0.9rem; }
}
@media (max-width: 560px) {
  .hero-stats { gap: 24px; flex-wrap: wrap; margin-top: 44px; }
  .hero-stat-number { font-size: 1.8rem; }
}

/* =====================================================================
   Ergaenzungen fuer den Baukasten (09.09.2026)
   Rein additiv: neue Klassen fuer Markup, das es in heimspiel-site\ noch
   nicht gab. Keine bestehende Regel wurde geaendert, das Aussehen der elf
   Seiten bleibt damit unveraendert.
   ===================================================================== */

/* Kleingedruckter Zusatz unter einer Angabe im Impressum
   (Rechtsform, Umsatzsteuer-IdNr., Hinweis zur EU-Plattform). */
.hs-klein { font-size: 0.86rem; opacity: 0.82; }
.hs-recht p .hs-klein { display: inline-block; margin-top: 2px; }
.hs-recht p.hs-klein { font-size: 0.86rem; opacity: 0.82; }

/* Rueckmeldung des Anfrageformulars im Browser (assets/js/anfrage.js).
   Zwei Zustaende ueber .ist-gut / .ist-schlecht, damit das Skript keine
   Farben im Quelltext setzen muss. */
.hs-status {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 600;
}
.hs-status.ist-gut {
  border: 1px solid rgba(124, 155, 52, 0.45);
  background: rgba(124, 155, 52, 0.10);
  color: #4f6b1f;
}
.hs-status.ist-schlecht {
  border: 1px solid rgba(168, 50, 74, 0.45);
  background: rgba(168, 50, 74, 0.08);
  color: #8f1f3a;
}

/* Hinweis fuer Besucher ohne JavaScript, direkt ueber dem Absendeknopf. */
.hs-ohne-js {
  border: 1px solid rgba(168, 50, 74, 0.45);
  background: rgba(168, 50, 74, 0.08);
  color: #8f1f3a;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 18px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  display: block;
}
.hs-ohne-js a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* ---- Kopfzeile ohne Powered-by-Badge (Stand 11.09.2026) ----
   Die Badge stand frueher zwischen Navigation und Anfragen-Knopf. Ohne sie
   liesse "justify-content: space-between" rechts eine Luecke stehen; deshalb
   ruecken Navigation und Knopf jetzt gemeinsam an den rechten Rand.
   Unter 1025 px greift die mobile Navigation, dort aendert sich nichts. */
@media (min-width: 1025px) {
  .navbar-nav { margin-left: auto; }
  .navbar-cta { margin-left: 44px; }
}

/* ---- Vertrauensleiste: ab Desktop eine Reihe zu vier, Text darf umbrechen (Kommentar-Nachbesserung 2026-09-11) ---- */
@media (min-width: 1025px) {
  .trust-bar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
  .trust-bar-item { justify-content: center; font-size: 0.86rem; gap: 10px; }
  .trust-bar-item span { max-width: 190px; line-height: 1.3; }
  .trust-bar-icon { flex-shrink: 0; }
}
