/* =========================================================
   Eibisch Recycling – Stylesheet (Redesign)
   CI: Grün #3EA83D · Dunkles Slate #232C32 · Barlow / Barlow Condensed
   Aufbau: Tokens · Basis · Utilities · Buttons · Topbar ·
           Header/Nav · Hero · Proof · Sektionen · Leistungen ·
           Prozess · Stats · Warum · Feature · Kontakt · Footer ·
           Reveal/Motion · Responsive
   ========================================================= */

/* ---------- Design-Tokens ---------- */
:root {
  /* Markenfarben (CI) */
  --green:        #3ea83d;
  --green-600:    #348a33;
  --green-700:    #2b7429;
  --green-050:    #eaf5ea;
  --green-glow:   rgba(62, 168, 61, 0.28);

  /* Dunkle Flächen */
  --dark:   #232c32;
  --dark-2: #1a2125;
  --dark-3: #2d373e;
  --dark-4: #384349;

  /* Neutrale Töne (kühles Slate) */
  --ink:      #141a1f;
  --ink-2:    #384750;
  --muted:    #5a6874;
  --muted-2:  #8a949c;
  --line:     #e4e8eb;
  --line-2:   #d3dade;
  --white:    #ffffff;
  --bg:       #ffffff;
  --bg-soft:  #f4f7f8;
  --bg-soft-2:#eef2f4;

  /* Auf dunklem Grund */
  --on-dark:       #e9eef1;
  --on-dark-muted: #adb8bf;

  /* Typografie */
  --font:      "Barlow", "Segoe UI", Arial, sans-serif;
  --font-head: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;

  /* Radien */
  --r-xs: 4px;
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Schatten (Elevations-Skala) */
  --sh-1: 0 1px 2px rgba(16, 24, 30, 0.06), 0 2px 8px -4px rgba(16, 24, 30, 0.12);
  --sh-2: 0 10px 30px -18px rgba(16, 24, 30, 0.35);
  --sh-3: 0 26px 60px -30px rgba(16, 24, 30, 0.5);
  --sh-green: 0 20px 45px -22px rgba(62, 168, 61, 0.55);

  /* Layout & Abstände */
  --container: 1220px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
  --section:   clamp(4rem, 8vw, 7rem);

  /* Z-Index-Skala */
  --z-nav-backdrop: 90;
  --z-header: 100;
  --z-nav: 110;

  /* Motion */
  --t:      0.2s ease;
  --t-slow: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  letter-spacing: 0.005em;
  color: inherit;
  text-wrap: balance;
}

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

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 2px; }

::selection { background: var(--green); color: #fff; }

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 300;
  background: var(--green);
  color: #05210a;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border-radius: var(--r-sm);
  transition: top var(--t);
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout-Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark {
  position: relative; overflow: hidden; color: var(--on-dark);
  background:
    radial-gradient(1100px 520px at 85% -30%, rgba(62,168,61,0.14), transparent 60%),
    linear-gradient(180deg, #2b353c 0%, #1f272c 100%);
}
.section--dark > .container { position: relative; z-index: 1; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.ico { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }

/* Überschriften-Bausteine */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green); }
.eyebrow--light { color: #74d072; }

.section__head { max-width: 780px; margin: 0 auto clamp(2.5rem, 5vw, 3.75rem); text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.section__head--left .eyebrow { justify-content: flex-start; }

.section__title {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 700;
  letter-spacing: 0.004em;
}
.section__lead {
  margin-top: 1.15rem; font-size: 1.15rem; line-height: 1.6; color: var(--muted);
}
.section--dark .section__lead { color: var(--on-dark-muted); }

/* Grüne Markierung / Akzent im Fließ- und Überschriftentext */
.accent { color: var(--green); }
.mark { position: relative; white-space: nowrap; z-index: 0; }
.mark::after {
  content: ""; position: absolute; z-index: -1;
  left: -0.06em; right: -0.06em; bottom: 0.06em; height: 0.34em;
  background: var(--green);
  transform: skewX(-11deg);
  opacity: 0.92;
}

/* Textlink mit Pfeil */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600; letter-spacing: 0.03em;
  font-size: 1.05rem; color: var(--green-600); cursor: pointer;
}
.arrow-link svg { width: 1.15em; height: 1.15em; transition: transform var(--t); }
.arrow-link:hover svg { transform: translateX(5px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem;
  letter-spacing: 0.03em; line-height: 1;
  padding: 0.95rem 1.85rem;
  border: 2px solid transparent; border-radius: var(--r-sm);
  cursor: pointer; text-align: center;
  transition: background var(--t), color var(--t), border-color var(--t),
              transform var(--t), box-shadow var(--t);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--green); color: #06240a; border-color: var(--green); box-shadow: var(--sh-green); }
.btn--primary:hover { background: var(--green-600); border-color: var(--green-600); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.14); }
.btn--dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn--dark:hover { background: #10161a; border-color: #10161a; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--green); color: var(--green-600); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 2.15rem; font-size: 1.18rem; }

/* ---------- Bau-Sparte: roter Akzent (Sub-Brand) ---------- */
.theme-bau {
  --green: #c0362f;
  --green-600: #9f2a24;
  --green-700: #86201b;
  --green-050: #f8ebea;
  --green-glow: rgba(192, 54, 47, 0.3);
  --sh-green: 0 20px 45px -22px rgba(192, 54, 47, 0.5);
}
.theme-bau .btn--primary { color: #fff; }

/* ---------- Topbar ---------- */
.topbar { background: var(--dark-2); color: var(--on-dark-muted); font-size: 0.86rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar__tag { display: none; font-weight: 600; letter-spacing: 0.04em; color: var(--on-dark-muted); }
.topbar__list {
  display: flex; flex-wrap: wrap; gap: 0.35rem 1.7rem;
  list-style: none; margin: 0; padding: 0.5rem 0;
}
.topbar__list li { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar__list .ico { color: var(--green); }
.topbar a:hover { color: #fff; }

/* ---------- Header und Navigation ---------- */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t), box-shadow var(--t);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 82px;
  transition: min-height var(--t);
}
.header__logo { display: inline-flex; }
.header__logo img { width: 205px; height: auto; transition: width var(--t); }
.header.is-scrolled { background: rgba(26, 33, 37, 0.96); backdrop-filter: blur(8px); box-shadow: 0 10px 30px -18px rgba(0,0,0,0.75); }
.header.is-scrolled .header__inner { min-height: 64px; }
.header.is-scrolled .header__logo img { width: 172px; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav__list { display: flex; gap: 0.2rem; list-style: none; margin: 0; padding: 0; }
.nav__list > li { position: relative; }
.nav__list > li > a,
.nav__toggle {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: #d6dbde; font-weight: 600; font-size: 0.99rem; font-family: var(--font);
  padding: 0.7rem 0.9rem;
  background: none; border: 0; cursor: pointer;
  transition: color var(--t);
}
.nav__list > li > a::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.42rem;
  height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav__list > li > a:hover::after,
.nav__list > li > a[aria-current="page"]::after { transform: scaleX(1); }
.nav__list > li > a[aria-current="page"] { color: #fff; }
.nav__list > li > a:hover,
.nav__toggle:hover { color: #fff; }
.nav__toggle svg { width: 0.85em; height: 0.85em; transition: transform var(--t); }
.nav__item--open .nav__toggle svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 264px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  box-shadow: var(--sh-3);
  list-style: none; margin: 0; padding: 0.45rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav__item:hover .dropdown,
.nav__item--open .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 0.68rem 0.9rem;
  color: var(--ink-2); font-weight: 500; font-size: 0.97rem;
  border-radius: var(--r-xs);
  transition: background var(--t), color var(--t), padding-left var(--t);
}
.dropdown a:hover { background: var(--green-050); color: var(--green-700); padding-left: 1.15rem; }

.nav__cta { margin-left: 0.5rem; }
.nav__close { display: none; }

/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px;
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-sm); cursor: pointer;
}
.burger span {
  display: block; width: 22px; height: 2px; margin-inline: auto;
  background: #fff; transition: transform var(--t), opacity var(--t);
}

/* ---------- Hero (Startseite) ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(105deg, rgba(20,26,30,0.94) 0%, rgba(20,26,30,0.78) 46%, rgba(20,26,30,0.5) 100%),
    radial-gradient(1000px 560px at 88% -10%, var(--green-glow), transparent 60%),
    url("../assets/header.jpg") center / cover no-repeat;
}
/* Diagonale grüne Akzentkante unten */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 64px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 34%, 0 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}
.hero__lead { max-width: 40rem; }
.hero__title {
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  font-weight: 700; line-height: 0.98; letter-spacing: 0.002em;
  margin-bottom: 1.4rem;
}
.hero__text { font-size: 1.2rem; line-height: 1.6; color: #d3d9de; max-width: 40rem; margin: 0 0 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 0.6rem 0.75rem;
  list-style: none; margin: 2.25rem 0 0; padding: 0;
}
.hero__chips li {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: #eaf0f2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.5rem 0.85rem; border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.hero__chips .ico { width: 1.05rem; height: 1.05rem; color: var(--green); }

/* Schnell-Anfrage-Karte im Hero */
.quote-card {
  background: var(--white); color: var(--ink);
  border-radius: var(--r-lg); box-shadow: var(--sh-3);
  overflow: hidden; isolation: isolate;
}
.quote-card__head {
  background: var(--green); color: #06240a;
  padding: 1.15rem 1.5rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.quote-card__head .ico { width: 1.6rem; height: 1.6rem; }
.quote-card__head h2 { font-size: 1.5rem; letter-spacing: 0.01em; }
.quote-card__head p { margin: 0.05rem 0 0; font-size: 0.9rem; font-weight: 600; }
.quote-card__body { padding: 1.35rem 1.5rem 1.6rem; }

/* ---------- Proof-Leiste (Vertrauen / Zertifikat / Bewertung) ----------
   Zwei Zeilen: oben Zertifikat (links) + Google-Bewertung (rechts),
   darunter die drei Punkte als ruhiger Streifen aus drei gleich
   breiten Zellen mit senkrechten Trennlinien. */
.proof { background: var(--white); border-bottom: 1px solid var(--line); }
.proof__inner {
  display: grid; grid-template-columns: auto auto;
  grid-template-areas: "cert reviews" "points points";
  justify-content: space-between; gap: 1.3rem 2rem;
  align-items: center; padding-block: 1.6rem;
}
.proof__cert { grid-area: cert; display: flex; align-items: center; gap: 1rem; }
.proof__cert img { width: 78px; height: auto; }
.proof__cert-txt { font-size: 0.92rem; line-height: 1.35; color: var(--muted); }
.proof__cert-txt strong { display: block; color: var(--ink); font-size: 1rem; }
.proof__points {
  grid-area: points;
  display: grid; grid-template-columns: repeat(3, 1fr);
  list-style: none; margin: 0; padding: 1.3rem 0 0;
  border-top: 1px solid var(--line);
}
.proof__points li {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 600; font-size: 0.97rem;
  padding-inline: 1rem;
}
.proof__points li + li { border-left: 1px solid var(--line); }
.proof__points .ico { width: 1.6rem; height: 1.6rem; padding: 0.32rem; color: var(--green-600); background: var(--green-050); border-radius: var(--r-xs); box-sizing: border-box; }

/* Google-Bewertung */
.g-rating {
  display: inline-flex; align-items: center; gap: 0.85rem;
  background: var(--white); color: var(--ink);
  padding: 0.6rem 1rem; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-1); transition: transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.g-rating:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.g-rating__g { width: 30px; height: 30px; flex-shrink: 0; }
.g-rating__info { display: flex; flex-direction: column; line-height: 1.25; }
.g-rating__brand { font-weight: 600; font-size: 0.9rem; }
.g-stars { position: relative; display: inline-block; font-size: 15px; letter-spacing: 1.5px; line-height: 1; margin: 0.12rem 0; }
.g-stars__base { color: #dcdfe2; }
.g-stars__fill { position: absolute; top: 0; left: 0; width: 0; color: #f5b50a; overflow: hidden; white-space: nowrap; }
.g-rating__meta { font-size: 0.79rem; color: var(--muted); }
.g-rating__meta strong { color: var(--ink); }

/* ---------- Leistungen: Bento-Kacheln ---------- */
.tiles {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px; gap: 1.1rem;
}
.tile {
  position: relative; overflow: hidden; border-radius: var(--r);
  display: block; color: #fff; background: var(--dark-3); isolation: isolate;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.7s var(--t-slow); }
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,24,28,0) 30%, rgba(18,24,28,0.92) 100%);
  transition: background var(--t);
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.07); }
.tile:hover::after { background: linear-gradient(180deg, rgba(18,24,28,0.12) 15%, rgba(18,24,28,0.95) 100%); }
.tile__num {
  position: absolute; top: 1rem; left: 1.2rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.16em; color: rgba(255,255,255,0.72);
}
.tile__body {
  position: absolute; left: 0; bottom: 0; width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.tile__title { font-family: var(--font-head); font-weight: 600; letter-spacing: 0.01em; font-size: 1.35rem; line-height: 1.06; }
.tile__arrow {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: #06240a;
  display: grid; place-items: center;
  transform: translateY(8px); opacity: 0; transition: transform var(--t), opacity var(--t);
}
.tile:hover .tile__arrow, .tile:focus-visible .tile__arrow { transform: translateY(0); opacity: 1; }
.tile__arrow svg { width: 18px; height: 18px; }
.tile--lg { grid-column: span 2; grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile--lg .tile__title { font-size: 2rem; }

/* ---------- Prozess / "So läuft's" ---------- */
.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  position: relative;
}
/* Verbindungslinie hinter den Schritten (Desktop) */
.process__grid::before {
  content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 0.5rem; }
.step__node {
  width: 68px; height: 68px; margin: 0 auto 1.25rem;
  border-radius: 50%; background: var(--white);
  border: 2px solid var(--line); color: var(--green-600);
  display: grid; place-items: center;
  box-shadow: var(--sh-1); transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.step:hover .step__node { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--sh-green); }
.step__node .ico { width: 30px; height: 30px; }
.step__num {
  position: absolute; top: -6px; left: 50%; transform: translateX(24px);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #06240a;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  display: grid; place-items: center;
}
.step h3 { font-size: 1.28rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Statistik-Band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.25rem 1rem; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: rgba(255,255,255,0.12); }
.stat__num { font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; color: var(--green); line-height: 1; letter-spacing: 0.01em; }
.stat__label { display: block; margin-top: 0.7rem; font-weight: 500; color: var(--on-dark-muted); font-size: 0.98rem; }

/* ---------- Warum / Vorteile ---------- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.why__item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.9rem 1.75rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.why__item:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.why__ico {
  width: 52px; height: 52px; margin-bottom: 1.15rem;
  display: grid; place-items: center; color: var(--green-600);
  background: var(--green-050); border-radius: var(--r-sm);
}
.why__ico .ico { width: 27px; height: 27px; }
.why__item h3 { font-size: 1.32rem; margin-bottom: 0.5rem; color: var(--ink); }
.why__item p { color: var(--muted); margin: 0; font-size: 0.99rem; }

/* ---------- Split-Feature (Bild + Inhalt) ---------- */
.feature__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature__inner.is-reverse .feature__media { order: 2; }
.feature__media { position: relative; }
.feature__media img { width: 100%; border-radius: 0; box-shadow: none; background: transparent; }
.feature__badge {
  position: absolute; left: -1rem; bottom: -1rem;
  background: var(--green); color: #06240a;
  font-family: var(--font-head); font-weight: 700; letter-spacing: 0.02em;
  padding: 1rem 1.4rem; border-radius: var(--r); box-shadow: var(--sh-2);
  display: flex; flex-direction: column; line-height: 1.05;
}
.feature__badge b { font-size: 2rem; }
.feature__badge span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.feature__content .section__title { margin-bottom: 1rem; }
.feature__content > p:not(.eyebrow) { color: var(--muted); }
.section--dark .feature__content > p:not(.eyebrow) { color: var(--on-dark-muted); }
.feature__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }

.checklist { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.checklist li { position: relative; padding-left: 2.2rem; font-weight: 500; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 1.5rem; height: 1.5rem;
  background: var(--green-050);
  border-radius: 50%;
  -webkit-mask: none;
}
.checklist li::after {
  content: ""; position: absolute; left: 0.34rem; top: 0.55rem; width: 0.82rem; height: 0.82rem;
  background: var(--green-600);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / contain no-repeat;
}
.section--dark .checklist li::before { background: rgba(62,168,61,0.18); }
.section--dark .checklist li::after { background: var(--green); }

/* ---------- Zentraler CTA-Block ---------- */
.cta-center { text-align: center; max-width: 760px; margin-inline: auto; }
.cta-center .section__title { margin-bottom: 1rem; }
.cta-center p:not(.eyebrow) { color: var(--muted); margin: 0 auto 1.9rem; font-size: 1.15rem; }
.section--dark .cta-center p:not(.eyebrow) { color: var(--on-dark-muted); }
.cta-center .eyebrow { justify-content: center; }

/* ---------- Kontakt-Band ---------- */
.contact-band__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-band h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 0.9rem; }
.contact-band__methods { display: grid; gap: 1rem; margin-top: 1.75rem; }
.contact-band__methods a, .contact-band__methods div {
  display: flex; align-items: center; gap: 0.9rem;
  font-weight: 600; font-size: 1.15rem; color: #fff;
}
.contact-band__methods .ico { width: 2.6rem; height: 2.6rem; padding: 0.62rem; color: var(--green); background: rgba(62,168,61,0.14); border-radius: var(--r-sm); box-sizing: border-box; }
.contact-band__methods a:hover { color: var(--green); }
.contact-band__hours {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg); padding: 1.9rem;
}
.contact-band__hours h3 { color: #fff; font-size: 1.4rem; margin-bottom: 1.1rem; }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list span:first-child { color: var(--on-dark-muted); }
.hours-list span:last-child { color: #fff; font-weight: 600; }
.hours-list .is-closed span:last-child { color: var(--on-dark-muted); font-weight: 500; }

/* ---------- Formulare ---------- */
.form__field { margin-bottom: 1rem; }
.form__field label, .form__check label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }
.form__field input, .form__field select, .form__field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 0.8rem 0.95rem; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  background: var(--bg-soft);
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.form__field input::placeholder { color: var(--muted-2); }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  border-color: var(--green); background: var(--white); outline: none;
  box-shadow: 0 0 0 3px rgba(62,168,61,0.16);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__check { display: flex; align-items: flex-start; gap: 0.65rem; margin: 0.4rem 0 1.2rem; }
.form__check input { margin-top: 0.28rem; width: 1.15rem; height: 1.15rem; accent-color: var(--green); flex-shrink: 0; }
.form__check label { font-weight: 400; font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.5; }
.form__check a { color: var(--green-700); text-decoration: underline; }
.form__note { font-size: 0.82rem; color: var(--muted); margin: 0.9rem 0 0; }
.req { color: var(--green-700); font-weight: 800; margin-left: 0.1rem; }

/* Versand-Rückmeldung unter dem Formular */
.form__status {
  margin: 0.9rem 0 0; padding: 0.75rem 1rem;
  border-radius: var(--r-sm); font-size: 0.92rem; font-weight: 500; line-height: 1.45;
}
.form__status.is-success { background: var(--green-050); color: var(--green-700); border: 1px solid var(--green); }
.form__status.is-error { background: #fdeeed; color: #96231d; border: 1px solid #c0362f; }

/* Honeypot-Feld: aus dem Sichtbereich geschoben (nicht display:none, damit Bots es ausfüllen) */
.hp-field {
  position: absolute !important; left: -9999px !important; top: auto !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* Impressum: Credit "Design & Programmierung" */
.credit-card {
  display: inline-flex; align-items: center; gap: 1.1rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1rem 1.5rem 1rem 1rem; box-shadow: var(--sh-1); margin-top: 0.4rem;
}
.credit-card img { border-radius: var(--r-sm); flex-shrink: 0; }
.credit-card strong { display: block; color: var(--ink); font-size: 1.05rem; }
.credit-card__mail { display: block; color: var(--muted); font-size: 0.92rem; margin-top: 0.2rem; }

/* ---------- Downloadbereich (Formblätter & Zertifikate) ---------- */
.dl-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.dl-item {
  display: flex; align-items: center; gap: 1rem; height: 100%;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.1rem 1.25rem; color: var(--ink); box-shadow: var(--sh-1);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.dl-item:hover, .dl-item:focus-visible { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--green); }
.dl-item__ico {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center; color: var(--green-600);
  background: var(--green-050); border-radius: var(--r-sm);
}
.dl-item__ico svg { width: 26px; height: 26px; }
.dl-item__body { flex-grow: 1; min-width: 0; }
.dl-item__body strong { display: block; font-size: 1.02rem; line-height: 1.3; }
.dl-item__body span { display: block; color: var(--muted); font-size: 0.88rem; margin-top: 0.15rem; }
.dl-item__meta {
  flex-shrink: 0; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em; color: var(--green-700);
  background: var(--green-050); padding: 0.35rem 0.7rem; border-radius: var(--r-pill);
  white-space: nowrap;
}
@media (max-width: 780px) {
  .dl-list { grid-template-columns: 1fr; }
  .dl-item__meta { display: none; }
}

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: var(--on-dark-muted); font-size: 0.97rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.15fr; gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.75rem);
}
.footer__brand img.footer__logo { width: 205px; }
.footer__brand p { margin: 1.25rem 0 1.5rem; max-width: 25rem; }
.footer__cert { width: 148px; height: auto; background: var(--white); padding: 0.45rem; border-radius: var(--r-sm); }
.footer__title { font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 0.02em; font-weight: 600; color: #fff; margin-bottom: 1.1rem; }
.footer__links, .footer__nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer__links a, .footer__nav a { transition: color var(--t), padding-left var(--t); }
.footer a:hover { color: var(--green); }
.footer__links a:hover, .footer__nav a:hover { padding-left: 0.3rem; }
.footer__address { font-style: normal; line-height: 1.8; }
.footer__address a:hover { color: var(--green); }
.footer__hours { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.footer__hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.32rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__hours span:last-child { color: #fff; font-weight: 500; }
.footer__social { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.3rem; }
.footer__social a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  height: 42px; padding: 0 1.1rem 0 0.9rem; border-radius: var(--r-pill);
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.09);
  color: var(--on-dark-muted); font-family: var(--font-head); font-weight: 600;
  font-size: 0.94rem; letter-spacing: 0.02em;
  transition: background var(--t), color var(--t), transform var(--t), border-color var(--t);
}
.footer__social a:hover { background: var(--green); color: #06240a; border-color: var(--green); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; fill: currentColor; flex: none; }
.footer__reviews { margin-top: 1.5rem; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 1.35rem; font-size: 0.88rem; }
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }

/* ---------- Scroll-Reveal (sanftes Einblenden) ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s var(--t-slow); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }

/* =========================================================
   Unterseiten (Seitenkopf · Leistungskarten · Kontakt · Recht)
   ========================================================= */

/* ---------- Seitenkopf (Page-Hero) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(920px 440px at 86% -55%, var(--green-glow), transparent 60%),
    linear-gradient(180deg, #2b353c 0%, #1f272c 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-hero__inner { position: relative; z-index: 1; padding-block: clamp(2.5rem, 6vw, 4.25rem); }
.page-hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); margin: 0.35rem 0 0; color: #fff; }
.page-hero > .container > p,
.page-hero p { margin: 1.1rem 0 0; max-width: 46rem; font-size: 1.15rem; line-height: 1.6; color: #d3d9de; }

/* Brotkrumen */
.breadcrumb { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em; color: var(--on-dark-muted); }
.breadcrumb a { color: var(--on-dark-muted); transition: color var(--t); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: #fff; }

/* ---------- Leistungs-/Info-Karten ---------- */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  list-style: none; margin: 0; padding: 0;
}
.service-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.9rem 1.75rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.service-card__num {
  position: absolute; top: 1.4rem; right: 1.5rem;
  min-width: 2rem; height: 2rem; padding: 0 0.55rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em;
  color: var(--green-700); background: var(--green-050); border-radius: var(--r-pill);
}
/* Hinweis: Die Klasse sitzt hier direkt auf dem <svg> (kein Wrapper-Span wie
   bei .svc-card__ico). Ohne padding + border-box würde die Zeichnung auf die
   volle Kachelgröße skaliert und die Striche dadurch deutlich zu fett. */
.service-card__ico {
  width: 54px; height: 54px; margin-bottom: 1.15rem;
  box-sizing: border-box; padding: 12px;
  display: grid; place-items: center; color: var(--green-600);
  background: var(--green-050); border-radius: var(--r-sm);
  stroke-width: 1.75;
}
.service-card__ico svg { width: 30px; height: 30px; }
.service-card h2, .service-card h3 { font-size: 1.34rem; margin: 0 0 0.5rem; color: var(--ink); padding-right: 2.5rem; }
.service-card h2 a { color: inherit; transition: color var(--t); }
.service-card h2 a:hover { color: var(--green-700); }
.service-card p { margin: 0; color: var(--muted); font-size: 0.99rem; }

/* ---------- Kontaktseite ---------- */
.contact__inner {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__list { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 1.3rem; }
.contact__list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact__list .ico {
  width: 2.7rem; height: 2.7rem; padding: 0.62rem; flex-shrink: 0; box-sizing: border-box;
  color: var(--green-600); background: var(--green-050); border-radius: var(--r-sm);
}
.contact__list strong { display: block; color: var(--ink); margin-bottom: 0.15rem; }
.contact__list div { color: var(--muted); line-height: 1.65; }
.contact__list a { color: var(--green-700); }
.contact__list a:hover { color: var(--green-600); }

.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-3); overflow: hidden; isolation: isolate;
}
.form-card__head { background: var(--green); color: #06240a; padding: 1.25rem 1.6rem; }
.form-card__head h2 { font-size: 1.5rem; letter-spacing: 0.01em; }
.form-card__head p { margin: 0.1rem 0 0; font-weight: 600; font-size: 0.9rem; }
.form-card__body { padding: 1.6rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.prose { max-width: 820px; }
.prose h2 {
  font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.01em;
  color: var(--ink); margin: 2.1rem 0 0.55rem;
}
.prose > h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-head); font-weight: 600; font-size: 1.18rem;
  color: var(--ink); margin: 1.6rem 0 0.4rem;
}
.prose h4 {
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  color: var(--ink); margin: 1.15rem 0 0.3rem;
}
.prose p { color: var(--ink-2); }
.prose ul { color: var(--ink-2); margin: 0 0 1rem; padding-left: 1.3rem; }
.prose li { margin-bottom: 0.45rem; }
.prose li:last-child { margin-bottom: 0; }
.prose a { color: var(--green-700); text-decoration: underline; }
/* Lange Links (Datenschutz) dürfen umbrechen, sonst schieben sie das Layout auf */
.prose a[href^="http"] { overflow-wrap: anywhere; }

/* ---------- Unterseiten: Responsive ---------- */
@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .services__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1040px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .proof__inner { grid-template-columns: 1fr; grid-template-areas: "cert" "points" "reviews"; justify-items: center; text-align: center; gap: 1.25rem; }
  .proof__points { display: flex; flex-wrap: wrap; gap: 0.75rem 1.75rem; justify-content: center; padding-top: 0; border-top: 0; }
  .proof__points li { padding-inline: 0; }
  .proof__points li + li { border-left: 0; }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; padding-block: clamp(2.75rem, 8vw, 4rem); }
  .hero__lead { max-width: none; }
  .quote-card { max-width: 460px; }
  .feature__inner { grid-template-columns: 1fr; }
  .feature__inner.is-reverse .feature__media { order: -1; }
  .feature__media { max-width: 560px; margin-inline: auto; }
  .feature__badge { left: 0; }
  .contact-band__inner { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 1.25rem; }
  .process__grid::before { display: none; }
  .tiles { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat:nth-child(2)::before { display: none; }
}

@media (max-width: 860px) {
  /* Mobile Navigation als ausfahrendes Panel */
  .burger { display: flex; }
  /* Wichtig: kein backdrop-filter am Header, solange die Navigation ein
     position:fixed-Panel ist. backdrop-filter erzeugt einen Bezugsrahmen für
     fixierte Kindelemente – das Menü würde dann am Header statt am Viewport
     ausgerichtet und läge nach dem Scrollen ausserhalb des Bildschirms.
     Der Header ist mit rgba(26,33,37,0.96) ohnehin nahezu deckend. */
  .header.is-scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(345px, 87vw); z-index: var(--z-nav);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 4.9rem 1.5rem 2rem; overflow-y: auto;
    background: var(--dark-2); border-left: 1px solid rgba(255,255,255,0.1);
    transform: translateX(100%); transition: transform 0.3s var(--t-slow);
    box-shadow: -24px 0 60px -24px rgba(0,0,0,0.65);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 0; width: 100%; }
  .nav__list > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__list > li > a,
  .nav__toggle { display: flex; width: 100%; justify-content: space-between; padding: 0.95rem 0; font-size: 1.12rem; }
  .nav__list > li > a::after { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; background: transparent;
    padding: 0 0 0.6rem 0.4rem; display: none;
  }
  .nav__item--open .dropdown { display: block; }
  .dropdown a { color: var(--on-dark-muted); padding: 0.5rem; }
  .dropdown a:hover { background: transparent; color: var(--green); padding-left: 0.75rem; }
  .nav__cta { margin: 1.5rem 0 0; }
  .nav__close {
    display: block; position: absolute; top: 1rem; right: 1.25rem;
    background: transparent; border: 0; color: #fff; font-size: 2.3rem; line-height: 1; cursor: pointer;
  }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(12,16,19,0.6); z-index: var(--z-nav-backdrop);
    opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t);
  }
  .nav-backdrop.is-visible { opacity: 1; visibility: visible; }
  /* Scroll-Sperre muss am <html> greifen: weil html overflow-x: clip hat,
     wird overflow vom <body> nicht mehr auf den Viewport übertragen –
     die Seite hinter dem Menü liesse sich sonst weiterscrollen. */
  html.nav-locked, body.nav-locked { overflow: hidden; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .topbar__hours { display: none; }
  .why__grid, .process__grid, .stats { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .tiles { grid-template-columns: 1fr; grid-auto-rows: 176px; }
  .tile--lg, .tile--wide { grid-column: span 1; grid-row: span 1; }
  .tile--lg .tile__title { font-size: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }
  .hero__actions .btn, .feature__actions .btn, .cta-center .btn { width: 100%; }
  .g-rating { white-space: normal; }
}

/* =========================================================
   Homepage-Update (2026-07): echte Google-Bewertung in der
   Proof-Leiste, neue Leistungs-Karten, Zwei-Wege-Prozess,
   schwebender Bestell-Badge
   ========================================================= */

/* ---------- Proof-Leiste: Google-Bewertung (eigener Badge, s. Dateiende) ---------- */
.proof__reviews {
  grid-area: reviews;
  display: flex; align-items: center; justify-content: flex-end;
  min-width: 200px;
}

/* ---------- Leistungen: Karten-Grid ---------- */
.svc-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: var(--sh-1); overflow: hidden; color: var(--ink);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.svc-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow);
}
.svc-card:hover, .svc-card:focus-visible {
  transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-2);
}
.svc-card:hover::before, .svc-card:focus-visible::before { transform: scaleX(1); }
.svc-card__ico {
  width: 54px; height: 54px; flex-shrink: 0; margin-bottom: 1rem;
  display: grid; place-items: center; color: var(--green-600);
  background: var(--green-050); border-radius: var(--r);
}
.svc-card__ico svg { width: 28px; height: 28px; }
.svc-card__title {
  font-family: var(--font-head); font-weight: 600; font-size: 1.42rem;
  line-height: 1.08; color: var(--ink);
}
.svc-card__badge {
  align-self: flex-start; margin-top: 0.55rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green-700); background: var(--green-050);
  padding: 0.28rem 0.62rem; border-radius: var(--r-pill);
}
.svc-card__desc {
  margin-top: 0.7rem; color: var(--muted); font-size: 0.97rem; line-height: 1.5;
  flex-grow: 1;
}
.svc-card__more {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.15rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  color: var(--green-700);
}
.svc-card__more svg { width: 18px; height: 18px; transition: transform var(--t); }
.svc-card:hover .svc-card__more svg,
.svc-card:focus-visible .svc-card__more svg { transform: translateX(4px); }

/* Breite "A bis Z"-Karte (dunkel, mit Material-Pills) */
.svc-wide {
  display: block; margin-top: 1.1rem; color: var(--on-dark);
  background: var(--dark); border-radius: var(--r-lg);
  padding: 1.7rem 1.8rem; box-shadow: var(--sh-2); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.svc-wide:hover, .svc-wide:focus-visible { transform: translateY(-3px); box-shadow: var(--sh-3); }
.svc-wide__head { display: flex; align-items: center; gap: 1.1rem; }
.svc-wide .svc-card__ico { margin-bottom: 0; color: var(--green); background: rgba(62,168,61,0.16); }
.svc-wide__intro { flex-grow: 1; }
.svc-wide__title {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 1.6rem; line-height: 1.05; color: #fff;
}
.svc-wide__desc { display: block; margin-top: 0.25rem; color: var(--on-dark-muted); font-size: 0.98rem; }
.svc-wide__more { color: var(--green); white-space: nowrap; }
.svc-wide:hover .svc-wide__more svg { transform: translateX(4px); }
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  list-style: none; margin: 1.35rem 0 0; padding: 1.35rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.svc-tags li {
  font-size: 0.9rem; font-weight: 500; color: var(--on-dark);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.85rem; border-radius: var(--r-pill);
}
.svc-tags li.is-more { color: var(--green); background: rgba(62,168,61,0.12); border-color: rgba(62,168,61,0.4); }

/* ---------- Prozess: Zwei Wege ---------- */
.ways { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; align-items: stretch; }
.way {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem 1.9rem 1.9rem; box-shadow: var(--sh-1);
}
.way--featured { border-color: var(--green); box-shadow: var(--sh-green); }
.way__flag {
  position: absolute; top: -0.85rem; left: 1.9rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: #06240a;
  background: var(--green); padding: 0.35rem 0.85rem; border-radius: var(--r-pill);
}
.way__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.way__ico {
  width: 58px; height: 58px; flex-shrink: 0;
  display: grid; place-items: center; color: var(--green-600);
  background: var(--green-050); border-radius: var(--r);
}
.way__ico svg { width: 30px; height: 30px; }
.way__head h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.6rem; line-height: 1.05; color: var(--ink); margin: 0; }
.way__sub { color: var(--muted); font-size: 0.95rem; margin: 0.2rem 0 0; }
.way__steps {
  list-style: none; counter-reset: waystep; margin: 0 0 1.6rem; padding: 0;
  display: flex; flex-direction: column; gap: 1rem; flex-grow: 1;
}
.way__steps li { position: relative; padding-left: 2.9rem; color: var(--muted); font-size: 0.98rem; line-height: 1.45; }
.way__steps li b { color: var(--ink); font-weight: 600; }
.way__steps li::before {
  counter-increment: waystep; content: counter(waystep);
  position: absolute; left: 0; top: -0.12rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--green-050); color: var(--green-700);
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  display: grid; place-items: center;
}
.way__foot { margin-top: auto; }
.way__hours { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--ink-2); font-weight: 600; font-size: 0.95rem; }
.way__hours .ico { width: 1.4rem; height: 1.4rem; color: var(--green-600); }

/* ---------- Schwebender Bestell-Badge ---------- */
.order-badge {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 80; width: 116px; height: 116px;
  display: grid; place-items: center; text-decoration: none;
  filter: drop-shadow(0 12px 26px rgba(16,24,30,0.32));
}
.order-badge__ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--green); opacity: 0.5;
  animation: order-pulse 2.4s ease-out infinite;
}
.order-badge__face {
  position: relative; width: 100%; height: 100%; border-radius: 50%;
  background: var(--green); color: #06240a; border: 3px solid #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; text-align: center;
  transition: transform var(--t), background var(--t);
}
.order-badge:hover .order-badge__face,
.order-badge:focus-visible .order-badge__face { transform: scale(1.06); background: var(--green-600); }
.order-badge__ico { width: 26px; height: 26px; }
.order-badge__text { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; line-height: 1.08; letter-spacing: 0.01em; }
.order-badge__text b { font-weight: 700; }
@keyframes order-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Responsive: Homepage-Update ---------- */
@media (max-width: 960px) {
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .ways { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .svc-cards { grid-template-columns: 1fr; }
  .svc-wide__head { flex-wrap: wrap; }
  .svc-wide__more { width: 100%; }
  .order-badge { width: 94px; height: 94px; }
  .order-badge__ico { width: 22px; height: 22px; }
  .order-badge__text { font-size: 0.74rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   Google-Bewertungs-Badges (2026-07): eigenes, kostenloses
   Widget als Ersatz für Trustindex. Markup: Footer aller
   Seiten + Proof-Leiste der Startseite. Werte: js/config.js
   bzw. google-reviews-widget/ (Places API, 1x/Woche).
   ========================================================= */

/* Footer: Badge-Karte (weiß auf dunklem Footer) */
.g-badge {
  display: inline-flex; align-items: center;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 0.72rem 1.1rem;
  box-shadow: var(--sh-1);
  transition: transform var(--t), box-shadow var(--t);
}
.g-badge:hover, .g-badge:focus-visible { transform: translateY(-2px); box-shadow: var(--sh-2); }
.g-badge__logo { display: block; width: 36px; height: 36px; flex-shrink: 0; }
.g-badge__logo svg { display: block; width: 100%; height: 100%; }
.g-badge__info {
  display: flex; flex-direction: column; gap: 0.2rem; line-height: 1.2;
  margin-left: 0.95rem; padding-left: 0.95rem; border-left: 1px solid var(--line);
}
.g-badge__row { display: inline-flex; align-items: center; gap: 0.5rem; }
.g-badge__score { font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.g-badge__label { font-weight: 600; font-size: 0.88rem; color: var(--ink); }

/* Startseite, Proof-Leiste: einzeilige Bewertung mit Google-Wortmarke */
.g-line {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--ink); white-space: nowrap;
}
.g-line:hover .g-line__count, .g-line:focus-visible .g-line__count { text-decoration: underline; }
.g-line__logo { display: block; width: 84px; height: 28px; flex-shrink: 0; }
.g-line .g-stars { font-size: 17px; }
.g-line__score { font-weight: 700; font-size: 1.05rem; }
.g-line__divider { width: 1px; height: 1.15rem; background: var(--line-2); }
.g-line__count { font-size: 0.95rem; font-weight: 600; color: var(--muted); }

/* Responsive: Proof-Leiste stapelt ab 1040px (s. oben) – Badge zentrieren;
   auf sehr schmalen Displays darf die Zeile umbrechen. */
@media (max-width: 1040px) {
  .proof__reviews { justify-content: center; }
}
@media (max-width: 420px) {
  .g-line { white-space: normal; flex-wrap: wrap; justify-content: center; row-gap: 0.35rem; }
  .g-line__divider { display: none; }
}

/* ---------- Pausenzeiten ---------- */
/* Helle Flaechen: dezente Zeile unter den Oeffnungszeiten */
.pause-note {
  display: flex; align-items: flex-start; gap: 0.5rem;
  color: var(--muted); font-size: 0.9rem; line-height: 1.5;
}
.pause-note .ico {
  width: 1.2rem; height: 1.2rem; flex: none; margin-top: 0.16rem;
  padding: 0; background: none; border-radius: 0; color: var(--green-600);
}
.pause-note b { color: var(--ink-2); font-weight: 600; }

/* Kontaktband (dunkle Karte): abgesetzter Block unter der Zeitenliste */
.hours-pause {
  display: flex; align-items: flex-start; gap: 0.7rem;
  margin-top: 1.05rem; padding-top: 1rem;
  border-top: 1px dashed rgba(255,255,255,0.18);
}
.hours-pause .ico { width: 1.3rem; height: 1.3rem; flex: none; margin-top: 0.12rem; color: var(--green); }
.hours-pause__txt b { display: block; color: #fff; font-size: 0.95rem; font-weight: 600; }
.hours-pause__txt > span { display: block; color: var(--on-dark-muted); font-size: 0.92rem; margin-top: 0.15rem; }

/* Footer: Pausen als letzte, randlose Zeile der Oeffnungszeiten */
.footer__hours .is-pause { border-bottom: 0; padding-top: 0.5rem; font-size: 0.86rem; }
.footer__hours .is-pause span:last-child { color: var(--on-dark-muted); font-weight: 500; text-align: right; }

/* Startseite, Karte "Selbst anliefern" */
.way__pause { display: block; margin-top: 0.5rem; color: var(--muted); font-size: 0.88rem; }
