@font-face {
  font-family: "LeagueSpartan";
  src: url("fonts/league-spartan-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


:root {
  --bg: #ffffff;
  --bg-soft: #f6f6f6;
  --text: #111;
  --muted: #333;
  --border: #e6e6e6;
  --max: 1100px;
  --radius: 12px;

  /* Globaler Background-Parallax (ganze Seite) */
  --bg-shift: 0px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* Android/Chrome: blaues Tap-Highlight bei Klicks entfernen (global) */
a,
button,
[role="button"],
input[type="button"],
input[type="submit"],
summary,
.menu-btn,
.menu-close,
.action-btn,
.btn,
.brand {
  -webkit-tap-highlight-color: transparent;
}

/* =========================
   GLOBALER BACKGROUND-LAYER
   ========================= */

/* Content liegt ueber dem globalen Background */
.page {
  position: relative;
  z-index: 1;
}

/* Globaler Hintergrund fuer die ganze Seite */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  /* Ein einziges Motiv fuer die komplette Seite (kein Kacheln) */
  background-image: url("img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Parallax ueber transform (performant) */
  transform: translate3d(0, var(--bg-shift), 0) scale(1.06);
  will-change: transform;
}

/* Rest der Seite subtiler: weisser Schleier ueber dem Background */
.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.80);
}



/* Wrapper unterhalb Hero (kein eigener Background mehr!) */
.after-hero-bg {
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* Smooth Uebergang vom Hero in den Rest (kein harter Cut) */
.after-hero-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 160px;
  pointer-events: none;

  /* oben stark weiss -> nach unten transparent */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.85) 35%,
    rgba(255,255,255,0) 100%
  );
  z-index: 0;
}

/* sorgt dafuer, dass inhalte ueber dem overlay liegen */
.after-hero-bg > * {
  position: relative;
  z-index: 1;
}

/* falls einzelne sections aktuell noch eigene backgrounds haben: transparent machen */
.after-hero-bg .section,
.after-hero-bg .benefits-block,
.after-hero-bg .process-block,
.after-hero-bg .services,
.after-hero-bg .faq,
.after-hero-bg .contact {
  background: transparent !important;
}


.container {
  width: 90%;
  max-width: var(--max);
  margin: auto;
}

/* Neue gemeinsame Section-Klasse (empfohlen, siehe HTML-Minipatch) */
.section {
  padding: 72px 0;
}

h1, h2, h3 {
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

p {
  color: var(--muted);
}

/* Header */
.header {
  background: #000;
  padding: 15px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0;
}

.logo {
  height: 40px;
}

.phone {
  color: #fff;
  text-decoration: none;
}

/* =========================
   HERO – FINAL (Bild + Typo)
   ========================= */

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;

  min-height: clamp(560px, 82vh, 820px);
  display: flex;
  align-items: center;

  padding: clamp(96px, 12vh, 160px) 0;

  /* Hintergrundbild */
  background-image: url("img/hero-bg.png");
  background-size: cover;

  background-position: center;
  /* optional: wenn wir spaeter auch hero-parallax wollen */
  background-position-y: calc(50% + var(--hero-bg-shift, 0px));

  background-repeat: no-repeat;
}

/* Dezentes Overlay für Ruhe & Lesbarkeit */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    1200px 700px at 50% 35%,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.48) 60%,
    rgba(255,255,255,0.68)
  );
  pointer-events: none;
  z-index: 0;
}

/* Weicher Übergang Hero -> Body */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 200px; /* Stellschraube: 160–240px testen */
  pointer-events: none;
  z-index: 0;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.55) 55%,
    rgba(255,255,255,1) 100%
  );
}



/* Content über Bild & Overlay */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

/* ===== HERO TYPOGRAFIE (Premium, ruhig, klar) ===== */

/* Eyebrow */
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
  margin-bottom: 20px;
  color: #555;
}

/* Headline Wrapper */
.hero-title {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  margin: 0 0 22px 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* Erste Zeile – stark */
.hero-title__main {
  display: block;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  color: #111;
}

/* Zweite Zeile – bewusst ruhiger */
.hero-title__sub {
  display: block;
  font-weight: 700;
  font-size: clamp(2.0rem, 4.5vw, 3.0rem);
  color: rgba(17, 17, 17, 0.82);
}

/* Subline */
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.15rem);
  max-width: 60ch;
  margin: 0 auto 36px auto;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.65);
}

/* CTA Buttons */
.hero-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Desktop Feinschliff */
@media (min-width: 900px) {
  .hero {
    min-height: 86vh;
  }

  .hero-eyebrow {
    margin-bottom: 24px;
  }

  .hero-title {
    margin-bottom: 26px;
  }

  .hero-sub {
    margin-bottom: 44px;
  }
}





/* Buttons */
.btn {
  padding: 12px 22px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  border-radius: 999px;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-1px);
}

.primary {
  background: #000;
  color: #fff;
}

.secondary {
  border: 2px solid #000;
  color: #000;
  background: transparent;
}

/* Sektionen: ruhige Trennung (alternierend) */
.benefits-block { background-color: var(--bg); }
.process-block { background-color: var(--bg); }

/* Optional (wenn du mehr „Section-Trennung“ willst):
   Alternierende Hintergründe statt alles weiß. Sag Bescheid, dann aktiviere ich das. */
/* .benefits-block { background-color: var(--bg); }
   .process-block { background-color: var(--bg-soft); }
   .services { background-color: var(--bg); }
   .faq { background-color: var(--bg-soft); }
   .contact { background-color: var(--bg); } */




/* Accordion */
.accordion {
  margin-top: 18px;
  max-width: 900px;
}

.acc-item {
  border-top: 1px solid var(--border);
  padding: 10px 0;
}

.acc-item:last-child {
  border-bottom: 1px solid var(--border);
}

.acc-summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}

.acc-summary:focus-visible {
  outline: 3px solid #000;
  outline-offset: 4px;
}

/* Mobile: blauen Tap-Highlight-Effekt entfernen (Android/Chrome) */
.acc-summary {
  -webkit-tap-highlight-color: transparent;
}

/* Beim Tippen kein "blauer" Fokus-Flash, Keyboard-Fokus bleibt sauber */
.acc-summary:focus {
  outline: none;
}



.acc-summary::-webkit-details-marker {
  display: none;
}

.acc-summary::after {
  content: "＋";
  float: right;
  font-weight: 700;
}

.acc-item[open] .acc-summary::after {
  content: "－";
}

.acc-content {
  padding: 6px 0 18px 0;
  max-width: 850px;
}

.acc-content p {
  margin: 10px 0;
  line-height: 1.65;
}

.acc-content ul {
  margin: 10px 0 10px 18px;
}

.acc-subtitle {
  margin-top: 16px;
  font-weight: 700;
  color: var(--text);
}

.acc-note {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
}

.acc-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 18px 0;
}

/* Kontakt */
.contact-intro {
  max-width: 800px;
  margin: 0 0 18px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.contact-card {
  background: var(--bg-soft);
  padding: 22px;
  border-radius: var(--radius);
}

.contact-actions {
  margin-top: 16px;
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 6px;
}

/* Footer */
.footer {
  background: #000;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 26px 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.services-intro { max-width: 900px; margin-top: 10px; }
.services-footnote { margin-top: 22px; font-size: 0.95rem; color: #555; max-width: 900px; }

.service-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 14px;
}

.service-lead { margin-bottom: 10px; }
.service-bullets { margin: 0 0 0 18px; }
.service-bullets li { margin: 6px 0; }

.price-box {
  background: #f6f6f6;
  border-radius: 12px;
  padding: 16px;
}

.price-label { font-size: 0.95rem; color: #111; }
.price-value { font-size: 1.9rem; font-weight: 700; line-height: 1.1; margin: 4px 0 6px; }
.price-sub { font-size: 0.95rem; color: #333; }

.price-sep { border: none; border-top: 1px solid #e6e6e6; margin: 12px 0; }

@media (min-width: 900px) {
  .service-top { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}

/* Sticky Footer nur für Impressum & Datenschutz */
body.legal {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.legal main {
  flex: 1;
}

/* =========================
   HEADER / BRAND / MENU
   ========================= */

/* Sticky Header (dezent) */
.header--sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}




/* Actions rechts (Call / WhatsApp / Menü) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: clamp(34px, 4.4vw, 52px);
  width: auto;
  display: block;
}

@media (max-width: 520px) {
  .brand-logo { height: 28px; }
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  height: 36px;
  padding: 0 16px;

  border-radius: 999px;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.03);
  color: #ffffff;

  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.90rem;
  letter-spacing: 0.04em;


  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.action-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
}



.call-ico,
.wa-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.action-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Einheitliche Icon-Stärke */
.action-btn svg path {
  stroke-width: 2.2;
}

.call-ico,
.wa-ico {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.call-text,
.wa-text {
  position: relative;
  top: 0.5px;
}

@media (max-width: 520px) {
  .call-text,
  .wa-text {
    display: none;
  }

  .action-btn {
    padding: 0 12px;
    height: 36px;
  }

  .call-ico,
  .wa-ico {
    width: 22px;
    height: 22px;
  }
}






/* Hamburger (zwei Balken) */
.menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-btn:hover {
  background: rgba(255,255,255,0.09);
}


.menu-bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.menu-bars::before { top: -6px; }
.menu-bars::after  { top: 6px; }

/* =========================
   Mobile Menü Overlay (veredelt)
   ========================= */

/* Hintergrund hinter dem Menü */
.menu-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(255,255,255,0.10), transparent 60%),
    rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
}

/* Menü-Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(420px, 92vw);

  padding: 18px;
  padding-top: 16px;

  border-radius: 18px 0 0 18px;

  background:
  radial-gradient(900px 420px at 20% 0%, rgba(255,255,255,0.10), transparent 55%),
  rgba(16,16,16,0.94);
  color: #fff;

  border-left: 1px solid rgba(255,255,255,0.10);
  box-shadow: -20px 0 60px rgba(0,0,0,0.55);

  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;

  /* Animation */
  transform: translateX(0);
}

/* Kopfzeile */
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}

.mobile-menu__title {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Close Button */
.menu-close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-close:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
}

/* Menü-Links */
.mobile-link {
  display: block;
  padding: 14px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;

  font-weight: 650;
  letter-spacing: 0.01em;

  background: linear-gradient(to bottom, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.mobile-link:hover {
  background: linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

/* Top-2 Einträge minimal hervorheben */
.mobile-menu > .mobile-link:nth-of-type(1),
.mobile-menu > .mobile-link:nth-of-type(2) {
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
}

/* Downloads (3. Link) etwas „secondary“ */
.mobile-menu > .mobile-link:nth-of-type(3) {
  opacity: 0.92;
}


.mobile-menu__actions {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);

  display: flex;
  gap: 10px;
}

.mobile-menu__actions .action-btn {
  flex: 1 1 0;
  justify-content: center;
}


/* Smooth Scrolling zu Sektionen */
html { scroll-behavior: smooth; }

/* hidden-Attribute IMMER respektieren */
.mobile-menu[hidden],
.menu-overlay[hidden] {
  display: none !important;
}


/* =========================
   Cards Grid (für Vorteile + Ablauf)
   ========================= */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 22px 0;
}

@media (min-width: 700px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.cards-grid--3 {
  margin-top: 22px;
}

@media (min-width: 980px) {
  .cards-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  backdrop-filter: blur(6px);
}




/* =========================
   BENEFITS – Liste (untereinander) FINAL
   ========================= */

.benefits-block {
  text-align: left; /* überschreibt evtl. center aus anderen Bereichen */
}

.benefits-block h2 {
  font-family: "LeagueSpartan", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 14px 0;

  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;

  max-width: 560px;   /* 👈 bewusst kompakt */
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px 20px;
  border-radius: 14px;

  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}




.b-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;
  background: rgba(0,0,0,0.08);
  color: #111;
  font-weight: 900;
  font-size: 14px;
}

.b-text {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 600;
  color: #111;
  line-height: 1.35;
}

.benefits-note {
  max-width: 780px;
  margin-top: 36px;
  color: #333;
  line-height: 1.7;
  text-align: left;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.benefits-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Mobile: Bild unter Text */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-image {
    margin-top: 32px;
  }
}

.benefits-list .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f2f2f2;
  font-weight: 600;
}




/* =========================
   PROCESS / ABLAUF – 3 Schritte (untereinander, zentriert) – FINAL
   ========================= */

.process-block {
  text-align: center;
}

/* Überschrift – auf Level wie "Ihre Vorteile" */
.process-title {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.55rem, 3.0vw, 2.0rem);
  margin: 0 0 22px 0;
}

/* Steps untereinander, mittig */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;              /* mehr Luft zwischen den Kästen */

  max-width: 760px;
}

/* Step-Card */
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr; /* etwas mehr Platz für Badge */
  gap: 16px;
  align-items: center;

  padding: 22px 22px;
  border-radius: 18px;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);

  text-align: left;
}

.process-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #f2f2f2;                 /* hell statt schwarz */
  color: #111;

  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;

  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}

/* Step-Überschrift – stärker */
.process-content h3 {
  margin: 2px 0 6px 0;

  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.22rem;
  color: #111;
}

/* Erklärung – bewusst leiser, kürzer lesbar */
.process-content p {
  margin: 0;

  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #444;

  max-width: 58ch;
}

/* Desktop Feinschliff */
@media (min-width: 900px) {
  .process-steps { gap: 20px; }
  .process-step { padding: 24px 24px; }
}


/* =========================
   SERVICES / LEISTUNGEN (Accordion)
   ========================= */

.services {
  background: #fff;
}

.services-header {
  max-width: 920px;
}

.services-title {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 3.2vw, 2.35rem);
  margin: 0 0 10px 0;
  color: #111;
}

.services-sub {
  margin: 0 0 22px 0;
  color: #444;
  max-width: 78ch;
  line-height: 1.6;
}

.services-accordion {
  max-width: 920px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.service-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0;
}

.service-item[open] .service-trigger {
  background: rgba(0,0,0,0.02);
}

.service-trigger {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;

  padding: 18px 8px;
  cursor: pointer;
  user-select: none;
  border-radius: 14px;

  transition: background 160ms ease;
}

.service-trigger::-webkit-details-marker {
  display: none;
}

.service-left {
  display: grid;
  gap: 4px;
}

.service-name {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #111;
  letter-spacing: -0.01em;
}

.service-hint {
  color: #666;
  font-size: 0.98rem;
}

.service-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.service-price {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
  color: #111;
  font-size: 1.05rem;
  white-space: nowrap;
}

/* Plus/Minus Icon */
.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.9);
  position: relative;
  flex: 0 0 auto;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #111;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  opacity: 0.85;
}

.service-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* When open -> minus */
.service-item[open] .service-icon::after {
  opacity: 0;
}

.service-panel {
  padding: 4px 8px 18px 8px;
  max-width: 820px;
}

.service-bullets {
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: #333;
  line-height: 1.6;
}

.service-bullets li {
  margin: 6px 0;
}

.service-note {
  margin: 12px 0 0 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-footnote {
  margin: 18px 0 0 0;
  color: #666;
  font-size: 0.95rem;
  max-width: 920px;
}

/* Mobile spacing */
@media (max-width: 680px) {
  .service-trigger {
    padding: 16px 6px;
  }
  .service-panel {
    padding: 2px 6px 16px 6px;
  }
  .service-hint {
    font-size: 0.95rem;
  }
}

/* =========================
   SERVICES / LEISTUNGEN – TYPO FEINSCHLIFF
   (Layout bleibt unverändert)
   ========================= */

.services h2 {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.services-intro {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 500;
  color: #444;
  line-height: 1.7;
}

/* Accordion Titel (z.B. KFZ-Anmeldung) */
.acc-summary {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

/* Hauptbeschreibung */
.service-lead {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 500;
  color: #333;
}

/* Bulletpoints */
.service-bullets li {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 500;
  color: #444;
}

/* Preisbox */
.price-label {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 600;
  color: #111;
}

.price-value {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
}

.price-sub {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #444;
}

/* Unterüberschriften wie „Benötigte Unterlagen“ */
.acc-subtitle {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 700;
}

/* Hinweise */
.acc-note,
.services-footnote {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #555;
}

/* =========================
   SERVICES – ACCORDION HOVER
   ========================= */

/* Grundzustand */
.acc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;
  transition: color 0.2s ease;
}




/* Plus-Zeichen */
.acc-summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;

  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

/* Wenn geöffnet: Plus wird zu × */
details[open] > .acc-summary::after {
  transform: rotate(45deg);
  opacity: 0.6;
}

/* Fokus (Keyboard-Navigation) */
.acc-summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.12);
  border-radius: 8px;
}

/* Accordion – Hover & Öffnen */
.acc-item {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.acc-item:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Inhalt weich einblenden */
.acc-content {
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .acc-summary {
    font-size: 1.05rem;
    padding: 20px 0;
  }

  .acc-content {
    font-size: 0.95rem;
  }

  .price-box {
    margin-top: 16px;
  }
}



/* =========================
   SERVICES – Unterlagen an Lead angleichen
   ========================= */

/* Überschrift "Benötigte Unterlagen" */
.acc-subtitle {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #111;
  margin: 26px 0 12px;
}

/* Liste der Unterlagen */
.acc-content > ul {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-left: 18px;
}

.acc-content > ul li {
  margin-bottom: 6px;
}

/* Hinweis unter den Unterlagen */
.acc-note {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 0.9rem;
  color: #555;
  margin-top: 12px;
}

/* ================================
   VORTEILE – TYPOGRAFIE ANGLEICHEN
   ================================ */

.section.benefits {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

/* Überschrift */
.section.benefits h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Vorteil-Text in den Cards */
.section.benefits .benefit-item,
.section.benefits li,
.section.benefits p {
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Text unter den Vorteilen */
.section.benefits .benefits-note,
.section.benefits p:last-of-type {
  font-weight: 400;
  color: #555;
}

/* =========================
   BENEFITS – TYPO FIX
   ========================= */

/* Überschrift bleibt markant */
.benefits-block h2 {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
}

/* Listeneinträge & Text = Montserrat (wie Services Intro) */
.benefits-list li,
.benefits-list .b-text,
.benefits-note {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 500;
  color: #333;
}

/* Check-Icon Text ebenfalls neutral */
.benefits-list .check {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 600;
}


/* =========================
   FAQ – TYPO FIX
   ========================= */

/* FAQ Antworten */
.faq .acc-content p {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
  padding-top: 6px;
}


/* =========================
   FAQ – HEADLINE TYPO FIX
   ========================= */

.faq h2 {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 3.2vw, 2.35rem);
  color: #111;
}


/* =========================
   FAQ – CARDS STATT LINIEN
   ========================= */

.faq .accordion {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

/* Einzelne FAQ-Card */
.faq .acc-item {
  border: none;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  padding: 6px 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;

}

/* Hover (nur Desktop) */
@media (hover: hover) {
  .faq .acc-item:hover {
    background: rgba(255,255,255,0.75);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  }
}

/* Frage */
.faq .acc-summary {
  padding: 18px 0;
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #111;
}

/* FAQ – Inhalt (Antwort) */
.faq .acc-content {
  margin-top: 12px;
  padding-top: 14px;
  padding-bottom: 18px;

  border-top: 2px solid rgba(0,0,0,0.12);
}

.faq .acc-content p {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
}

/* Plus/Minus dezenter */
.faq .acc-summary::after {
  font-size: 1.1rem;
  opacity: 0.6;
}

/* =========================
   SERVICES – CARDS LOOK (wie FAQ)
   ========================= */

.services .accordion {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

/* Jede Leistung als Card */
.services .acc-item {
  border: none;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  padding: 4px 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;

}

/* Hover (nur Desktop / Pointer) */
@media (hover: hover) {
  .services .acc-item:hover {
    background: rgba(255,255,255,0.75);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  }
}

/* Trigger/Überschrift im Card-Style */
.services .acc-summary {
  padding: 18px 0;
  background: transparent;
}

/* Beim Öffnen minimaler „active“-Look */
.services .acc-item[open] .acc-summary {
  background: transparent;
}

/* Trennlinie im geöffneten Inhalt etwas dezenter */
.services .acc-sep {
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Inhalt: etwas mehr Luft am unteren Rand */
.services .acc-content {
  padding-bottom: 18px;
}


/* =========================
   CONTACT – PREMIUM POLISH
   ========================= */

.contact h2 {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 3.2vw, 2.35rem);
  color: #111;
}

.contact .contact-intro {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 500;
  color: #444;
  max-width: 78ch;
}

/* Cards: wie FAQ/Services */
.contact .contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* Links nicht mehr „Browser-blau“, sondern clean */
.contact .contact-card a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
}
.contact .contact-card a:hover {
  border-bottom-color: rgba(0,0,0,0.40);
}

/* Kontaktzeilen schöner setzen */
.contact .contact-line {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 500;
  color: #333;
  margin: 10px 0;
}

/* Kurzanfrage Headline */
.contact .contact-card h3 {
  font-family: "LeagueSpartan", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #111;
}

/* Buttons in Kontakt: etwas hochwertiger und gleich breit */
.contact .contact-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact .contact-actions .btn {
  margin: 0;               /* deine .btn hat margin:5px -> hier sauber machen */
}

@media (min-width: 520px) {
  .contact .contact-actions .btn {
    flex: 1 1 0;
    text-align: center;
    justify-content: center;
  }
}

/* Form: Inputs modern, weich, guter Fokus */
.contact .contact-form input,
.contact .contact-form select,
.contact .contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 12px 12px;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
  outline: none;
}

.contact .contact-form input:focus,
.contact .contact-form select:focus,
.contact .contact-form textarea:focus {
  border-color: rgba(0,0,0,0.35);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.08);
}

/* Labels etwas ruhiger */
.contact .form-row label {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 600;
  color: #222;
}

/* Button im Formular: leicht „pilliger“ wie der Rest */
.contact .contact-form .btn.primary {
  padding: 12px 22px;
  border-radius: 999px;
}

/* Mobile: Cards etwas kompakter */
@media (max-width: 520px) {
  .contact .contact-card {
    padding: 20px;
  }
}

/* Kontakt: Trennlinie in der linken Card */
.contact .contact-sep{
  border: 0;
  border-top: 2px solid rgba(0,0,0,0.10);
  margin: 18px 0 14px;
}

/* Kontakt: Extra-Bereich kompakt und "gefüllt" */
.contact .contact-badges{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Google Badge */
.contact .google-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
}

@media (hover:hover){
  .contact .google-badge:hover{
    background: rgba(255,255,255,0.90);
    border-color: rgba(0,0,0,0.10);
  }
}

/* kleiner "Icon"-Punkt (placeholder für späteres Google-Icon) */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.google-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.google-badge {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.google-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.google-badge {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
}


/* Mini-Infos */
.contact .mini-info{
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact .mini-label{
  font-size: 0.85rem;
  color: rgba(0,0,0,0.55);
  margin-bottom: 2px;
  font-weight: 600;
}

.contact .mini-value{
  font-weight: 700;
  color: #111;
}


/* =========================
   CONTACT – BUTTON FIX
   ========================= */

/* Im Kontaktbereich: Buttons ohne "komische" Textfarbe */
.contact .btn.primary,
.contact .btn.primary:visited {
  color: #fff !important;
}

/* Hover/Active im Kontakt: Text bleibt weiß */
.contact .btn.primary:hover,
.contact .btn.primary:active,
.contact .btn.primary:focus-visible {
  color: #fff !important;
}

/* Secondary im Kontakt: Text bleibt schwarz */
.contact .btn.secondary,
.contact .btn.secondary:visited {
  color: #111 !important;
}

/* Buttons im Kontakt sauber nebeneinander + gleiche Höhe */
.contact .contact-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact .contact-actions .btn {
  margin: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}

/* Optional: Primary etwas "stabiler" beim Hover (weniger Sprung) */
.contact .contact-actions .btn:hover {
  transform: translateY(-1px);
}


/* =========================
   SERVICES – ACTIVE STATE
   ========================= */

/* Geöffnete Service-Card hervorheben */
.services .acc-item[open] {
  background: #fafafa; /* minimal dunkler als weiß */
  box-shadow: 0 14px 36px rgba(0,0,0,0.10);
  position: relative;
}

/* Dezente Akzentlinie links */
.services .acc-item[open]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: rgba(0,0,0,0.55);
}

/* Summary im offenen Zustand minimal stärker */
.services .acc-item[open] .acc-summary {
  color: #000;
}

/* Beim Öffnen etwas mehr Luft oben */
.services .acc-item[open] .acc-content {
  padding-top: 6px;
}

/* =========================
   SERVICES – ICON POLISH
   ========================= */

/* Icon-Container ruhiger */
.services .service-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

/* Plus-Striche */
.services .service-icon::before,
.services .service-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Horizontal */
.services .service-icon::before {
  transform: translate(-50%, -50%);
}

/* Vertikal */
.services .service-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Hover: minimal lebendig */
@media (hover: hover) {
  .services .acc-summary:hover .service-icon {
    border-color: rgba(0,0,0,0.35);
  }
}

/* OPEN STATE → Minus durch Rotation */
.services .acc-item[open] .service-icon {
  transform: rotate(180deg);
}

/* Vertikaler Strich ausblenden → Minus */
.services .acc-item[open] .service-icon::after {
  opacity: 0;
}


/* =========================
   SERVICES – OPEN SPACING
   ========================= */

/* Mehr Luft zwischen Titel & Inhalt */
.services .acc-item[open] .acc-content {
  padding-top: 14px;
  padding-bottom: 22px;
}

/* Service-Top (Text + Preisbox) luftiger */
.services .acc-item[open] .service-top {
  gap: 28px;
  margin-top: 6px;
}

/* Textbereich entspannen */
.services .acc-item[open] .service-text {
  padding-right: 4px;
}

/* Bulletpoints etwas mehr Zeilenluft */
.services .acc-item[open] .service-bullets li {
  margin: 8px 0;
}

/* Preisbox klar absetzen */
.services .acc-item[open] .price-box {
  padding: 18px;
}

/* Trennlinie ruhiger */
.services .acc-item[open] .acc-sep {
  margin: 26px 0;
}

/* Unterlagen-Block sauber trennen */
.services .acc-item[open] .acc-subtitle {
  margin-top: 22px;
}

.services .acc-item[open] .acc-content > ul li {
  margin-bottom: 8px;
}

/* Mobile: etwas kompakter, aber nicht gedrängt */
@media (max-width: 680px) {
  .services .acc-item[open] .service-top {
    gap: 20px;
  }

  .services .acc-item[open] .price-box {
    margin-top: 14px;
  }
}






/* CTA: Primary etwas „satter“, Secondary ruhiger */
.hero .btn.primary {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.hero .btn.secondary {
  border-color: rgba(0,0,0,0.75);
}

/* Buttons: gleichmäßiger auf Mobile */
@media (max-width: 520px) {
  .hero-actions {
    width: 100%;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}


/* =========================
   BENEFITS – TEXT KONTRAST
   ========================= */

/* Benefit-Text stärker & klarer */
.benefits-list li {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 650;          /* vorher 500 → jetzt klarer */
  color: #111;               /* echtes Schwarz statt Grau */
  letter-spacing: -0.01em;
}

/* Optional: Check-Icon minimal zurücknehmen, damit Text dominiert */
.benefits-list .check {
  background: rgba(0,0,0,0.08);
}

/* CONTACT – Typo im Formular sauber angleichen */
.contact .contact-form,
.contact .contact-form input,
.contact .contact-form select,
.contact .contact-form textarea,
.contact .contact-form button {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 1rem;
  color: #111;
}

.contact .form-row label {
  font-size: 0.95rem;
}

/* Platzhaltertext ruhiger */
.contact .contact-form ::placeholder {
  color: rgba(0,0,0,0.45);
}


/* Kontakt – linke Card: Mini-Flow + Versprechen */
/* Mehr Abstand unter Google-Bewertung */
.contact-badges {
  margin-bottom: 22px;
}

/* Abstand vor den Textblöcken */
.contact-mini {
  margin-top: 18px;
}

.contact-promise {
  margin-top: 22px;
}

/* Optional: etwas mehr Luft zwischen Überschrift und Liste */
.contact-mini h4,
.contact-promise h4 {
  margin-bottom: 10px;
}


.contact-divider {
  height: 1px;
  background: rgba(0,0,0,0.10);
  margin: 14px 0 16px;
}

.contact-mini h4,
.contact-promise h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #111;
}

.contact-mini ol {
  margin: 0 0 16px;
  padding-left: 20px;
}

.contact-mini li {
  margin: 0 0 6px;
  color: rgba(0,0,0,0.78);
  line-height: 1.35;
}

.contact-promise ul {
  margin: 0;
  padding-left: 18px;
}

.contact-promise li {
  margin: 0 0 6px;
  color: rgba(0,0,0,0.78);
  line-height: 1.35;
}

/* =========================
   DOWNLOADS
   ========================= */
.download-card h3 {
  margin: 0 0 6px 0;
  font-family: "LeagueSpartan", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #111;
}

.download-card p {
  margin: 0 0 14px 0;
  color: rgba(0,0,0,0.70);
}

.download-card .btn {
  margin: 0;
}


/* =========================
   ACCESSIBILITY + MOBILE FINISHING
   (Desktop bleibt unverändert)
   ========================= */

:focus-visible {
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: 3px;
}

/* Keine horizontalen Scrollbars durch lange Wörter/Links */
img, svg {
  max-width: 100%;
}

/* Mobile Touch-Ziele (>= 44px) – nur auf kleinen Screens */
@media (max-width: 520px) {
  .action-btn {
    height: 44px;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
  }

  .menu-close {
    width: 44px;
    height: 44px;
  }

  .mobile-link {
    padding: 16px 14px;
  }
}

/* Mobile Menü: Inhalte dürfen nicht abgeschnitten werden */
.mobile-menu {
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* Weniger Motion, wenn Nutzer das so eingestellt hat */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mobile-link,
  .btn,
  .action-btn {
    transition: none;
  }
}

/* Mobile-Menü: Text in den unteren Buttons auch auf kleinen Screens anzeigen */
@media (max-width: 520px) {
  .mobile-menu__actions .call-text,
  .mobile-menu__actions .wa-text {
    display: inline !important;
  }
}

