/* ====================================================================
   ZK Building Cleaner GmbH – Stylesheet
   Farbwelt aus dem Flyer: Taupe/Beige, Anthrazit, Weiß
   ==================================================================== */

:root {
  --taupe:        #a99a86;
  --taupe-dark:   #8a7c69;
  --taupe-light:  #d8cfc2;
  --beige-bg:     #f6f3ee;
  --ink:          #1b1b1b;
  --ink-soft:     #3a3a3a;
  --muted:        #6f6a63;
  --white:        #ffffff;
  --line:         #e7e1d8;

  --shadow-sm: 0 4px 14px rgba(27, 27, 27, .06);
  --shadow-md: 0 12px 34px rgba(27, 27, 27, .10);
  --shadow-lg: 0 24px 60px rgba(27, 27, 27, .16);

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .76rem;
  color: var(--taupe-dark);
  margin-bottom: 14px;
}
.accent { color: var(--taupe-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--taupe-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn:active { transform: scale(.96); }
.btn-block { width: 100%; }

/* ====================================================================
   HEADER
   ==================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-wrap {
  position: relative; display: inline-block; width: 46px; height: 46px;
  border-radius: 10px; overflow: hidden;
}
.brand-logo { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; }

/* Logo: wiederkehrender "Politur"-Glanz + Funkeln, passend zum Putz-Motiv im Logo */
.brand-logo-wrap::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.85), transparent);
  transform: skewX(-20deg);
  animation: logoShine 6s ease-in-out infinite;
}
.brand-logo-sparkle {
  position: absolute; left: 11%; top: 66%; width: 9px; height: 9px;
  background: radial-gradient(circle, #fff 0%, rgba(255,255,255,.7) 45%, transparent 72%);
  border-radius: 50%; opacity: 0;
  animation: logoSparkle 6s ease-in-out infinite;
}
@keyframes logoShine {
  0%, 18%  { left: -60%; }
  38%, 100% { left: 140%; }
}
@keyframes logoSparkle {
  0%, 28%  { opacity: 0; transform: scale(.3); }
  34%      { opacity: 1; transform: scale(1.4); }
  42%      { opacity: 0; transform: scale(.5); }
  100%     { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-logo-wrap::after, .brand-logo-sparkle { animation: none; opacity: 0; }
}
.brand-text {
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  line-height: 1.05; display: flex; flex-direction: column; color: var(--ink);
}
.brand-text small { font-weight: 600; font-size: .68rem; letter-spacing: .12em; color: var(--taupe-dark); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-weight: 500; font-size: .96rem; color: var(--ink-soft); transition: color .2s; }
.main-nav a:hover { color: var(--taupe-dark); }
.nav-cta {
  background: var(--ink); color: var(--white) !important;
  padding: 9px 18px; border-radius: 999px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--taupe-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% 15%, rgba(216,207,194,.55) 0%, rgba(216,207,194,0) 55%),
    radial-gradient(90% 90% at 10% 90%, rgba(169,154,134,.22) 0%, rgba(169,154,134,0) 50%),
    linear-gradient(120deg, #faf8f4 0%, var(--beige-bg) 60%, #ece5da 100%);
}
/* dezente, textfreie Deko-Elemente (angelehnt an die Würfel im Logo/Flyer) */
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 26px; z-index: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(216,207,194,.35));
  box-shadow: var(--shadow-md);
}
.hero::before { width: 220px; height: 220px; top: 12%; right: 8%; transform: rotate(14deg); animation: floatCube1 9s ease-in-out infinite; }
.hero::after  { width: 130px; height: 130px; bottom: 14%; right: 22%; transform: rotate(-10deg);
  background: linear-gradient(145deg, rgba(169,154,134,.30), rgba(216,207,194,.18)); animation: floatCube2 7s ease-in-out infinite; }

@keyframes floatCube1 {
  0%, 100% { transform: translate(0, 0) rotate(14deg); }
  50%      { transform: translate(-14px, 18px) rotate(20deg); }
}
@keyframes floatCube2 {
  0%, 100% { transform: translate(0, 0) rotate(-10deg); }
  50%      { transform: translate(12px, -16px) rotate(-16deg); }
}

/* Eimer-Illustration nur mobil (siehe RESPONSIVE) – auf Desktop bleiben die Deko-Würfel das Bildmotiv.
   Handgezeichnetes Inline-SVG statt Foto/Bibliothek: lizenzfrei, keine externen Abhängigkeiten,
   frei animierbar per CSS. */
.hero-illustration { display: none; }
.hero-illustration-svg { width: 176px; height: auto; filter: drop-shadow(0 16px 26px rgba(27,27,27,.16)); }

.hero-illustration-svg .rig-rock {
  transform-box: fill-box; transform-origin: 50% 100%;
  animation: bucketRock 4.5s ease-in-out infinite;
}
.hero-illustration-svg .mop-sway {
  transform-box: fill-box; transform-origin: 15% 100%;
  animation: mopSway 4s ease-in-out infinite;
}
.hero-illustration-svg .foam {
  transform-box: fill-box; transform-origin: 50% 50%;
  animation: foamPulse 3s ease-in-out infinite;
}
.hero-illustration-svg .bubble {
  animation: bubbleRise 3.6s ease-in-out infinite;
  opacity: 0;
}
.hero-illustration-svg .bubble-1 { animation-delay: 0s; }
.hero-illustration-svg .bubble-2 { animation-delay: .9s; }
.hero-illustration-svg .bubble-3 { animation-delay: 1.8s; }
.hero-illustration-svg .bubble-4 { animation-delay: 2.6s; }
.hero-illustration-svg .sparkle {
  transform-box: fill-box; transform-origin: 50% 50%;
  animation: logoSparkle 3.4s ease-in-out infinite; animation-delay: 1.2s;
}

@keyframes bucketRock {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(1.5deg); }
}
@keyframes mopSway {
  0%, 100% { transform: rotate(-4deg); }
  50%      { transform: rotate(4deg); }
}
@keyframes foamPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.07); }
}
@keyframes bubbleRise {
  0%   { transform: translateY(0); opacity: 0; }
  18%  { opacity: .9; }
  78%  { opacity: .25; }
  100% { transform: translateY(-32px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-illustration-svg .rig-rock,
  .hero-illustration-svg .mop-sway,
  .hero-illustration-svg .foam,
  .hero-illustration-svg .bubble,
  .hero-illustration-svg .sparkle { animation: none; }
  .hero-illustration-svg .bubble { opacity: 0; }
}

.hero-inner { padding: 60px 24px; position: relative; z-index: 1; }
.hero-content { max-width: 640px; position: relative; }
.hero h1 { position: relative; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 22px; }

/* "Schwamm wischt Dreck weg": ein <canvas> legt sich exakt über den Headline-
   Text, wird per JS mit einer Seifenfilm-Textur gefüllt und dient als
   löschbare Maske – der Schwamm (SVG) fährt einen organischen Schrubb-Pfad
   ab und radiert dabei (destination-out) Stück für Stück Löcher hinein, was
   den sauberen Text darunter freilegt (GSAP onUpdate, siehe animations.js).
   Ohne JS/GSAP bleibt das Canvas unsichtbar (opacity 0) – Text ist sofort
   normal lesbar. */
.grime-mask {
  position: absolute; inset: -8px -10px;
  z-index: 2; pointer-events: none;
}
.grime-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0;
}
.wipe-sponge {
  position: absolute; top: 0; left: 0; width: 56px; height: 41px;
  z-index: 3; pointer-events: none; opacity: 0; will-change: transform;
  filter: drop-shadow(0 6px 10px rgba(27,27,27,.3));
}
.sponge-suds { transform-origin: 20px 10px; }
.soap-bubble {
  position: absolute; top: 0; left: 0; width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, rgba(255,255,255,.4) 70%, transparent 85%);
  pointer-events: none; z-index: 4;
}

.hero-lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero-badges li { font-weight: 600; font-size: .92rem; color: var(--taupe-dark); }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}

/* ====================================================================
   SECTIONS
   ==================================================================== */
.section { padding: 96px 0; }
.section-alt { background: var(--beige-bg); }
.section-dark { background: var(--ink); color: #e9e6e0; }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: #b7b1a8; }
.section-head.light .eyebrow { color: var(--taupe-light); }

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
}
.service-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--taupe-light); }
.service-card.featured {
  background: linear-gradient(160deg, #2a2722 0%, #1b1b1b 100%);
  border-color: var(--ink); color: #efece6;
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: #c4beb4; }
.service-card.featured .service-icon { background: rgba(217,207,194,.16); }
.service-card.featured .service-icon svg { fill: var(--taupe-light); }

.badge-top {
  position: absolute; top: -12px; left: 26px;
  background: var(--taupe); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.service-icon {
  position: relative; overflow: hidden;
  width: 58px; height: 58px; border-radius: 14px; background: var(--beige-bg);
  display: grid; place-items: center; margin-bottom: 20px;
}
.service-icon svg { width: 30px; height: 30px; fill: var(--taupe-dark); position: relative; z-index: 1; }
.service-icon::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.75), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.service-card:hover .service-icon::after { left: 130%; }
@media (prefers-reduced-motion: reduce) {
  .service-icon::after { transition: none; }
}
.service-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .96rem; }

/* ---------- Vorteile ---------- */
.vorteile-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vorteile-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.vorteile-text p { color: var(--muted); margin-bottom: 28px; font-size: 1.06rem; }
.vorteile-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.vorteile-list li {
  display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-soft);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; box-shadow: var(--shadow-sm);
}
.check {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--taupe); color: var(--white);
  display: grid; place-items: center; font-size: .82rem; font-weight: 700;
}

/* ---------- Über uns ---------- */
.about-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.about-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); margin-bottom: 14px; font-size: 1.05rem; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fact {
  background: var(--beige-bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
}
.fact-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--taupe-dark); }
.fact-label { color: var(--muted); font-weight: 600; font-size: .9rem; letter-spacing: .04em; }

/* ---------- Einsatzgebiet ---------- */
.area-grid {
  list-style: none; display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  max-width: 960px; margin: 0 auto;
}
.area-grid li {
  position: relative; display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 20px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  color: var(--ink); box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
/* dezenter Akzentstreifen links */
.area-grid li::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--taupe), var(--taupe-dark));
  transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.area-grid li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--taupe-light); }
.area-grid li:hover::before { transform: scaleY(1); }

.area-pin {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: var(--beige-bg); display: grid; place-items: center;
  transition: background .25s ease;
}
.area-pin svg { width: 21px; height: 21px; fill: var(--taupe-dark); transition: fill .25s ease; }
.area-grid li:hover .area-pin { background: var(--taupe-dark); }
.area-grid li:hover .area-pin svg { fill: #fff; }

.area-note { text-align: center; margin-top: 34px; color: var(--muted); font-size: 1.06rem; }
.area-note a { color: var(--taupe-dark); font-weight: 600; text-decoration: underline; }

/* ---------- Kontakt ---------- */
.kontakt-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; margin-bottom: 34px; }

.form-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-lg); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .98rem;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfaf8; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--taupe); box-shadow: 0 0 0 3px rgba(169,154,134,.18); background: #fff;
}
.field textarea { resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--muted); margin: 4px 0 20px; }
.consent input { margin-top: 3px; flex: none; }
.consent a { color: var(--taupe-dark); text-decoration: underline; font-weight: 600; }
.form-status { margin-top: 14px; font-weight: 600; font-size: .92rem; text-align: center; min-height: 1em; }
.form-status.ok { color: #2e7d4f; }
.form-status.err { color: #c0392b; }

.kontakt-info { display: flex; flex-direction: column; gap: 22px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(217,207,194,.14); display: grid; place-items: center; font-size: 1.2rem;
}
.ci-label { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe-light); margin-bottom: 2px; }
.contact-list a { font-weight: 600; }
.contact-list a:hover { color: var(--taupe-light); text-decoration: underline; }

.qr-card {
  display: flex; gap: 16px; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 18px;
}
.qr-box { background: #fff; padding: 8px; border-radius: 10px; line-height: 0; }
.qr-box img, .qr-box canvas { display: block; }
.qr-text { display: flex; flex-direction: column; gap: 4px; }
.qr-text strong { font-family: var(--font-head); }
.qr-text span { font-size: .86rem; color: #b7b1a8; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,.1); }
.map-wrap iframe { display: block; filter: grayscale(.2); }

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer { background: #141414; color: #cfcabf; padding: 60px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { width: 64px; border-radius: 12px; margin-bottom: 14px; }
.footer-brand p { font-family: var(--font-head); font-style: italic; color: var(--taupe-light); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
/* Marken-Farben statt neutralem Grau, damit die Icons auf Anhieb erkennbar sind */
.footer-social a[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fdb32c 18%, #f6631a 38%, #dd2a7b 62%, #8134af 82%, #515bd4 100%);
}
.footer-social a[aria-label="TikTok"] { background: #000000; }
.footer-social a[aria-label="WhatsApp"] { background: #25d366; }
.footer-social a:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: var(--shadow-sm); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer-col p { font-size: .94rem; line-height: 1.9; }
.footer-col a:hover { color: var(--taupe-light); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 24px; padding-top: 22px; font-size: .84rem; color: #8c877e; }
.footer-tag { color: var(--taupe-light); letter-spacing: .04em; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: #cfcabf; }
.footer-legal a:hover { color: var(--taupe-light); text-decoration: underline; }

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.legal-page { padding: 120px 0 80px; }
.legal-page .container { max-width: 860px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal-page .updated { color: var(--muted); font-size: .9rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.3rem; margin: 36px 0 12px; color: var(--ink); }
.legal-page h3 { font-size: 1.05rem; margin: 22px 0 8px; color: var(--ink-soft); }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 1rem; margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; margin-bottom: 12px; }
.legal-page a { color: var(--taupe-dark); text-decoration: underline; }
.legal-page .todo { background: #fff8e6; border: 1px solid #f0dca0; border-radius: 10px; padding: 10px 14px; font-size: .9rem; color: #8a6d1f; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--taupe-dark); margin-bottom: 28px; }
.back-link:hover { text-decoration: underline; }
.simple-header { position: fixed; inset: 0 0 auto 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.simple-header .header-inner { height: 72px; }

/* ---------- Floating Call (mobil) ---------- */
.floating-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none;
  width: 58px; height: 58px; border-radius: 50%; background: var(--ink); color: #fff;
  align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: var(--shadow-lg);
}
.floating-call:hover { background: var(--taupe-dark); }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 920px) {
  .vorteile-inner, .about-inner, .kontakt-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .35s ease; pointer-events: none;
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
  .floating-call { display: flex; }

  /* ---- Hero: animierte Eimer-Illustration, unten rechts auf Höhe von
     "Zuverlässig & termingerecht" – hinter dem Text, Lesbarkeit hat Vorrang. ---- */
  .hero { min-height: 0; padding-top: 96px; overflow: hidden; }
  .hero::before, .hero::after { display: none; }
  .hero-badge-anchor { position: relative; }
  .hero-illustration {
    display: block; position: absolute; right: -8px; top: 50%;
    transform: translateY(-50%);
    z-index: 0; pointer-events: none; opacity: .85;
  }
  .hero-illustration-svg { width: 150px; }
  .hero-inner { padding: 40px 20px 52px; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.7rem); }
  .hero-lead { font-size: 1.02rem; margin-bottom: 24px; }
  .hero-actions { gap: 12px; margin-bottom: 24px; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { flex-direction: column; gap: 10px; }

  /* ---- Konsistenter Abstands-Rhythmus: 16 / 32 / 40 / 64 ---- */
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .vorteile-list { grid-template-columns: 1fr; gap: 16px; }
  .about-facts { grid-template-columns: 1fr 1fr; gap: 16px; }
  .area-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card, .fact, .form-card { padding: 22px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .kontakt-grid { gap: 32px; }
  .qr-card { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: clamp(1.9rem, 10vw, 2.4rem); }
  .brand-text { font-size: .92rem; }
}
