/* =========================================================
   Amel's Dienstleistungen & Entrümpelung – Stylesheet
   Marken-Farben: Rot #E1001A · Schwarz · Weiß
   ========================================================= */

/* ---------- Schriftart (Überschriften) ---------- */
@font-face {
  font-family: "Swis721";
  src: url("../assets/fonts/swis721-black.woff2") format("woff2"),
       url("../assets/fonts/swis721-black.woff") format("woff"),
       url("../assets/fonts/swis721-black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Variablen ---------- */
:root {
  --red: #e1001a;
  --red-dark: #b30015;
  --black: #111111;
  --ink: #1c1c1c;
  --gray: #555555;
  --gray-light: #f4f4f5;
  --line: #e6e6e8;
  --white: #ffffff;
  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .14);
  --head: "Swis721", "Arial Black", Helvetica, Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--head);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: .2px;
  margin: 0 0 .5em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1em;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ---------- Scroll-Reveal (Einflieg-Effekt beim Scrollen) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1),
              transform .7s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

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

.text-red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: 1rem;
  text-align: center;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(225, 0, 26, .3); }
.btn-red:hover { background: var(--red-dark); }

.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #000; }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
.btn-ghost:hover { background: #fff; color: var(--black); border-color: #fff; }

.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: #fff; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo { height: 52px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  white-space: nowrap;
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }

/* "Direkt anrufen"-Element oben rechts in der Leiste – gleiches Design
   wie im Hero/Menü, aber für den hellen Header angepasst */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 6px 16px 6px 6px;
  border-radius: 999px;
  background: var(--gray-light);
  border: 1px solid var(--line);
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.header-cta:hover {
  background: #fff;
  border-color: var(--red);
  transform: translateY(-1px);
}
.header-cta .hero-call-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 14px rgba(225, 0, 26, .3);
}
.header-cta .hero-call-icon svg { width: 20px; height: 20px; fill: #fff; }
.header-cta .hero-call-text { display: flex; flex-direction: column; line-height: 1.15; }
.header-cta .hero-call-label {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray);
  white-space: nowrap;
}
.header-cta .hero-call-num {
  font-family: var(--head);
  font-size: 1.12rem;
  color: var(--black);
  letter-spacing: .3px;
  white-space: nowrap;
}

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--black);
  border-radius: 3px;
  transition: .25s;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, #1c1c1c 0%, #2b2b2b 55%, #161616 100%);
  overflow: hidden;
  /* Hero füllt den sichtbaren Bildschirm, damit die Leistungen
     beim ersten Öffnen noch nicht "durchblitzen" */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: var(--red);
  transform: skewX(-12deg);
  opacity: .9;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,.85) 35%, rgba(17,17,17,0) 75%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  /* Mehr Polster unten als oben -> der zusammenhängende Block sitzt
     etwas oberhalb der Mitte (Hannover-Button bleibt oben), kein Loch */
  padding: 40px 0 130px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
}
.hero-top, .hero-bottom { width: 100%; }
.hero-bottom { display: flex; flex-direction: column; }
.hero .eyebrow {
  display: inline-block;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  color: #fff;
  background: var(--red);
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 30px;
}
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.14;
  margin-bottom: .65em;
}
.hero h1 span { color: var(--red); }
.hero .lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: #e8e8e8;
  max-width: 580px;
  margin-bottom: 32px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Desktop: beide Hero-Buttons gleich breit (gestapelt), Text passt bequem */
@media (min-width: 721px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 440px;
    gap: 14px;
  }
  .hero-actions .btn { width: 100%; }
}

/* Professionelles "Direkt anrufen"-Element im Hero */
.hero-call {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background .2s ease, transform .15s ease, border-color .2s ease;
}
.hero-call:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255,255,255,.35); transform: translateY(-2px); }
/* Desktop: "Direkt anrufen"-Element im Hero ausblenden (dort gibt es die zwei Buttons + Header-Anruf) */
.hero .hero-call { display: none; }
.hero-call-icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(225, 0, 26, .4);
}
.hero-call-icon svg { width: 22px; height: 22px; fill: #fff; }
.hero-call-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero-call-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c9c9c9;
}
.hero-call-num {
  font-family: var(--head);
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: .5px;
}

/* Auswahl-Dropdown (Gewünschte Leistung) */
.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 40px 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fcfcfd;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.select-wrap select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 0, 26, .12);
}
.service-custom { margin-top: 12px; }

/* Anklickbare Adresse + Karten-Hinweis */
.ci-address {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}
.ci-address:hover { color: var(--red); }
.ci-maphint {
  font-family: var(--body);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--red);
}
.ci-maphint::before { content: "📍 "; }

/* Google-Maps-Karte (einklappbar) */
.map-box {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-box iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* =========================================================
   SECTIONS – allgemein
   ========================================================= */
.section { padding: 84px 0; scroll-margin-top: 66px; }
.section.alt { background: var(--gray-light); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px;
}
.section-head .kicker {
  display: inline-block;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .82rem;
  color: var(--red);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.section-head p { color: var(--gray); font-size: 1.08rem; text-align: center; }

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card .icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(225, 0, 26, .1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card .icon svg { width: 30px; height: 30px; stroke: var(--red); fill: none; stroke-width: 2; }
.service-card h3 { font-size: 1.15rem; margin-bottom: .4em; }
.service-card p { color: var(--gray); font-size: .96rem; margin: 0; }

/* ---------- Warum wir ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.feature { text-align: center; }
.feature .num {
  font-family: var(--head);
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}
.feature h3 { font-size: 1.1rem; text-transform: none; }
.feature p { color: var(--gray); font-size: .96rem; margin: 0; }

/* ---------- Ablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--head);
  position: absolute;
  top: -22px; left: 28px;
  width: 48px; height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 18px rgba(225,0,26,.35);
}
.step h3 { margin-top: 14px; font-size: 1.2rem; text-transform: none; }
.step p { color: var(--gray); margin: 0; }

/* =========================================================
   REFERENZEN (Vorher / Nachher)
   ========================================================= */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}
.ba-item { margin: 0; }
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* Vorher | Nachher nebeneinander (Desktop) */
  gap: 16px;
}
.ba-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e9e9ec;
  box-shadow: var(--shadow);
}
.ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .72rem;
  color: #fff;
  background: rgba(17, 17, 17, .82);
  padding: 5px 12px;
  border-radius: 999px;
}
.ba-tag--after { background: var(--red); }
/* Platzhalter, solange noch kein Bild eingefügt ist */
.ba-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray);
  font-size: .9rem;
  border: 2px dashed #cfcfd4;
  border-radius: var(--radius);
}
.ba-ph svg { width: 34px; height: 34px; fill: none; stroke: #b7b7bd; stroke-width: 1.6; }
.ba-item h3 {
  margin: 16px 0 0;
  font-size: 1.15rem;
  text-transform: none;
}

/* =========================================================
   FAQ (Akkordeon)
   ========================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 58px 20px 22px;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item summary:hover { color: var(--red); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { margin: 0; color: var(--gray); text-align: left; }

/* =========================================================
   KONTAKT / FORMULAR
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.contact-info p { color: var(--gray); }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list .ci-icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.contact-list .ci-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-list .ci-label { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.contact-list .ci-value { font-weight: 700; font-size: 1.05rem; }

/* Formular */
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 7px;
}
.field label .req { color: var(--red); }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fcfcfd;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 0, 26, .12);
}
.field textarea { resize: vertical; min-height: 120px; }

/* Datei-Upload */
.filedrop {
  border: 2px dashed var(--line);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  background: #fcfcfd;
}
.filedrop:hover { border-color: var(--red); background: #fff; }
.filedrop svg { width: 34px; height: 34px; margin: 0 auto 8px; stroke: var(--red); fill: none; stroke-width: 1.8; }
.filedrop .fd-main { font-weight: 600; }
.filedrop .fd-sub { font-size: .85rem; color: var(--gray); }
.filedrop input[type="file"] { display: none; }
.file-name { margin-top: 10px; font-size: .9rem; color: var(--red); font-weight: 600; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 22px;
}
.consent input { margin-top: 4px; }
.consent a { color: var(--red); text-decoration: underline; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-note {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: .95rem;
}
.form-note.ok { background: #e7f6ec; color: #1d7a3d; border: 1px solid #b6e2c4; }
.form-note.err { background: #fdeaec; color: #b30015; border: 1px solid #f3c3c9; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--black);
  color: #cfcfcf;
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .logo {
  width: clamp(190px, 62%, 250px);
  height: auto;
  margin-bottom: 18px;
}
.site-footer h4 {
  font-family: var(--head);
  text-transform: uppercase;
  color: #fff;
  font-size: 1rem;
  letter-spacing: .5px;
  margin: 0 0 16px;
}
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid #2b2b2b;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
  color: #8d8d8d;
}
.footer-bottom a { color: #8d8d8d; }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   RECHTSSEITEN (Impressum / Datenschutz)
   ========================================================= */
.legal { padding: 70px 0 80px; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 1em; }
.legal h2 {
  font-size: 1.25rem;
  text-transform: none;
  margin: 1.8em 0 .5em;
  padding-top: 1em;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.05rem; text-transform: none; margin: 1.2em 0 .3em; }
.legal p, .legal li { color: var(--gray); text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
.legal a { color: var(--red); text-decoration: underline; }
.legal .todo {
  background: #fff8e1;
  border: 1px solid #ffe082;
  color: #8a6d00;
  padding: 2px 6px;
  border-radius: 5px;
  font-weight: 600;
}
.legal address { font-style: normal; color: var(--ink); line-height: 1.8; }
.legal .back {
  display: inline-block;
  margin-bottom: 28px;
  font-weight: 600;
  color: var(--red);
}

/* Anruf-Button im Menü – standardmäßig (Desktop) ausgeblendet */
.nav-call { display: none; }

/* Floating Call-Button (mobil) */
.fab-call {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--red);
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(225,0,26,.45);
  /* Standardmäßig verborgen – wird per JS eingeblendet,
     sobald der breite "Direkt anrufen"-Button weggescrollt ist */
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.85);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.fab-call svg { width: 26px; height: 26px; fill: #fff; }

/* Eingeblendet (Klasse wird per JS gesetzt) */
.fab-call.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  /* Off-Canvas-Menü abschneiden, OHNE die sticky-Kopfleiste zu brechen:
     overflow-x:clip erzeugt – anders als hidden – keinen Scroll-Container. */
  html, body { overflow-x: clip; }

  /* Wichtig: Der Header hat selbst einen backdrop-filter und würde sonst zum
     "Backdrop-Root" – dann könnte das Menü darin nur den Header weichzeichnen
     statt der ganzen Seite. Auf Mobil daher entfernen, damit der Menü-Blur greift. */
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #fff;
  }

  /* Mobiles Menü – Glasoptik (frosted glass) */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    height: 100vh;
    z-index: 95;
    width: min(68%, 250px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(20, 20, 24, 0.5);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    backdrop-filter: blur(30px) saturate(180%);
    border-left: 2.25px solid var(--red);
    padding: 96px 26px 28px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  /* Schatten nur bei offenem Menü – sonst ragt er als dunkler Streifen
     vom ausgeblendeten Panel in den rechten Bildschirmrand */
  .main-nav.open {
    transform: none;
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.4);
  }

  /* Fallback: Browser ohne backdrop-filter bekommen ein dichtes Panel,
     damit der Inhalt dahinter trotzdem nicht durchscheint. */
  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .main-nav { background: rgba(16, 16, 18, 0.94); }
  }
  .main-nav a {
    font-size: 1.2rem;
    padding: 14px 2px;
    color: #fff;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .main-nav a:hover,
  .main-nav a:active { color: var(--red); }
  .main-nav a::after { display: none; }

  /* Anruf-Button unten im Glas-Menü – gleicher Look wie das
     "Direkt anrufen"-Element auf der Seite, nur kompakter */
  .main-nav .nav-call {
    display: flex;           /* überschreibt die Standard-Ausblendung (.nav-call{display:none}) */
    align-items: center;
    margin-top: auto;        /* schiebt den Button an den unteren Panel-Rand */
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 10px 8px 8px;
    border-bottom: 0;
    box-sizing: border-box;
    text-align: left;        /* Label + Nummer linksbündig (statt rechtsbündig wie die Links) */
  }
  .main-nav .nav-call .hero-call-icon { width: 32px; height: 32px; }
  .main-nav .nav-call .hero-call-icon svg { width: 16px; height: 16px; }
  .main-nav .nav-call .hero-call-label { font-size: .6rem; letter-spacing: .6px; }
  .main-nav .nav-call .hero-call-num { font-size: .84rem; white-space: nowrap; }
  /* letzter Text-Link bekommt keine Trennlinie mehr (Button folgt) */
  .main-nav a:nth-last-child(2) { border-bottom: 0; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Layout-Spalten auf 1 reduzieren */
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 56px 0; }
  .fab-call { display: flex; }

  /* Platz, damit der schwebende Anruf-Button nichts verdeckt */
  .site-footer { padding-bottom: 96px; }
  .footer-bottom { font-size: .82rem; gap: 6px 14px; }

  /* Header etwas kompakter, Logo gut sichtbar */
  .header-inner { padding: 12px 18px; }
  .container { padding: 0 20px; }

  /* HERO: Schrift skalieren, sauber umbrechen, nicht überlaufen */
  .hero-inner { padding: 32px 20px 110px; max-width: 100%; }
  /* Roter Bereich wandert nach unten (hinter die Buttons),
     damit die Überschrift auf dunklem Grund steht */
  .hero::before {
    top: auto; bottom: -14%;
    right: -28%;
    width: 88%; height: 68%;
    opacity: .82;
  }
  /* Dunkler Verlauf hält den Überschrift-Bereich lesbar */
  .hero::after {
    background: linear-gradient(180deg,
      rgba(17, 17, 17, .96) 0%,
      rgba(17, 17, 17, .82) 40%,
      rgba(17, 17, 17, .42) 72%,
      rgba(17, 17, 17, .12) 100%);
  }
  .hero h1 {
    font-size: clamp(1.4rem, 6.6vw, 2.1rem);
    overflow-wrap: break-word;
    hyphens: none;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
  }
  .hero .lead { font-size: 1.05rem; }
  /* "Hannover & Umgebung"-Pille auf volle Breite wie die Buttons */
  .hero .eyebrow {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    /* nur den Badge optisch etwas höher ziehen – Rest bleibt unverändert */
    position: relative;
    top: -26px;
  }

  /* Buttons: volle Breite, Text darf umbrechen, gute Tap-Größe */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .btn {
    white-space: normal;
    padding: 16px 22px;
    line-height: 1.2;
    font-size: .98rem;
  }

  /* Mobil: "Unsere Leistungen" ausblenden, "Direkt anrufen"-Element zeigen */
  .hero-actions .btn-ghost { display: none; }
  .hero .hero-call { display: flex; width: 100%; margin-top: 24px; }
  .hero-call-num { font-size: 1.3rem; white-space: nowrap; }

  /* Abschnitts-Überschriften etwas kleiner */
  .section-head { margin-bottom: 38px; }
  .section-head h2 { font-size: clamp(1.55rem, 6.5vw, 2.1rem); }
  .section-head p { font-size: 1rem; }

  /* Kontakt: Formular & Infos handytauglich */
  .contact-form { padding: 24px 20px; }
  .contact-info h2 { font-size: clamp(1.6rem, 7vw, 2.1rem); }

  /* Karten & Schritte etwas kompakter */
  .service-card { padding: 26px 22px; }
  .step { padding: 30px 24px; }

  /* Referenzen: Vorher/Nachher untereinander (größere Bilder) */
  .ba-pair { grid-template-columns: 1fr; gap: 12px; }
  .ba-grid { gap: 36px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; gap: 30px; }
  .brand .logo { height: 42px; }
  .hero h1 { font-size: clamp(1.3rem, 7vw, 1.85rem); }
  .hero-call-num { font-size: 1.2rem; }
  .fab-call { width: 56px; height: 56px; right: 14px; bottom: 14px; }
}

/* =========================================================
   MOBILE / TOUCH: keine Hover-Effekte (verhindert "sticky hover",
   bei dem ein Element nach dem Antippen im Hover-Zustand bleibt).
   Greift sowohl auf echten Touch-Geräten als auch in der schmalen
   (mobilen) Ansicht – auf dem Desktop bleiben die Effekte erhalten.
   ========================================================= */
@media (hover: none), (max-width: 720px) {
  .btn:hover { transform: none; }
  .btn-red:hover { background: var(--red); }
  .btn-dark:hover { background: var(--black); }
  .btn-ghost:hover { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
  .btn-outline:hover { background: transparent; color: var(--black); }
  .hero-call:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    transform: none;
  }
  .service-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--line);
  }
  .filedrop:hover { border-color: var(--line); background: #fcfcfd; }
}
