/* ==========================================================================
   Entrümpelungsprofis38 — zentrales Stylesheet
   Farbwelt direkt aus dem Firmenlogo (Logo_2026_v2.svg) abgeleitet:
     Moosgrün #6D8D11 · Dunkelgrün #3A5D16 · Blattgrün #92A267
     Tiefgrün #22380D · Grau #9C9C9C · Fast-Schwarz #080C0B
   Gestaltungsidee: naturnah mit Wow-Effekt — Papierton statt Reinweiß, feine
   Körnung, organische Schnittkanten, dazu ein lebendiger Hero (treibende
   Blätter, wiegendes Gras, wandernde Lichtflecken), ein schräg laufendes
   Leistungsband, Zähler-Animationen und ein großes "38"-Wasserzeichen.
   Alle Bewegungen laufen ausschließlich über transform/opacity und werden bei
   "prefers-reduced-motion" komplett abgeschaltet.
   Mobile-first. Große Schrift, große Touch-Ziele (Zielgruppe 50+).
   ========================================================================== */

/* --- Schriften (lokal gehostet, kein Google-CDN — siehe fonts/LIESMICH.txt) */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/montserrat-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/montserrat-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(../fonts/open-sans-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(../fonts/open-sans-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Design-Tokens ------------------------------------------------------- */
:root {
  /* Grün aus dem Logo */
  --gruen: #6d8d11;          /* Primärgrün (Bogen, „38“, Blätter) */
  --gruen-hell: #8bb03c;
  --gruen-dunkel: #3a5d16;   /* trägt weiße Schrift (Kontrast 7,5:1) */
  --gruen-tief: #22380d;
  --gruen-nacht: #16250a;
  --blatt: #92a267;

  /* Neutrale, warm gehaltene Töne — „raw“ statt steriles Weiß */
  --papier: #f7f6f0;
  --papier-tief: #eeece1;
  --linie: #ddd9c9;
  --text: #23261f;
  --text-leise: #575c4e;
  --erde: #2b2a26;
  --weiss: #ffffff;

  --font-head: "Montserrat", ui-sans-serif, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-text: "Open Sans", ui-sans-serif, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --radius: 12px;
  --radius-gross: 18px;
  --kante: 1px solid var(--linie);
  --schatten: 0 10px 30px rgba(34, 56, 13, 0.07);
  --schatten-hoch: 0 16px 40px rgba(34, 56, 13, 0.14);

  /* Feine Körnung („raw“) — reines SVG, keine externen Dateien */
  --koernung: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='k'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23k)'/%3E%3C/svg%3E");
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--papier);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Sehr lange deutsche Komposita dürfen notfalls umbrechen */
  overflow-wrap: break-word;
}

/* Papierstruktur: sehr dezente Körnung über der gesamten Fläche */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--koernung);
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}

h2 { font-size: clamp(1.65rem, 5.2vw, 2.35rem); margin-bottom: 0.9rem; }
h3 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--gruen-dunkel); }

img { max-width: 100%; height: auto; }

strong { font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--gruen-dunkel);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

section { padding-block: 3.75rem; position: relative; }

/* Nur für Screenreader */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Sprungmarke „Zum Inhalt“ */
.skip-link {
  position: absolute; left: 0.5rem; top: -100px; z-index: 999;
  background: var(--gruen-dunkel); color: var(--weiss);
  padding: 0.75rem 1.25rem; border-radius: 0 0 10px 10px;
  font-family: var(--font-head); font-weight: 700; text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* Überzeile */
.overline {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gruen-dunkel);
  margin-bottom: 0.6rem;
}
.overline::before {
  content: "";
  display: inline-block;
  width: 1.75rem; height: 2px;
  background: var(--gruen);
  vertical-align: 0.28em;
  margin-right: 0.6rem;
}

/* --- Scroll-Animationen (nur mit JS, respektiert reduzierte Bewegung) ---- */
.js .anim {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--verzoegerung, 0s);
}
.js .anim.sichtbar { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .anim { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .hero-blaetter { display: none; }
  .hero-gras, .hero-glanz::before, .hero-glanz::after, .laufband-spur, .hero .btn-primaer { animation: none !important; }
}

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 240, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: var(--kante);
  transition: box-shadow 0.3s ease;
}
.site-header.gescrollt { box-shadow: 0 8px 24px rgba(22, 37, 10, 0.12); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 0.5rem;
}

.header-logo { display: flex; align-items: center; flex-shrink: 1; min-width: 0; }
.header-logo picture { display: block; }
.header-logo img { height: 46px; width: auto; display: block; }

.header-aktionen { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gruen-dunkel);
  text-decoration: none;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  white-space: nowrap;
}
.header-tel:hover { background: var(--papier-tief); }
.header-tel .nummer { display: none; }

.header-cta {
  background: var(--gruen-dunkel);
  color: var(--weiss);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 0.7rem 1.05rem;
  border-radius: 10px;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header-cta:hover { background: var(--gruen); transform: translateY(-1px); }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  color: var(--weiss);
  text-align: center;
  padding-block: 3rem 5.5rem;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(139, 176, 60, 0.30), transparent 62%),
    linear-gradient(168deg, var(--gruen-tief) 0%, var(--gruen-nacht) 100%);
  overflow: hidden;
}

/* „raw“: kräftigere Körnung auf der dunklen Fläche */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--koernung);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

/* Organische, leicht unruhige Schnittkante zum nächsten Abschnitt */
.hero::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: -1px;
  height: 46px;
  background: var(--papier);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0 27c86-19 141 12 241 4s154-27 258-15 175 27 291 15 190-30 297-19 200 24 353 9v52H0z' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0 27c86-19 141 12 241 4s154-27 258-15 175 27 291 15 190-30 297-19 200 24 353 9v52H0z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-logo { height: 112px; width: auto; margin: 0 auto 1.75rem; display: block; }

.hero h1 {
  color: var(--weiss);
  font-size: clamp(2rem, 7.4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  max-width: 24ch;
  margin-inline: auto;
}

.hero h1 .akzent {
  color: var(--gruen-hell);
  background: linear-gradient(92deg, #c6e35a 0%, #8bb03c 60%, #a9cf47 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .sub {
  font-size: clamp(1.05rem, 3.6vw, 1.3rem);
  max-width: 46ch;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  list-style: none;
}

.hero-badges li {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.95rem;
  font-size: 0.9rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.hero-aktionen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  max-width: 420px;
  margin-inline: auto;
}

.hero-hinweis {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

/* --- Hero-Dekor (Wow) ---------------------------------------------------- */

/* Zwei weiche Lichtflecken, die langsam durch den Hero wandern */
.hero-glanz { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero-glanz::before,
.hero-glanz::after {
  content: "";
  position: absolute;
  width: 70vmax; height: 70vmax;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  will-change: transform;
}
.hero-glanz::before {
  left: -25vmax; top: -30vmax;
  background: radial-gradient(circle, rgba(139, 176, 60, 0.55) 0%, rgba(139, 176, 60, 0) 60%);
  animation: glanz-a 26s ease-in-out infinite alternate;
}
.hero-glanz::after {
  right: -30vmax; bottom: -35vmax;
  background: radial-gradient(circle, rgba(109, 141, 17, 0.5) 0%, rgba(109, 141, 17, 0) 60%);
  animation: glanz-b 32s ease-in-out infinite alternate;
}
@keyframes glanz-a { from { transform: translate(0, 0) scale(1); } to { transform: translate(18vmax, 10vmax) scale(1.15); } }
@keyframes glanz-b { from { transform: translate(0, 0) scale(1.1); } to { transform: translate(-16vmax, -12vmax) scale(0.95); } }

/* Treibende Blätter (Blattform aus dem Logo-Ornament nachempfunden) */
.hero-blaetter { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-blaetter span {
  position: absolute;
  top: -8%;
  width: 22px; height: 22px;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23a9cf47' d='M20.5 3.5C12 3 5 8 4 17c-.2 1.6 0 3 .3 3.5C5 19 7 17 10 15.5c-2 2.3-3.5 4.4-4 5.5 8-1 14-7 14.5-17.5Z'/%3E%3C/svg%3E");
  animation: blatt-fallen linear infinite;
  will-change: transform, opacity;
}
.hero-blaetter span:nth-child(1)  { left: 6%;  animation-duration: 19s; animation-delay: -3s;  width: 18px; height: 18px; }
.hero-blaetter span:nth-child(2)  { left: 18%; animation-duration: 23s; animation-delay: -11s; width: 26px; height: 26px; }
.hero-blaetter span:nth-child(3)  { left: 31%; animation-duration: 17s; animation-delay: -7s;  width: 16px; height: 16px; }
.hero-blaetter span:nth-child(4)  { left: 44%; animation-duration: 25s; animation-delay: -15s; width: 22px; height: 22px; }
.hero-blaetter span:nth-child(5)  { left: 57%; animation-duration: 21s; animation-delay: -1s;  width: 20px; height: 20px; }
.hero-blaetter span:nth-child(6)  { left: 69%; animation-duration: 18s; animation-delay: -9s;  width: 28px; height: 28px; }
.hero-blaetter span:nth-child(7)  { left: 82%; animation-duration: 24s; animation-delay: -18s; width: 17px; height: 17px; }
.hero-blaetter span:nth-child(8)  { left: 93%; animation-duration: 20s; animation-delay: -5s;  width: 24px; height: 24px; }
.hero-blaetter span:nth-child(9)  { left: 12%; animation-duration: 27s; animation-delay: -21s; width: 14px; height: 14px; }
.hero-blaetter span:nth-child(10) { left: 75%; animation-duration: 22s; animation-delay: -13s; width: 19px; height: 19px; }
@keyframes blatt-fallen {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg);        opacity: 0; }
  8%   { opacity: 0.7; }
  25%  { transform: translate3d(-28px, 25vh, 0) rotate(70deg); }
  50%  { transform: translate3d(22px, 50vh, 0) rotate(160deg);  opacity: 0.6; }
  75%  { transform: translate3d(-18px, 78vh, 0) rotate(250deg); }
  92%  { opacity: 0.45; }
  100% { transform: translate3d(14px, 108vh, 0) rotate(330deg); opacity: 0; }
}

/* Wiegendes Gras direkt über der Schnittkante */
.hero-gras {
  position: absolute;
  left: 0; right: 0; bottom: 30px;
  height: 46px;
  z-index: 0;
  pointer-events: none;
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: 140px 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 46' preserveAspectRatio='none'%3E%3Cpath fill='%233f6a1c' d='M0 46c3-14 2-24 5-38 2 14 4 24 8 38zm12 0c4-10 2-20 7-30 1 10 3 20 6 30zm16 0c2-16 1-28 5-42 3 14 5 26 8 42zm16 0c3-9 3-18 6-26 3 8 4 17 7 26zm15 0c2-13 2-24 6-36 3 12 5 23 8 36zm17 0c3-8 1-16 5-24 2 8 4 16 6 24zm14 0c1-15 1-27 5-40 4 13 6 25 8 40zm16 0c3-11 2-20 6-30 2 10 4 19 7 30zm15 0c2-9 3-18 6-28 2 10 4 19 6 28z'/%3E%3C/svg%3E");
  transform-origin: 50% 100%;
  animation: gras-wiegen 5.5s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes gras-wiegen { from { transform: skewX(-4deg); } to { transform: skewX(4deg); } }

.hero .container { position: relative; z-index: 1; }

/* Primär-Button im Hero: sanftes Leuchten + Lichtstreifen beim Hover */
.btn-primaer { position: relative; overflow: hidden; }
.btn-primaer::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: -60%;
  width: 40%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primaer:hover::after { left: 120%; }
.hero .btn-primaer { animation: leuchten 3.2s ease-in-out infinite; }
@keyframes leuchten {
  0%, 100% { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(179, 212, 60, 0.0); }
  50%      { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22), 0 0 0 10px rgba(179, 212, 60, 0.16); }
}

/* --- Leistungsband (schräg laufende Schrift) ----------------------------- */
/* Die Hülle fängt die Überstände des gedrehten Bands ab, sonst entsteht
   horizontales Scrollen. */
.laufband-huelle { overflow: hidden; padding-block: 1.25rem 0.75rem; }
.laufband {
  background: var(--gruen-dunkel);
  color: var(--weiss);
  overflow: hidden;
  padding-block: 0.85rem;
  transform: rotate(-1.4deg) scale(1.03);
  box-shadow: 0 12px 30px rgba(22, 37, 10, 0.18);
  position: relative;
  z-index: 2;
}
.laufband-spur {
  display: flex;
  gap: 0;
  width: max-content;
  animation: laufen 48s linear infinite;
  will-change: transform;
}
.laufband:hover .laufband-spur { animation-play-state: paused; }
.laufband-spur ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.laufband-spur li {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-inline: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.laufband-spur li::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gruen-hell);
  flex-shrink: 0;
}
@keyframes laufen { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Wasserzeichen „38“ -------------------------------------------------- */
.mit-wasserzeichen { overflow: hidden; }
.wasserzeichen {
  position: absolute;
  right: -0.08em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(11rem, 32vw, 24rem);
  line-height: 1;
  color: var(--gruen);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.mit-wasserzeichen .container { position: relative; z-index: 1; }

/* Ehrlichkeits-Hinweis unter den Leistungskarten */
.leistungen-hinweis {
  margin-top: 1.5rem;
  color: var(--text-leise);
  font-size: 1rem;
  max-width: 70ch;
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
  text-align: center;
  padding: 0.95rem 1.6rem;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 54px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primaer {
  background: var(--gruen-hell);
  color: var(--gruen-nacht);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}
.btn-primaer:hover { background: #9cc24a; }

.btn-gruen {
  background: var(--gruen-dunkel);
  color: var(--weiss);
  box-shadow: var(--schatten);
}
.btn-gruen:hover { background: var(--gruen); box-shadow: var(--schatten-hoch); }

.btn-hell {
  background: transparent;
  color: var(--weiss);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-hell:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--weiss); }

.btn-linie {
  background: var(--weiss);
  color: var(--gruen-dunkel);
  border-color: var(--gruen-dunkel);
}
.btn-linie:hover { background: var(--gruen-dunkel); color: var(--weiss); }

.btn-breit { width: 100%; }

/* --- Vertrauens-Streifen unter dem Hero ---------------------------------- */
.vertrauen { padding-block: 2rem; border-bottom: var(--kante); }

.vertrauen-liste {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1rem;
  text-align: center;
}

.vertrauen-liste li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--text-leise);
}

.vertrauen-liste .zahl {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gruen-dunkel);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

/* --- Leistungen ---------------------------------------------------------- */
.leistungen { background: var(--papier-tief); }

.karten {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  list-style: none;
}

.karte {
  background: var(--weiss);
  border: var(--kante);
  border-radius: var(--radius-gross);
  padding: 1.5rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* „raw“: angedeutete Grasnarbe als Fußleiste jeder Karte */
.karte::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gruen) 0%, var(--blatt) 55%, var(--gruen-dunkel) 100%);
  opacity: 0.85;
}

.karte:hover {
  transform: translateY(-6px);
  box-shadow: var(--schatten-hoch);
  border-color: var(--blatt);
}
.karte:hover::after { height: 8px; }
.karte:hover .karte-icon { transform: scale(1.12) rotate(-6deg); background: var(--gruen-dunkel); color: var(--weiss); }
.karte::after { transition: height 0.25s ease; }
.karte-icon { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, color 0.25s ease; }

.karte-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--papier-tief);
  color: var(--gruen-dunkel);
  margin-bottom: 0.9rem;
}
.karte-icon svg { width: 26px; height: 26px; }

.karte h3 { color: var(--gruen-dunkel); margin-bottom: 0.4rem; }
.karte p { color: var(--text-leise); margin-bottom: 0.75rem; }

.karte ul {
  list-style: none;
  font-size: 0.97rem;
  color: var(--text-leise);
  display: grid;
  gap: 0.2rem;
}
.karte ul li { padding-left: 1.3rem; position: relative; }
.karte ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gruen);
}

/* Nachgeordneter Leistungsblock (Entrümpelung) */
.zusatz-block {
  margin-top: 1.75rem;
  background: var(--weiss);
  border: var(--kante);
  border-left: 6px solid var(--gruen-dunkel);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem;
}
.zusatz-block h3 { color: var(--gruen-dunkel); margin-bottom: 0.4rem; }
.zusatz-block p { color: var(--text-leise); }

/* --- Versprechen --------------------------------------------------------- */
.einleitung { max-width: 62ch; font-size: 1.1rem; }

.versprechen-liste {
  list-style: none;
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.versprechen-liste li {
  padding: 0.35rem 0 0.35rem 3rem;
  position: relative;
  min-height: 2rem;
}

.versprechen-liste li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.25rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--gruen-dunkel);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 1.1rem;
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Ablauf -------------------------------------------------------------- */
.ablauf { background: var(--papier-tief); }

.schritte {
  list-style: none;
  counter-reset: schritt;
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.schritte li {
  counter-increment: schritt;
  position: relative;
  padding-left: 4.25rem;
}

.schritte li::before {
  content: counter(schritt);
  position: absolute;
  left: 0; top: 0;
  width: 3.1rem; height: 3.1rem;
  background: var(--weiss);
  border: 2px solid var(--gruen-dunkel);
  color: var(--gruen-dunkel);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
}

.schritte h3 { margin-bottom: 0.3rem; }
.schritte p { color: var(--text-leise); }

/* --- Einsatzgebiet ------------------------------------------------------- */
.orte {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.orte li {
  border: var(--kante);
  background: var(--weiss);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-leise);
}
.orte .orte-anfrage { border-color: var(--gruen-dunkel); background: var(--gruen-dunkel); padding: 0; }
.orte .orte-anfrage a {
  display: inline-block;
  padding: 0.4rem 1rem;
  color: var(--weiss);
  text-decoration: none;
  min-height: 44px;
  line-height: 1.9;
}
.orte .orte-anfrage a:hover { text-decoration: underline; }

/* --- CTA-Band ------------------------------------------------------------ */
.cta-band {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(90% 140% at 15% 0%, rgba(139, 176, 60, 0.28), transparent 60%),
    linear-gradient(160deg, var(--gruen-dunkel), var(--gruen-nacht));
  color: var(--weiss);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--koernung);
  opacity: 0.12; z-index: -1; pointer-events: none;
}
.cta-band h2 { color: var(--weiss); }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 52ch; margin-inline: auto; }
.cta-band .overline { color: var(--gruen-hell); }
.cta-band .overline::before { background: var(--gruen-hell); }

.cta-aktionen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  margin: 1.75rem auto 0;
}

/* --- FAQ ----------------------------------------------------------------- */
.faq { display: grid; gap: 0.75rem; margin-top: 2rem; }

.faq details {
  background: var(--weiss);
  border: var(--kante);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.25rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: 1.1rem; top: 50%;
  width: 14px; height: 14px;
  margin-top: -7px;
  border-right: 3px solid var(--gruen-dunkel);
  border-bottom: 3px solid var(--gruen-dunkel);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details[open] summary { background: var(--papier-tief); }
.faq .antwort { padding: 1rem 1.25rem 1.25rem; color: var(--text-leise); }

/* --- Kontakt ------------------------------------------------------------- */
.kontakt { background: var(--papier-tief); }

.kontakt-raster { display: grid; gap: 1.25rem; margin-top: 2rem; }

/* Grid-Elemente haben standardmäßig min-width:auto und werden dadurch vom
   längsten Inhalt (z. B. einer Auswahlliste) aufgeblasen — das erzeugt auf
   schmalen Bildschirmen horizontales Scrollen. */
.kontakt-raster > *,
.karten > *,
.schritte > *,
.vertrauen-liste > * { min-width: 0; }

.kontakt-karte {
  position: relative;      /* Bezugspunkt für das versteckte Honigtopf-Feld */
  background: var(--weiss);
  border: var(--kante);
  border-radius: var(--radius-gross);
  padding: 1.5rem 1.25rem;
}

.direkt-liste { list-style: none; display: grid; gap: 1rem; }

.direkt-liste a { text-decoration: none; font-weight: 700; font-size: 1rem; }
.direkt-liste a:hover { text-decoration: underline; }

.direkt-zeile { display: flex; gap: 0.85rem; align-items: flex-start; }
/* Lange E-Mail-Adressen dürfen umbrechen, sonst schiebt sich die Karte auf
   schmalen Bildschirmen über den Rand hinaus. */
.direkt-zeile > span:last-child { min-width: 0; overflow-wrap: anywhere; }
.direkt-zeile .symbol {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--papier-tief);
  color: var(--gruen-dunkel);
  display: grid; place-items: center;
}
.direkt-zeile .symbol svg { width: 22px; height: 22px; }
.direkt-zeile .klein { display: block; font-size: 0.92rem; color: var(--text-leise); font-weight: 400; }

/* Formular */
.feld { margin-bottom: 1.1rem; }

.feld label,
.feld-checkbox label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.feld input,
.feld select,
.feld textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.85rem 0.95rem;
  font-size: 1.05rem;
  font-family: var(--font-text);
  border: 2px solid var(--linie);
  border-radius: 10px;
  background: var(--weiss);
  color: var(--text);
  min-height: 52px;
  transition: border-color 0.2s ease;
}

.feld select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a5d16' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1.1rem;
  padding-right: 2.6rem;
}

.feld textarea { min-height: 140px; resize: vertical; }

.feld input:focus,
.feld select:focus,
.feld textarea:focus { border-color: var(--gruen-dunkel); }

.feld input[aria-invalid="true"],
.feld textarea[aria-invalid="true"] { border-color: #a8321e; }

.feld-fehler { color: #a8321e; font-size: 0.92rem; margin-top: 0.3rem; font-weight: 600; }

.feld-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}
.feld-checkbox input {
  width: 1.6rem; height: 1.6rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--gruen-dunkel);
}
.feld-checkbox label { font-size: 0.98rem; font-weight: 400; font-family: var(--font-text); margin: 0; }

/* Honeypot — für Menschen unsichtbar, für Bots verlockend */
.hp-feld {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.pflicht-hinweis { font-size: 0.92rem; color: var(--text-leise); margin-top: 0.85rem; }

.formular-meldung {
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.formular-meldung.erfolg { background: #e4efd3; border: 1px solid var(--blatt); color: var(--gruen-nacht); }
.formular-meldung.fehler { background: #fbe7e3; border: 1px solid #d9a99f; color: #7d2515; }

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  position: relative;
  isolation: isolate;
  background: var(--gruen-nacht);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 6.5rem;      /* unten Platz für die Sticky-Leiste */
  text-align: center;
  font-size: 0.98rem;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--koernung);
  opacity: 0.12; z-index: -1; pointer-events: none;
}

.footer-logo { height: 96px; width: auto; margin: 0 auto 1.25rem; display: block; }

.site-footer a { color: var(--weiss); }

.footer-kontakt { margin-bottom: 1.25rem; }
.footer-kontakt a { font-family: var(--font-head); font-weight: 700; text-decoration: none; }
.footer-kontakt a:hover { text-decoration: underline; }

.footer-links {
  margin: 1.5rem 0 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a { font-family: var(--font-head); font-weight: 600; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

.footer-klein { opacity: 0.7; font-size: 0.88rem; margin-top: 0.75rem; }

.dev-link { display: inline-block; margin-top: 1.25rem; font-size: 0.78rem; opacity: 0.3; }

/* --- Sticky-Kontaktleiste (nur mobil) ------------------------------------ */
.sticky-kontakt {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  z-index: 200;
  box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.28);
  padding-bottom: env(safe-area-inset-bottom);
}

.sticky-kontakt a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: var(--weiss);
  min-height: 56px;
}
.sticky-kontakt svg { width: 20px; height: 20px; flex-shrink: 0; }
.sticky-kontakt .anruf { background: var(--erde); }
.sticky-kontakt .angebot { background: var(--gruen-dunkel); }

/* --- Unterseiten (Impressum, Datenschutz, Danke, Entwickler) -------------- */
.unterseite { padding: 2.5rem 0 4rem; }
.unterseite .container { max-width: 820px; }

.unterseite h1 { font-size: clamp(1.7rem, 6vw, 2.3rem); margin-bottom: 1.25rem; color: var(--gruen-dunkel); }
.unterseite h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.6rem; }
.unterseite h3 { font-size: 1.05rem; margin-top: 1.25rem; margin-bottom: 0.35rem; }
.unterseite ul, .unterseite ol { margin: 0 0 1rem 1.4rem; }
.unterseite li { margin-bottom: 0.35rem; }

.zurueck-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
}
.zurueck-link:hover { text-decoration: underline; }

.info-kasten {
  background: var(--weiss);
  border: var(--kante);
  border-left: 6px solid var(--gruen);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
}

.platzhalter {
  background: #fff3cd;
  border: 1px dashed #b8860b;
  border-radius: 4px;
  padding: 0 0.35rem;
  font-weight: 700;
  color: #7a5a00;
}

/* Dankeseite */
.danke { text-align: center; padding-block: 4rem; }
.danke .haken {
  width: 88px; height: 88px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gruen-dunkel);
  display: grid; place-items: center;
}
.danke .haken svg { width: 44px; height: 44px; color: var(--weiss); }

/* Inline-Code (v. a. auf der internen Seite) */
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--papier-tief);
  border: 1px solid var(--linie);
  border-radius: 5px;
  padding: 0.05em 0.35em;
  overflow-wrap: anywhere;
}

/* --- Entwicklerseite ----------------------------------------------------- */
.dev-liste { list-style: none; margin: 1.5rem 0 1.5rem 0; }

.dev-liste li {
  border: var(--kante);
  border-left: 5px solid var(--gruen);
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.75rem;
  background: var(--weiss);
}
.dev-liste li strong { color: var(--gruen-dunkel); }

.dev-status {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 0.1rem 0.55rem;
  border-radius: 20px;
  background: #fff3cd;
  color: #7a5a00;
  margin-right: 0.5rem;
  vertical-align: 0.1em;
}
.dev-status.erledigt { background: #e4efd3; color: var(--gruen-dunkel); }
.dev-status.wichtig { background: #fbe7e3; color: #7d2515; }

@media (max-width: 699px) {
  .hero-blaetter span:nth-child(n+7) { display: none; }
  .laufband { transform: rotate(-2deg) scale(1.04); }
}

/* --- Ab Tablet ----------------------------------------------------------- */
@media (min-width: 700px) {
  body { font-size: 1.125rem; }
  section { padding-block: 5rem; }
  .hero { padding-block: 4rem 7rem; }
  .hero::after { height: 64px; }
  .hero-logo { height: 190px; }
  .hero-aktionen { flex-direction: row; justify-content: center; max-width: none; }
  .hero-aktionen .btn { flex: 0 1 auto; }
  .cta-aktionen { flex-direction: row; justify-content: center; max-width: none; }
  .header-logo img { height: 56px; }
  .header-tel .nummer { display: inline; }
  .vertrauen-liste { grid-template-columns: repeat(4, 1fr); }
  .karten { grid-template-columns: repeat(2, 1fr); }
  .schritte { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .schritte li { padding-left: 0; padding-top: 4rem; }
  .kontakt-raster { grid-template-columns: 1fr 1fr; align-items: start; }
  .kontakt-karte { padding: 2rem 1.75rem; }
  .sticky-kontakt { display: none; }
  .site-footer { padding-bottom: 3rem; }
  .btn-breit { width: auto; }
}

@media (min-width: 1000px) {
  .karten { grid-template-columns: repeat(3, 1fr); }
  .hero-logo { height: 220px; }
}

/* --- Druck --------------------------------------------------------------- */
@media print {
  .site-header, .sticky-kontakt, .cta-band, .dev-link, form,
  .hero-blaetter, .hero-gras, .hero-glanz, .laufband, .wasserzeichen { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  body::before { display: none; }
  a { text-decoration: underline; }
}
