/* =========================================================================
   Haushaltsaufloesung4U — schlankes Design-System
   Marke: Cerise (#e0277e) + Citron (#8bb11f), Inter Tight + Lato
   ========================================================================= */

:root {
  --cerise:          #e0277e;
  --cerise-dark:     #b31f64;
  --cerise-darker:   #590f32;
  --cerise-light:    #e967a4;
  --cerise-lighter:  #f8d3e5;
  --cerise-lightest: #fbe9f2;
  --citron:          #8bb11f;
  --citron-dark:     #6f8d18;
  --citron-lighter:  #e7efd2;
  --citron-lightest: #f3f7e8;
  --citron-darkest:  #293509;
  --ink:             #1f211b;
  --ink-strong:      #070902;
  --muted:           #51524d;
  --line:            #e2e2e2;
  --white:           #fff;
  --bg-soft:         #f9faf5;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --shadow-s: 0 1px 2px rgba(7,9,2,.06), 0 1px 3px rgba(7,9,2,.05);
  --shadow-m: 0 4px 12px rgba(7,9,2,.08), 0 2px 4px rgba(7,9,2,.05);
  --shadow-l: 0 18px 40px rgba(7,9,2,.12), 0 6px 12px rgba(7,9,2,.06);
  --maxw: 1200px;
  --font-head: 'Inter Tight', Arial, sans-serif;
  --font-body: 'Lato', -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--cerise-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 700; }
ul, ol { padding-left: 1.25rem; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-strong); line-height: 1.15; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.2rem; color: var(--muted); }
.eyebrow { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cerise); margin-bottom: .75rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3rem, 7vw, 6rem); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--cerise-lightest); }
.section--mint { background: var(--citron-lightest); }
.section--dark { background: #2c3325; color: #d7dccb; }   /* gedämpftes, ruhiges Dunkelgrün */
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c3c9b4; }
.section-head { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--cerise); color: #fff; box-shadow: var(--shadow-s); }
.btn--primary:hover { background: var(--cerise-dark); color: #fff; }
.btn--dark { background: var(--ink-strong); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }
.btn--ghost { background: transparent; color: var(--ink-strong); border-color: rgba(7,9,2,.2); }
.btn--ghost:hover { border-color: var(--ink-strong); color: var(--ink-strong); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5b; color: #fff; }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.08rem; }
.btn img { width: 1.15em; height: 1.15em; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row--center { justify-content: center; }

/* ---------- Navbar ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.5rem; list-style: none; padding: 0; margin: 0; }
.nav__links a { color: var(--ink); font-family: var(--font-head); font-weight: 500; font-size: 1rem; }
.nav__links a:hover { color: var(--cerise); text-decoration: none; }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__call { display: inline-flex; align-items: center; gap: .55rem; padding: .38rem .95rem .38rem .42rem; border-radius: 999px; border: 1.5px solid var(--cerise-lighter); background: var(--cerise-lightest); transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease; }
.nav__call:hover { transform: translateY(-1px); background: #fff; border-color: var(--cerise); box-shadow: var(--shadow-s); text-decoration: none; }
.nav__call-ico { flex: none; display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--cerise); color: #fff; }
.nav__call-txt { display: flex; flex-direction: column; line-height: 1.12; }
.nav__call-txt small { font-family: var(--font-head); font-size: .68rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.nav__call-txt strong { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; letter-spacing: .01em; color: var(--ink-strong); white-space: nowrap; }
.nav__dropdown { position: relative; }
.nav__dropdown > button { background: none; border: 0; font: inherit; font-family: var(--font-head); font-weight: 500; color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; gap: .3rem; }
.nav__dropdown > button:hover { color: var(--cerise); }
.nav__menu { position: absolute; top: calc(100% + .6rem); left: 0; min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); box-shadow: var(--shadow-l); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .16s ease; list-style: none; margin: 0; }
.nav__dropdown:hover .nav__menu, .nav__dropdown:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a { display: block; padding: .6rem .8rem; border-radius: var(--radius-s); font-size: .98rem; }
.nav__menu a:hover { background: var(--cerise-lightest); color: var(--cerise-dark); text-decoration: none; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink-strong); border-radius: 2px; margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem); overflow: hidden; background: var(--citron-lightest); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__title { margin-bottom: 1.2rem; }
.hero__title--green { color: var(--citron); text-transform: uppercase; text-shadow: 0 2px 2px rgba(7,9,2,.15); line-height: 1.08; }
.hero__title-top { display: block; color: var(--cerise); }
.hero__text { font-size: 1.18rem; color: var(--ink); margin-bottom: 1.8rem; max-width: 42ch; }
.hero__media img { width: 100%; height: auto; }
.hero--plain { background: var(--citron-lightest); }
.hero__media--graphic img { max-width: 480px; margin-inline: auto; filter: drop-shadow(0 18px 30px rgba(7,9,2,.15)); transform-origin: 62% 58%; will-change: transform; }

/* „Zeigt auf dich" – periodischer Zeige-Stoß zum Betrachter (reines CSS, bewusst als Marken-Element immer aktiv) */
.hero__media--graphic img { animation: hand-point 3.4s cubic-bezier(.34,1.56,.64,1) infinite; }
@keyframes hand-point {
  0%, 20%, 100% { transform: scale(1) translate(0,0); }
  45% { transform: scale(1.12) translate(-1%, 2%); }   /* kräftiger Stoß zum Betrachter */
  62% { transform: scale(1.04) translate(0, .6%); }    /* kurz zurück */
  80% { transform: scale(1.09) translate(-.5%, 1.4%); }/* zweiter Stoß zu dir */
  92% { transform: scale(1) translate(0,0); }
}
.hero__usps { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.8rem; }
.hero__usp { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .98rem; color: var(--ink-strong); }
.hero__usp::before { content: "✓"; display: grid; place-items: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--citron-lightest); color: var(--citron-dark); font-size: .8rem; }

/* ---------- Badges (Auszeichnungen) ---------- */
.badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; }
.badges img { height: 150px; width: auto; border-radius: var(--radius-m); background: #fff; padding: .6rem .9rem; box-shadow: var(--shadow-m); border: 1px solid var(--line); transition: transform .15s ease; }
.badges img:hover { transform: translateY(-3px); }
.badges__label { width: 100%; text-align: center; font-family: var(--font-head); font-weight: 700; color: var(--ink-strong); letter-spacing: .04em; text-transform: uppercase; font-size: .95rem; margin-bottom: .5rem; }
/* Badges kompakter + nach oben gezogen (weniger Abstand zum Hero) */
.section--badges, .section--soft:has(.badges) { padding-block: 1cm 1.5rem; }
.section--badges .badges, .section--soft:has(.badges) .badges { gap: 1.25rem; }
@media (max-width: 720px) { .badges img { height: 104px; } .section--badges, .section--soft:has(.badges) { padding-block: 0.6cm 1rem; } }

/* ---------- Service grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem; transition: transform .15s ease, box-shadow .15s ease, border-color .15s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--cerise-lighter); }
.svc-card__icon { width: 64px; height: 64px; object-fit: contain; }
.svc-card h3 { font-size: 1.25rem; }
.svc-card p { color: var(--muted); font-size: .98rem; margin: 0; }
.svc-card__link { margin-top: auto; font-family: var(--font-head); font-weight: 600; color: var(--cerise-dark); display: inline-flex; align-items: center; gap: .35rem; }
.svc-card__link::after { content: "→"; transition: transform .15s; }
.svc-card:hover .svc-card__link::after { transform: translateX(3px); }

/* ---------- Steps (WhatsApp 4-Schritte) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.5rem; text-align: center; position: relative; }
.step__num { position: absolute; top: 1rem; right: 1.1rem; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--cerise-lighter); }
.step img, .step svg { width: 68px; height: 68px; object-fit: contain; margin: 0 auto .8rem; }
.step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Angebots-Rechner / CTA-Box ---------- */
.quote { background: linear-gradient(135deg, var(--cerise) 0%, var(--cerise-dark) 100%); color: #fff; border-radius: var(--radius-l); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; box-shadow: var(--shadow-l); }
.quote h2 { color: #fff; }
.quote p { color: rgba(255,255,255,.9); font-size: 1.12rem; max-width: 54ch; margin-inline: auto; }
.quote .btn--primary { background: #fff; color: var(--cerise-dark); }
.quote .btn--primary:hover { background: var(--bg-soft); color: var(--cerise-darker); }
.quote .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.quote .btn--ghost:hover { border-color: #fff; color: #fff; }
.quote__qr { display: inline-block; margin-top: 1.6rem; background: #fff; padding: .6rem; border-radius: var(--radius-m); }
.quote__qr img { width: 118px; height: 118px; }

/* ---------- Split (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--img-right .split__media { order: 2; }
.media-photo { border-radius: var(--radius-l); box-shadow: var(--shadow-l); width: 100%; }

/* ---------- Fakten auf einen Blick ---------- */
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.fact { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 1.7rem 1.25rem 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .8rem; box-shadow: var(--shadow-s); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.fact:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: var(--citron); }
.fact > div { min-width: 0; }
.fact__ico { flex: none; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--citron); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 14px rgba(47,204,113,.35); }
.fact__ico svg { width: 1.7rem; height: 1.7rem; }
.fact__k { font-family: var(--font-head); font-weight: 700; color: var(--ink-strong); font-size: 1.05rem; line-height: 1.25; overflow-wrap: break-word; }
.fact__v { color: var(--muted); font-size: .92rem; margin-top: .25rem; line-height: 1.45; overflow-wrap: break-word; }
@media (max-width: 860px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } }

/* ---------- Kundenstimmen ---------- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem; box-shadow: var(--shadow-s); }
.testi-card__stars { color: #f5a623; letter-spacing: .12em; font-size: 1.05rem; }
.testi-card__text { color: var(--ink); line-height: 1.6; }
.testi-card__foot { margin-top: auto; display: flex; align-items: center; gap: .6rem; }
.testi-card__author { font-family: var(--font-head); font-weight: 700; color: var(--ink-strong); }
.testi-card__src { color: var(--muted); font-size: .82rem; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.trust-pill { display: inline-flex; align-items: center; gap: .5rem; background: var(--citron-lightest); color: var(--citron-darkest); border-radius: 999px; padding: .55rem 1.1rem; font-family: var(--font-head); font-weight: 600; font-size: .92rem; }

/* ---------- Info-Spalten (Gut zu wissen) ---------- */
.info-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.5rem; }
.info-card h3 { font-size: 1.15rem; margin-bottom: .7rem; display: flex; align-items: center; gap: .5rem; }
.info-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); display: grid; gap: .35rem; }
.info-card p { color: var(--muted); margin: 0; }

/* ---------- Ratgeber ---------- */
.rat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.rat-card { display: flex; flex-direction: column; gap: .6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.5rem; transition: transform .15s ease, box-shadow .15s ease, border-color .15s; }
.rat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--cerise-lighter); }
.rat-card h3 { font-size: 1.2rem; }
.rat-card p { color: var(--muted); font-size: .96rem; margin: 0; }
.rat-card__link { margin-top: auto; font-family: var(--font-head); font-weight: 600; color: var(--cerise-dark); }
.blog-date { font-size: .82rem; color: var(--muted); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.rat-article { max-width: 760px; margin-inline: auto; }
.rat-article h2 { margin: 2rem 0 .6rem; }
.rat-article p { color: var(--ink); }
.rat-article ul { color: var(--ink); }

/* ---------- Spezialgebiete-Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.chip { display: inline-block; padding: .7rem 1.3rem; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-family: var(--font-head); font-weight: 600; color: var(--ink-strong); }
.chip:hover { border-color: var(--cerise); background: var(--cerise-lightest); color: var(--cerise-dark); text-decoration: none; }

/* ---------- Sofortpreis-Rechner ---------- */
.calc { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; align-items: start; }
.calc__form { display: grid; gap: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow-s); }
.calc__q > .calc__label { display: block; font-family: var(--font-head); font-weight: 700; color: var(--ink-strong); margin-bottom: .7rem; font-size: 1.05rem; }
.calc__opts { display: flex; flex-wrap: wrap; gap: .55rem; }
.calc__opt { position: relative; }
.calc__opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.calc__opt label { display: block; padding: .6rem 1.05rem; border: 1.5px solid var(--line); border-radius: 999px; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink); transition: .12s ease; }
.calc__opt label:hover { border-color: var(--cerise-light); }
.calc__opt input:checked + label { border-color: var(--cerise); background: var(--cerise-lightest); color: var(--cerise-dark); }
.calc__opt input:focus-visible + label { outline: 2px solid var(--cerise); outline-offset: 2px; }
.calc__result { position: sticky; top: 88px; background: linear-gradient(135deg, var(--cerise) 0%, var(--cerise-dark) 100%); color: #fff; border-radius: var(--radius-l); padding: 1.8rem; text-align: center; box-shadow: var(--shadow-l); }
.calc__result .eyebrow { color: #fff; opacity: .85; }
.calc__price { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.1; margin: .3rem 0 .2rem; }
.calc__hint { font-size: .9rem; color: rgba(255,255,255,.9); margin-bottom: 1.2rem; }
.calc__result .btn { width: 100%; justify-content: center; margin-top: .6rem; }
.calc__result .btn--primary { background: #fff; color: var(--cerise-dark); }
.calc__result .btn--primary:hover { background: var(--bg-soft); color: var(--cerise-darker); }
.calc__disclaimer { font-size: .8rem; color: var(--muted); margin-top: 1rem; text-align: center; }
@media (max-width: 820px) { .calc { grid-template-columns: 1fr; } .calc__result { position: static; } }

/* ---------- Welcome / prose ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-bottom: 1rem; }
.prose p { color: var(--muted); font-size: 1.1rem; }

/* ---------- Reviews ---------- */
.reviews { text-align: center; }
.reviews__rating { font-family: var(--font-head); font-weight: 700; font-size: 3rem; color: var(--ink-strong); line-height: 1; }
.reviews__stars { color: #f5a623; font-size: 1.5rem; letter-spacing: .1em; margin: .4rem 0; }
.reviews__meta { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-m); margin-bottom: .8rem; background: #fff; overflow: hidden; }
.faq__item[open] { border-color: var(--cerise-lighter); box-shadow: var(--shadow-s); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink-strong); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--cerise); font-weight: 400; transition: transform .2s; flex: none; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item > p, .faq__item > div { padding: 0 1.3rem 1.2rem; color: var(--muted); margin: 0; }

/* ---------- Lokaler SEO-Block (Städteseiten) ---------- */
.lokal-seo h2 { margin-bottom: 1.2rem; }
.lokal-seo h3 { margin: 2rem 0 .6rem; color: var(--cerise-darker); }
.lokal-seo p { color: var(--ink); }
.lokal-seo .lokal-check { list-style: none; padding: 0; display: grid; gap: .55rem; }
.lokal-seo .lokal-check li { position: relative; padding-left: 1.9rem; }
.lokal-seo .lokal-check li::before { content: "✓"; position: absolute; left: 0; top: .05rem; display: grid; place-items: center; width: 1.35rem; height: 1.35rem; border-radius: 50%; background: var(--citron-lightest); color: var(--citron-dark); font-size: .75rem; font-weight: 700; }
.lokal-faq { margin-top: 1.2rem; }

/* ---------- Anfrage / Formular ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; }
.contact-quick { display: grid; gap: .7rem; align-content: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; box-shadow: var(--shadow-s); }
.contact-quick .btn { justify-content: flex-start; }
.contact-quick__note { font-size: .9rem; color: var(--muted); margin: .4rem 0 0; }
.form { display: grid; gap: .9rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; box-shadow: var(--shadow-s); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form label { display: grid; gap: .3rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-strong); }
.form input, .form textarea { font: inherit; padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-s); background: #fff; color: var(--ink); width: 100%; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--cerise); box-shadow: 0 0 0 3px var(--cerise-lightest); }
.form button { margin-top: .3rem; }
.form__hint { font-size: .8rem; color: var(--muted); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .form__row { grid-template-columns: 1fr; } }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .9rem; color: var(--muted); padding-block: 1rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--cerise); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-strong); color: #c9cbc4; padding-block: 3.5rem 2rem; font-size: .95rem; }
.footer a { color: #c9cbc4; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; }
.footer__logo { margin-bottom: 1rem; }
.footer__logo:has(img) { display: inline-block; background: #fff; padding: .45rem .75rem; border-radius: var(--radius-s); }
.footer__logo img { height: 40px; display: block; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.footer__cities { columns: 2; column-gap: 1.5rem; font-size: .88rem; }
.footer__cities a { display: block; margin-bottom: .35rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 1.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #9a9c95; }
.footer__bottom a { color: #9a9c95; }
.footer__verbund { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1.1rem; font-size: .9rem; }
.footer__verbund-label { color: #fff; font-family: var(--font-head); font-weight: 600; }
.footer__verbund-links { display: flex; flex-wrap: wrap; gap: .45rem .9rem; }
.footer__verbund-me { color: var(--citron); font-weight: 700; }

/* ---------- Text-Wordmark (Marken ohne PNG-Logo) ---------- */
.wordmark { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; line-height: 1; display: inline-flex; align-items: baseline; }
.wordmark__name { color: var(--cerise); }
.wordmark__4u { color: var(--citron); }
.footer__logo .wordmark { font-size: 1.6rem; }
.wordmark--light .wordmark__name { color: #fff; }
.wordmark--light .wordmark__4u { color: var(--citron); }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25D366; box-shadow: var(--shadow-l); display: grid; place-items: center; animation: wa-pulse 2.6s infinite; }
.wa-float img { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.05); }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Sticky CTA-Leiste (mobil) ---------- */
.cta-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: .5rem; padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(7,9,2,.08); }
.cta-bar .btn { flex: 1; justify-content: center; }
@media (max-width: 720px) {
  .cta-bar { display: flex; }
  .wa-float { display: none; }
  body { padding-bottom: 76px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta .btn--ghost, .nav__call { display: none; }
  .nav__toggle { display: block; }
  .nav[data-open="true"] .nav__links { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: flex-start; background: #fff; border-bottom: 1px solid var(--line); padding: 1rem 1.25rem; gap: 1rem; box-shadow: var(--shadow-m); }
  .nav[data-open="true"] .nav__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: .5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__cities { columns: 2; }
}

/* === UNTERSTRICH-FACHMANN: handgezeichneter Strich unter „Ihr Fachmann für", Farbe folgt der Marke === */
.hero__title-top { position: relative; padding-bottom: 10px; width: fit-content; }
.hero__title-top::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: min(240px, 46%); height: 22px;
  background-color: var(--cerise); pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='94' height='6' viewBox='0 0 94 6'%3E%3Cpath d='M93.0079 2.80583C93.0233 3.68544 92.2879 4.38986 91.4102 4.33058C86.0126 3.96603 67.8202 2.886 46.5087 3.258C25.1972 3.62999 7.05368 5.34427 1.67208 5.89696C0.796938 5.98684 0.0374396 5.30852 0.0220859 4.4289C0.00864164 3.65868 0.572724 3.00705 1.33908 2.92878C6.40022 2.41185 25.1436 0.630469 46.4564 0.258452C67.7692 -0.113565 86.5633 1.0126 91.6394 1.35258C92.408 1.40406 92.9945 2.03561 93.0079 2.80583Z' fill='black'/%3E%3C/svg%3E") no-repeat center bottom;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='94' height='6' viewBox='0 0 94 6'%3E%3Cpath d='M93.0079 2.80583C93.0233 3.68544 92.2879 4.38986 91.4102 4.33058C86.0126 3.96603 67.8202 2.886 46.5087 3.258C25.1972 3.62999 7.05368 5.34427 1.67208 5.89696C0.796938 5.98684 0.0374396 5.30852 0.0220859 4.4289C0.00864164 3.65868 0.572724 3.00705 1.33908 2.92878C6.40022 2.41185 25.1436 0.630469 46.4564 0.258452C67.7692 -0.113565 86.5633 1.0126 91.6394 1.35258C92.408 1.40406 92.9945 2.03561 93.0079 2.80583Z' fill='black'/%3E%3C/svg%3E") no-repeat center bottom;
  -webkit-mask-size: 100% auto; mask-size: 100% auto;
}

/* === NAV-MENU-ICO: kleine Leistungs-Icons vor den Dropdown-Eintraegen === */
.nav__menu a { display: flex; align-items: center; gap: .6rem; }
.nav__menu-ico { flex: none; display: grid; place-items: center; width: 26px; height: 26px; }
.nav__menu-ico svg, .nav__menu-ico img { width: 22px; height: 22px; display: block; }

/* „Unsere Leistungen": Block höher + mehr Abstand zu den Kacheln */
#leistungen { padding-top: 1.25rem; }
#leistungen .section-head { margin-bottom: 4rem; }

/* Hero-Hand einheitlich dimensioniert (Feinschliff wie Brandschaden, ohne Kreis) */
.hero__media--graphic img { max-width: 330px; }
@media (max-width: 900px){ .hero__media--graphic img { max-width: min(330px, 78vw); } }
