/* Poppins lokal eingebunden (DSGVO-konform, keine externen Verbindungen) */
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/poppins-400.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/poppins-500.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/poppins-700.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/poppins-800.woff2") format("woff2"); }

/* ==========================================================================
   Berlin Brandenburgische Spedition und Recycling (BBSR)
   Design v4 — „Tannengrün & Laub“ (grün / tiefes Tannengrün / weiß)
   Hinweis: Die Token heißen historisch --orange/--navy (v3) und werden von
   Inline-Styles in den HTML-Seiten referenziert — sie tragen jetzt die
   grüne Markenpalette. Farben nur hier ändern.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --orange:      #15803d;   /* Laubgrün — Primärfarbe (Buttons, Links, Icons) */
  --orange-2:    #116632;   /* hover */
  --orange-tint: #e9f6ee;   /* Minzhauch — Icon-Chips, sanfte Flächen */
  --orange-soft: #c9e9d3;

  --navy:        #0e241c;   /* Tannengrün — Header / Footer / dunkle Sektionen */
  --navy-2:      #091a14;
  --navy-soft:   #1a3a2d;

  --amber:       #d97706;   /* Bernstein — einziger Warmakzent (Bewertung) */
  --amber-tint:  #fdf3e3;

  --ink:         #13201a;   /* headings */
  --text:        #4d5c54;   /* body */
  --muted:       #83908a;

  --bg:          #ffffff;
  --bg-soft:     #f4f7f5;
  --card:        #ffffff;
  --border:      #e4eae6;
  --border-soft: #eef2ef;

  --green-wa:    #23c55e;   /* WhatsApp */
  --green-wa-2:  #1caf50;
  --green-dot:   #34d399;

  --ok:          #1f9d55;
  --err:         #d64530;

  /* Type */
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radii & shadows */
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(14,36,28,.05), 0 4px 12px -4px rgba(14,36,28,.06);
  --shadow-md: 0 6px 24px -8px rgba(14,36,28,.14);
  --shadow-lg: 0 18px 50px -20px rgba(14,36,28,.22);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(18px, 4vw, 40px);
  --header-h: 72px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 220ms;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.2; font-weight: 700; }
p { margin: 0; }

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

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--navy); color: #fff;
  padding: 12px 18px; font-size: 13px; font-weight: 600; border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; top: 0; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.center { text-align: center; }
.muted { color: var(--muted); }

.kicker {
  display: inline-block;
  font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--orange);
  margin-bottom: 10px;
}
.h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.12;
}
.h1 .hl, .h2 .hl { color: var(--orange); }
.h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.015em;
}
.h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }
.lead {
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  color: var(--text); line-height: 1.75;
  max-width: 640px;
}
.center .lead, .lead.center { margin-inline: auto; }

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(36px, 5vw, 64px); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.72); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4.5vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 14px; }

.rule { height: 1px; background: var(--border); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px;
  font-size: 15px; font-weight: 600; line-height: 1.2;
  border: 1.5px solid transparent; border-radius: var(--r);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -10px rgba(21,128,61,.45); }
.btn--primary:hover { background: var(--orange-2); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: #cfd3da; }
.btn--whatsapp { background: var(--green-wa); color: #fff; box-shadow: 0 10px 24px -10px rgba(35,197,94,.5); }
.btn--whatsapp:hover { background: var(--green-wa-2); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-soft); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--bg-soft); }
.btn--sm { padding: 12px 22px; font-size: 14px; }
.btn--pill { border-radius: 999px; }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 600; color: var(--orange);
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.textlink svg { width: 16px; height: 16px; }
.textlink:hover { gap: 12px; color: var(--orange-2); }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  color: #fff;
  transition: box-shadow var(--dur) var(--ease);
}
.header.is-scrolled { box-shadow: 0 10px 30px -12px rgba(9,26,20,.5); }
.header__in {
  height: var(--header-h);
  display: flex; align-items: center; gap: 18px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__logo {
  width: 42px; height: 42px; flex: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: 12px;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 16px -6px rgba(21,128,61,.5);
}
.brand__logo svg { width: 24px; height: 24px; }
.brand__txt { line-height: 1.15; }
.brand__name { display: block; font-weight: 700; font-size: 15px; color: #fff; letter-spacing: .01em; white-space: nowrap; }
.brand__sub { display: block; font-size: 10.5px; color: rgba(255,255,255,.55); font-weight: 500; letter-spacing: .02em; }

/* Nav */
.mainnav { display: flex; align-items: center; gap: 4px; }
.mainnav__link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 13px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.78);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.mainnav__link svg { width: 15px; height: 15px; opacity: .75; }
.mainnav__link:hover { color: #fff; background: rgba(255,255,255,.07); }
.mainnav__link[aria-current="page"] { color: #fff; background: rgba(255,255,255,.1); }

/* Header meta (hours + call) */
.header__meta { display: flex; align-items: center; gap: 14px; margin-left: 6px; }
.hours {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.hours::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-dot);
  box-shadow: 0 0 0 3px rgba(52,211,153,.22);
}
.btn--call {
  background: var(--orange); color: #fff;
  padding: 10px 20px; font-size: 13.5px; border-radius: 999px;
  white-space: nowrap; flex: none;
}
.btn--call:hover { background: var(--orange-2); }
.btn--call svg { width: 15px; height: 15px; }

/* Dropdown (mega) */
.dropdown { position: relative; }
.dropdown__toggle {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 13px; border-radius: 10px; border: 0; background: none;
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.78);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.dropdown__toggle:hover, .dropdown[data-open="true"] .dropdown__toggle { color: #fff; background: rgba(255,255,255,.07); }
.dropdown__toggle[data-active="true"] { color: #fff; background: rgba(255,255,255,.1); }
.dropdown__toggle .ico { width: 15px; height: 15px; opacity: .75; }
.dropdown__toggle .car { width: 11px; height: 11px; transition: transform var(--dur) var(--ease); }
.dropdown[data-open="true"] .dropdown__toggle .car { transform: rotate(180deg); }

.dropdown__menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff; color: var(--ink);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 230px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.dropdown[data-open="true"] .dropdown__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown__menu a {
  display: block; padding: 9px 12px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.dropdown__menu a:hover { background: var(--orange-tint); color: var(--orange-2); }
.dropdown__menu a[aria-current="page"] { color: var(--orange); }

.mainnav { position: relative; }
.mainnav .dropdown { position: static; } /* mega menu anchors to .mainnav, centered */
.dropdown__menu--mega {
  left: 50%; transform: translateX(-50%) translateY(-8px);
  top: calc(100% + 14px);
  width: min(960px, calc(100vw - 28px));
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px 14px; padding: 20px;
}
.dropdown__menu--mega::before {
  /* invisible hover bridge across the gap to the toggle */
  content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px;
}
.dropdown[data-open="true"] .dropdown__menu--mega { transform: translateX(-50%) translateY(0); }
.mega__col { min-width: 0; }
.mega__h {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--muted); padding: 6px 12px 8px; margin: 0;
}
.mega__all {
  grid-column: 1 / -1; margin-top: 8px; padding-top: 12px !important;
  border-top: 1px solid var(--border-soft);
  display: flex !important; align-items: center; gap: 8px;
  color: var(--orange) !important; font-weight: 600 !important;
}
.mega__all svg { width: 15px; height: 15px; }
.mega__all:hover { background: var(--orange-tint) !important; }

/* Burger */
.burger {
  display: none; width: 44px; height: 44px; border: 0; background: none;
  align-items: center; justify-content: center; flex-direction: column;
}
.burger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: #fff; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.burger span + span { margin-top: 5px; }
.header.is-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.is-open .burger span:nth-child(2) { opacity: 0; }
.header.is-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 90;
  background: #fff;
  padding: 24px var(--gutter) 48px;
  overflow-y: auto;
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.header.is-open .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  display: block; padding: 13px 4px; border-bottom: 1px solid var(--border-soft);
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.mobile-nav .sub a { font-size: 14px; font-weight: 500; color: var(--text); padding-left: 16px; }
.mobile-nav .m-label {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--muted); margin: 22px 0 4px;
}
.mobile-nav .m-cta { margin-top: 24px; display: grid; gap: 10px; }
.mobile-nav .m-cta .btn { width: 100%; }

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero {
  text-align: center;
  padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: -40% -20% auto;
  height: 90%;
  background:
    radial-gradient(46% 60% at 22% 34%, rgba(21,128,61,.06), transparent 70%),
    radial-gradient(40% 55% at 80% 25%, rgba(14,36,28,.05), transparent 70%);
  pointer-events: none;
}
.hero > .wrap { position: relative; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-tint); color: var(--orange-2);
  border: 1px solid var(--orange-soft);
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero__badge svg { width: 15px; height: 15px; }
.hero .h1 { max-width: 900px; margin-inline: auto; }
.hero .h1 .line2 { display: block; color: var(--orange); }
.hero .lead { margin: 22px auto 30px; }
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__trust {
  display: flex; gap: 10px 26px; justify-content: center; flex-wrap: wrap;
  margin-top: 30px;
}
.hero__trust span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--text);
}
.hero__trust svg { width: 17px; height: 17px; color: var(--orange); flex: none; }

/* typewriter caret */
.type-caret {
  display: inline-block; width: 3px; height: .95em;
  background: var(--orange); margin-left: 4px; vertical-align: -0.12em;
  animation: caret 1s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .type-caret { display: none; } }

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat {
  text-align: center;
  padding: clamp(24px, 3.5vw, 40px) 18px;
  position: relative;
}
.stat + .stat::before {
  content: ""; position: absolute; left: -9px; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
.stat__icon {
  width: 46px; height: 46px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--orange-tint); color: var(--orange);
  display: grid; place-items: center;
}
.stat__icon svg { width: 22px; height: 22px; }
.stat__n { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; color: var(--orange); line-height: 1.05; letter-spacing: -0.02em; }
.stat__l { margin-top: 8px; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
/* Bewertungs-Statistik: einziger Bernstein-Akzent der Seite */
.stat--star .stat__icon { background: var(--amber-tint); color: var(--amber); }
.stat--star .stat__n { color: var(--amber); }

/* ==========================================================================
   Cards
   ========================================================================== */
.grid { display: grid; gap: clamp(14px, 2vw, 22px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.6vw, 28px);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
a.card { color: inherit; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #dfe2e8; }
.card__chip {
  width: 50px; height: 50px; flex: none;
  border-radius: 13px; background: var(--orange-tint); color: var(--orange);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.card__chip svg { width: 25px; height: 25px; }
.card__title { font-size: 17px; font-weight: 700; color: var(--ink); }
.card p { font-size: 14px; line-height: 1.65; }
.card .textlink { margin-top: auto; padding-top: 6px; font-size: 13.5px; }
.card__list { display: grid; gap: 7px; margin-top: 2px; }
.card__list li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--text); }
.card__list svg { width: 15px; height: 15px; color: var(--orange); flex: none; margin-top: 4px; }

/* feature mini-cards (service hero row) */
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.feature__ic {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%; background: var(--orange-tint); color: var(--orange);
  display: grid; place-items: center;
}
.feature__ic svg { width: 19px; height: 19px; }
.feature b { display: block; font-size: 13.5px; color: var(--ink); font-weight: 600; line-height: 1.3; }
.feature small { font-size: 12px; color: var(--muted); line-height: 1.3; }

/* trust pills */
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pills span {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 11px 20px; font-size: 13.5px; font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.pills svg { width: 16px; height: 16px; color: var(--orange); }

/* checklist */
.checklist { display: grid; gap: 11px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.checklist svg { flex: none; width: 19px; height: 19px; color: var(--orange); margin-top: 3px; }

/* split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.stack > * + * { margin-top: 18px; }

/* ==========================================================================
   Media placeholders
   ========================================================================== */
.media-frame {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, #e9ecf1, #f6f7f9 55%, #e3e7ee);
  border: 1px solid var(--border);
  color: var(--muted);
  isolation: isolate;
}
.media-frame::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 70% at 20% 15%, rgba(21,128,61,.05), transparent 60%),
    radial-gradient(70% 70% at 85% 90%, rgba(14,36,28,.06), transparent 65%);
}
.media-frame__label {
  position: absolute; left: 14px; bottom: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.82); backdrop-filter: blur(4px);
  padding: 5px 11px; border-radius: 999px;
}
.media-frame--dark { background: linear-gradient(145deg, #22352c, #142720 60%, #1b3128); border-color: var(--navy-soft); }
.media-frame--dark .media-frame__label { background: rgba(9,26,20,.72); color: rgba(255,255,255,.8); }
.media-frame__ic {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.media-frame__ic svg { width: 54px; height: 54px; opacity: .3; }

.ratio-4x5 { aspect-ratio: 4/5; }
.ratio-1x1 { aspect-ratio: 1/1; }
.ratio-3x2 { aspect-ratio: 3/2; }
.ratio-16x9 { aspect-ratio: 16/9; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 18px); }
.gallery > * { grid-column: span 4; }
.gallery > .wide { grid-column: span 8; }

/* logo strip */
.logostrip { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(24px, 5vw, 60px); justify-content: center; }
.logostrip span { font-size: 1.05rem; font-weight: 700; letter-spacing: .02em; color: #b6bcc6; }

/* pull quote */
.pull { font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.4; color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
.section--navy .pull { color: #fff; }

/* ==========================================================================
   Before / After
   ========================================================================== */
.ba { max-width: 760px; margin-inline: auto; }
.ba__frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.ba__frame .media-frame { border-radius: 0; border: 0; }
.ba__before, .ba__after { transition: opacity .45s var(--ease); }
.ba__after { position: absolute; inset: 0; opacity: 0; }
.ba.show-after .ba__after { opacity: 1; }
.ba__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
}
.ba__toggle {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: #fff; color: var(--ink); border: 0;
  font-size: 13.5px; font-weight: 600;
  padding: 11px 22px; border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease);
}
.ba__toggle:hover { transform: translateX(-50%) translateY(-2px); }
.ba__cap { text-align: center; margin-top: 16px; font-weight: 600; color: var(--ink); font-size: 15px; }

/* ==========================================================================
   Numbered process steps
   ========================================================================== */
.steps { display: grid; gap: 6px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 46px 1fr; gap: 16px;
  padding: 16px 0;
  align-items: flex-start;
}
.step__n {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 15px; font-weight: 700;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -8px rgba(21,128,61,.5);
}
.step__body h3 { font-size: 16.5px; margin-bottom: 4px; }
.step__body p { font-size: 14.5px; }

/* ==========================================================================
   Flow (Grüne Entrümpelung: Recyceln · Spenden · Weiternutzen)
   ========================================================================== */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flow__step {
  position: relative;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
}
.flow__step .num { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--orange); }
.flow__step .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange-tint); color: var(--orange);
  display: grid; place-items: center; margin: 14px 0 14px;
}
.flow__step .ic svg { width: 26px; height: 26px; }
.flow__step h3 { margin-bottom: 8px; font-size: 18px; }
.flow__step p { font-size: 14px; }
.flow__step .arrow {
  position: absolute; top: 50%; right: -19px; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; transform: translateY(-50%);
  box-shadow: 0 6px 14px -6px rgba(21,128,61,.5);
}
.flow__step .arrow svg { width: 14px; height: 14px; }
.flow__step:last-child .arrow { display: none; }

/* section--navy variant */
.section--navy .flow__step { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.section--navy .flow__step h3 { color: #fff; }
.section--navy .flow__step p { color: rgba(255,255,255,.65); }

/* ==========================================================================
   Chips grid (Einsatzgebiet)
   ========================================================================== */
.areachips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.areachips a {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.areachips a svg { width: 14px; height: 14px; color: var(--orange); }
.areachips a:hover { border-color: var(--orange); color: var(--orange-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  font-size: 15.5px; font-weight: 600; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 22px; height: 22px;
  background: var(--orange-tint); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-a { padding: 0 22px 20px; font-size: 14.5px; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  text-align: center;
  padding: clamp(48px, 7vw, 84px) 0 clamp(32px, 5vw, 56px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: -50% -20% auto;
  height: 110%;
  background: radial-gradient(44% 60% at 50% 20%, rgba(21,128,61,.05), transparent 70%);
  pointer-events: none;
}
.page-hero > .wrap { position: relative; }
.page-hero .h1 { max-width: 860px; margin-inline: auto; }
.page-hero .lead { margin: 18px auto 0; }
.page-hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 500; color: var(--muted); margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span[aria-current] { color: var(--ink); font-weight: 600; }
.breadcrumb .sep { color: #c9cdd4; }

/* ==========================================================================
   Forms & quote wizard
   ========================================================================== */
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 14.5px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 13px 16px; width: 100%; min-height: 50px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field ::placeholder { color: #a7adb7; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(21,128,61,.14);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--err); }

.form__consent { display: flex; gap: 11px; align-items: flex-start; }
.form__consent input { width: 18px; height: 18px; min-height: 0; margin-top: 3px; flex: none; accent-color: var(--orange); }
.form__consent label { font-size: 12.5px; font-weight: 400; color: var(--muted); line-height: 1.55; }
.form__consent label a { color: var(--orange); text-decoration: underline; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form__status {
  font-size: 14px; padding: 13px 17px; border-radius: 12px; display: none;
  margin-bottom: 18px; font-weight: 500;
}
.form__status.is-ok { display: block; background: rgba(31,157,85,.09); color: var(--ok); border: 1px solid rgba(31,157,85,.3); }
.form__status.is-err { display: block; background: rgba(214,69,48,.07); color: var(--err); border: 1px solid rgba(214,69,48,.3); }

/* ---- Wizard ---- */
.qwrap { max-width: 820px; margin-inline: auto; }
.qform {
  background: #fff; border: 1px solid var(--border);
  padding: clamp(22px, 4vw, 42px);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.qform__progress { margin-bottom: 28px; }
.qform__track { height: 6px; background: var(--border-soft); border-radius: 99px; overflow: hidden; }
.qform__bar { height: 100%; width: 33%; background: linear-gradient(90deg, var(--orange), var(--orange-2)); border-radius: 99px; transition: width .45s var(--ease); }
.qform__steplabel { display: flex; justify-content: space-between; align-items: baseline; margin-top: 11px; }
.qform__steplabel .s { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.qform__steplabel .t { font-size: 14px; font-weight: 600; color: var(--orange); }

.qstep { display: none; }
.qstep.is-active { display: block; animation: qfade .45s var(--ease); }
@keyframes qfade { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .qstep.is-active { animation: none; } }
.qstep__title { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.qstep__hint { color: var(--muted); font-size: 13.5px; margin-bottom: 22px; }

.qgrid { display: grid; gap: 16px; }
.qgrid.cols-2 { grid-template-columns: 1fr 1fr; }
.qblock { margin-top: 20px; }
.qblock > .qlabel { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 11px; }
.qblock > .qlabel .req { color: var(--orange); }

/* Logo select cards */
.logo-select { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.logo-card {
  position: relative; cursor: pointer;
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  background: #fff;
  padding: 18px 10px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease),
              transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.logo-card:hover { transform: translateY(-3px); border-color: var(--orange-soft); box-shadow: var(--shadow-sm); }
.logo-card input { position: absolute; opacity: 0; pointer-events: none; }
.logo-card .badge { width: 58px; height: 58px; color: var(--orange); transition: transform var(--dur) var(--ease); }
.logo-card .badge svg { width: 100%; height: 100%; }
.logo-card .nm { font-size: 13px; font-weight: 600; color: var(--ink); }
.logo-card .tick {
  position: absolute; top: 9px; right: 9px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--orange); color: #fff;
  display: grid; place-items: center;
  opacity: 0; transform: scale(.6);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.logo-card .tick svg { width: 12px; height: 12px; }
.logo-card.is-selected, .logo-card:has(input:checked) {
  border-color: var(--orange); background: var(--orange-tint);
  box-shadow: 0 0 0 1px var(--orange) inset, var(--shadow-sm);
}
.logo-card.is-selected .badge, .logo-card:has(input:checked) .badge { transform: scale(1.07); }
.logo-card.is-selected .tick, .logo-card:has(input:checked) .tick { opacity: 1; transform: scale(1); }

/* Pills & chips (wizard options) */
.pill-group, .chip-group { display: flex; flex-wrap: wrap; gap: 9px; }
.pill, .chip {
  position: relative; cursor: pointer; user-select: none;
  border: 1.5px solid var(--border); border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px; font-weight: 500; color: var(--ink); background: #fff;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.pill input, .chip input { position: absolute; opacity: 0; pointer-events: none; }
.pill:hover, .chip:hover { border-color: var(--orange-soft); }
.pill.is-selected, .pill:has(input:checked),
.chip.is-selected, .chip:has(input:checked) {
  background: var(--orange); border-color: var(--orange); color: #fff;
}

/* File dropzone */
.filedrop {
  border: 2px dashed var(--border); border-radius: var(--r-lg);
  background: var(--bg-soft);
  padding: 26px 18px; text-align: center; cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.filedrop:hover, .filedrop.is-drag { border-color: var(--orange); background: var(--orange-tint); }
.filedrop input { display: none; }
.filedrop__ic { display: block; width: 36px; height: 36px; margin: 0 auto 10px; color: var(--orange); }
.filedrop__ic svg { width: 100%; height: 100%; display: block; }
.filedrop__t { font-size: 14.5px; color: var(--ink); font-weight: 500; }
.filedrop__t b { color: var(--orange); font-weight: 600; }
.filedrop__s { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.filelist { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.filelist__item { position: relative; width: 76px; height: 76px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-soft); }
.filelist__item img { width: 100%; height: 100%; object-fit: cover; }
.filelist__item .rm {
  position: absolute; top: 4px; right: 4px; width: 20px; height: 20px;
  border-radius: 50%; border: 0; background: rgba(9,26,20,.85); color: #fff;
  display: grid; place-items: center; font-size: 13px; line-height: 1;
}

/* Conditional reveal */
[data-when] { display: none; }
[data-when].is-on { display: block; }
.hazard-detail { display: none; margin-top: 14px; }
.hazard-detail.is-on { display: block; }

/* Wizard nav */
.qform__nav {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border-soft);
}
.qform__nav .spacer { flex: 1; }

/* ==========================================================================
   Contact info items
   ========================================================================== */
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item__icon {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px; background: var(--orange-tint); color: var(--orange);
  display: grid; place-items: center;
}
.info-item__icon svg { width: 21px; height: 21px; }
.info-item h3 { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.info-item p, .info-item a { font-size: 14.5px; color: var(--ink); font-weight: 500; }
.info-item a:hover { color: var(--orange); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.ctaband {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5.5vw, 64px);
  text-align: center;
  position: relative; overflow: hidden;
}
.ctaband::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 90% at 85% 10%, rgba(21,128,61,.22), transparent 60%);
  pointer-events: none;
}
.ctaband > * { position: relative; }
.ctaband h2 { color: #fff; margin-bottom: 10px; }
.ctaband p { color: rgba(255,255,255,.68); max-width: 560px; margin: 0 auto 26px; }
.ctaband__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer a { color: rgba(255,255,255,.62); transition: color var(--dur) var(--ease); font-size: 13.5px; }
.footer a:hover { color: #fff; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: clamp(44px, 6vw, 72px) 0 44px;
}
.footer__brand .brand__logo { margin-bottom: 14px; }
.footer__brand p { font-size: 13.5px; line-height: 1.7; max-width: 32ch; margin-top: 12px; color: rgba(255,255,255,.55); }
.footer__contact { display: grid; gap: 10px; margin-top: 18px; }
.footer__contact li { display: flex; gap: 10px; align-items: center; font-size: 13.5px; }
.footer__contact svg { width: 16px; height: 16px; color: var(--orange); flex: none; }
.footer__col h4 {
  color: #fff; font-size: 13.5px; font-weight: 700; margin-bottom: 18px;
}
.footer__col li { margin-bottom: 10px; }
.footer__col .more { color: var(--orange); font-weight: 600; }
.footer__col .more:hover { color: #ffb27a; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer__bottom small { font-size: 12.5px; color: rgba(255,255,255,.45); }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { font-size: 12.5px; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .07s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .14s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1150px) {
  /* Menü hat viele Textpunkte — früher aufs Burger-Menü wechseln */
  .mainnav { display: none; }
  .burger { display: inline-flex; }
  .header__meta { margin-left: auto; }
}
@media (max-width: 1020px) {
  .hours { display: none; }
}
@media (max-width: 960px) {
  :root { --header-h: 64px; }
  .mainnav, .header__meta .hours { display: none; }
  .burger { display: inline-flex; }
  .header__meta { margin-left: auto; }
  .split { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: 1fr; }
  .flow__step .arrow { top: auto; bottom: -19px; right: 50%; transform: translateX(50%) rotate(90deg); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .dropdown__menu--mega { grid-template-columns: 1fr 1fr; }
  .gallery > *, .gallery > .wide { grid-column: span 6; }
}
@media (max-width: 620px) {
  .grid-4, .grid-3, .grid-2, .qgrid.cols-2, .feature-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 6px; }
  .stat + .stat::before { display: none; }
  .logo-select { grid-template-columns: 1fr 1fr; }
  .gallery > *, .gallery > .wide { grid-column: span 12; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn, .page-hero__cta .btn { width: 100%; }
  .qform__nav { flex-wrap: wrap; }
  .qform__nav .btn { flex: 1; min-width: 130px; }
}

/* ==========================================================================
   v4 additions — Split-Hero, Kacheln, SEO-Text, Kurzformular, Blog, Standorte
   ========================================================================== */

/* Accent für dunkle Flächen (Laubgrün ist dort zu dunkel) */
:root { --green-bright: #4ade80; }

/* ---------- Split hero (Startseite) ---------- */
.hero-split {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(74,222,128,.10), transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(21,128,61,.18), transparent 60%),
    linear-gradient(150deg, #12291f 0%, var(--navy) 55%, #0a1d16 100%);
  color: #fff;
  padding: clamp(40px, 6.5vw, 88px) 0;
}
.hero-split::before {
  /* dezente Foto-Ersatz-Textur, bis echte Bilder eingesetzt werden */
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(80% 90% at 60% 40%, #000, transparent 75%);
  mask-image: radial-gradient(80% 90% at 60% 40%, #000, transparent 75%);
}
.hero-split__grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-split h1 {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
}
.hero-split h1 .hl { color: var(--green-bright); }
.hero-split__tag { margin-top: 14px; font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,.85); font-weight: 500; }
.checklist--light { margin-top: 22px; }
.checklist--light li { color: rgba(255,255,255,.88); font-weight: 500; font-size: 15px; }
.checklist--light svg { color: var(--green-bright); }
.hero-phone {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 26px;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 800; letter-spacing: -0.01em; color: #fff;
}
.hero-phone .pre { font-weight: 600; color: rgba(255,255,255,.7); font-size: .62em; }
.hero-phone strong { color: var(--green-bright); font-weight: 800; }
.hero-phone svg { width: 1em; height: 1em; color: var(--green-bright); flex: none; }
.hero-phone:hover strong { color: #86efac; }
.g-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--ink);
  border-radius: var(--r);
  padding: 12px 18px;
  margin-top: 22px;
  box-shadow: var(--shadow-md);
}
.g-badge__g { width: 30px; height: 30px; flex: none; }
.g-badge__num { font-size: 20px; font-weight: 800; }
.g-badge__stars { display: inline-flex; gap: 2px; color: #f59e0b; }
.g-badge__stars svg { width: 16px; height: 16px; }
.g-badge small { display: block; font-size: 11.5px; color: var(--muted); font-weight: 500; }
.hero-split__note { margin-top: 18px; font-size: 12.5px; color: rgba(255,255,255,.55); }

/* Kachel-Grid rechts */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.tile {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center;
  padding: 22px 12px 18px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  color: #fff; font-size: 13.5px; font-weight: 600;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tile:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.5);
}
.tile__ic {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 22px -10px rgba(0,0,0,.45);
}
.tile__ic svg { width: 28px; height: 28px; }
.tile--green  .tile__ic { background: linear-gradient(135deg, #22c55e, #15803d); }
.tile--amber  .tile__ic { background: linear-gradient(135deg, #fbbf24, #d97706); }
.tile--blue   .tile__ic { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.tile--teal   .tile__ic { background: linear-gradient(135deg, #2dd4bf, #0d9488); }
.tile--violet .tile__ic { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.tile--rose   .tile__ic { background: linear-gradient(135deg, #fb7185, #e11d48); }
.tile .go {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff;
  display: grid; place-items: center;
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.tile .go svg { width: 12px; height: 12px; }
.tile:hover .go { opacity: 1; }

/* ---------- SEO-Textbereich ---------- */
.seo-text { max-width: 860px; margin-inline: auto; display: grid; gap: 18px; }
.seo-text p { font-size: 15px; line-height: 1.85; }
.seo-text strong, .seo-strong { color: var(--orange); font-weight: 700; }
.seo-text a { color: var(--orange); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.seo-text a:hover { color: var(--orange-2); }

/* ---------- Infobox & Options-Hinweis (Wizard) ---------- */
.infobox {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-left: 3.5px solid var(--orange);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 13.5px; color: var(--text); line-height: 1.65;
  margin-bottom: 13px;
}
.option-note { display: none; margin-top: 12px; }
.option-note.is-on { display: block; }
.option-note .infobox { margin-bottom: 0; border-left-color: var(--amber); }

/* ---------- Standort-Bereich ---------- */
.loc-group { margin-top: 34px; }
.loc-group h3 {
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.loc-group .areachips a { font-size: 13px; padding: 9px 15px; }
.loclist {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 7px 22px;
}
.loclist a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
}
.loclist a svg { width: 14px; height: 14px; color: var(--orange); flex: none; }
.loclist a:hover { color: var(--orange); }
@media (max-width: 960px) { .loclist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .loclist { grid-template-columns: 1fr; } }

/* ---------- Kurzformular + Firmenprofil ---------- */
.quickgrid { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(18px, 3vw, 32px); align-items: stretch; }
.quickform {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: clamp(22px, 3.5vw, 36px);
  box-shadow: var(--shadow-md);
  display: grid; gap: 16px; align-content: start;
}
.quickform h3 { font-size: 1.25rem; }
.quickform .sub { font-size: 13.5px; color: var(--muted); margin-top: -8px; }
.profile-card {
  background: linear-gradient(150deg, #12291f, var(--navy) 70%);
  color: #fff; border-radius: var(--r-xl);
  padding: clamp(22px, 3.5vw, 36px);
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.profile-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 85% 8%, rgba(74,222,128,.14), transparent 60%);
  pointer-events: none;
}
.profile-card > * { position: relative; }
.profile-card h3 { color: #fff; font-size: 1.15rem; }
.profile-card .info-item__icon { background: rgba(255,255,255,.1); color: var(--green-bright); }
.profile-card .info-item h3 { color: rgba(255,255,255,.55); font-size: 11px; }
.profile-card .info-item p, .profile-card .info-item a { color: #fff; }
.profile-card .info-item a:hover { color: var(--green-bright); }

/* ---------- Blog ---------- */
.post-card { padding: 0; overflow: hidden; }
.post-card .media-frame { margin: -1px -1px 8px; border-radius: var(--r-lg) var(--r-lg) 0 0; border-left: 0; border-right: 0; border-top: 0; }
.post-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.post-card__meta { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.prose { max-width: 720px; margin-inline: auto; display: grid; gap: 18px; }
.prose p { font-size: 15.5px; line-height: 1.85; }
.prose h2 { font-size: 1.45rem; margin-top: 14px; }
.prose h3 { font-size: 1.15rem; margin-top: 8px; }
.prose ul { display: grid; gap: 9px; padding-left: 4px; }
.prose ul li { display: flex; gap: 10px; font-size: 15px; }
.prose ul li::before { content: "—"; color: var(--orange); font-weight: 700; flex: none; }
.prose strong { color: var(--orange); }
.post-meta { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ---------- Responsive (v4) ---------- */
@media (max-width: 1240px) { .hours { display: none; } }
@media (max-width: 960px) {
  .hero-split__grid { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .quickgrid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .hero-phone { font-size: 1.4rem; }
}

/* ==========================================================================
   Moderne Hover-Animationen für Leistungs-Icons (Kacheln & Karten)
   ========================================================================== */
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes icon-glow {
  0%, 100% { box-shadow: 0 10px 22px -10px rgba(0,0,0,.45), 0 0 0 0 rgba(255,255,255,.0); }
  50%      { box-shadow: 0 18px 30px -12px rgba(0,0,0,.5), 0 0 22px 2px rgba(255,255,255,.28); }
}

/* Hero-Kacheln: Schweben + sanfter Glow + Glanz-Lauf */
.tile { overflow: hidden; }
.tile::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .65s ease;
}
.tile:hover::after { left: 130%; }
.tile:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.45);
  box-shadow: 0 24px 48px -18px rgba(0,0,0,.55);
}
.tile__ic { transition: transform .35s ease, box-shadow .35s ease; }
.tile:hover .tile__ic {
  animation: icon-float 1.9s ease-in-out infinite, icon-glow 1.9s ease-in-out infinite;
}

/* Leistungskarten: Anheben + Glow-Ring + Glanz-Lauf */
.card { position: relative; overflow: hidden; }
.card::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(21,128,61,.10), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .65s ease;
}
.card:hover::after { left: 135%; }
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 52px -22px rgba(21,128,61,.38);
  border-color: var(--orange-soft, #86efac);
}
.card__chip { transition: transform .35s ease, box-shadow .35s ease; }
.card:hover .card__chip {
  animation: icon-float 1.9s ease-in-out infinite;
  box-shadow: 0 0 0 6px rgba(21,128,61,.10), 0 14px 26px -10px rgba(21,128,61,.45);
}
@media (prefers-reduced-motion: reduce) {
  .tile:hover .tile__ic, .card:hover .card__chip { animation: none; }
  .tile::after, .card::after { display: none; }
}

/* ==========================================================================
   Leistungsseiten: Hero mit Hintergrundbild
   ========================================================================== */
.page-hero--img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero--img::before {
  content: ""; position: absolute; inset: 0; height: 100%;
  background: linear-gradient(180deg, rgba(10,18,32,.78) 0%, rgba(10,18,32,.62) 55%, rgba(10,18,32,.74) 100%);
  pointer-events: none;
}
.page-hero--img .h1, .page-hero--img h1 { color: #fff; }
.page-hero--img .h1 .hl { color: #86efac; }
.page-hero--img .lead { color: rgba(255,255,255,.88); }
.page-hero--img .breadcrumb, .page-hero--img .breadcrumb .sep { color: rgba(255,255,255,.65); }
.page-hero--img .breadcrumb a { color: rgba(255,255,255,.8); }
.page-hero--img .breadcrumb span[aria-current] { color: #fff; }
.page-hero--img .hero__badge { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }
.page-hero--img .btn--outline { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); backdrop-filter: blur(4px); }
.page-hero--img .btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.16); }

/* Leistungsseiten: echtes Bild statt Platzhalter-Frame */
.service-photo {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; display: block;
  border-radius: var(--r-lg, 18px);
  box-shadow: var(--shadow-md, 0 18px 40px -18px rgba(0,0,0,.35));
}
.service-photo--fill {
  min-height: 220px; max-height: 300px;
  margin-top: 22px;
}

/* ==========================================================================
   Über-uns-Banner: Text links, Bild rechts sichtbar (Verlauf von links)
   ========================================================================== */
.about-banner {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center right;
  background-repeat: no-repeat;
}
.about-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(9,21,16,.96) 0%,
    rgba(9,21,16,.88) 38%,
    rgba(9,21,16,.55) 62%,
    rgba(9,21,16,.10) 100%);
  pointer-events: none;
}
.about-banner .wrap { position: relative; padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.about-banner__content { max-width: 580px; text-align: left; }
.about-banner__content .h2 { color: #fff; margin-top: 10px; }
.about-banner__content p { color: rgba(255,255,255,.9); margin-top: 16px; font-size: 16px; line-height: 1.85; }
.about-banner__content strong { color: #86efac; }
@media (max-width: 760px) {
  .about-banner::before { background: rgba(9,21,16,.85); }
}

/* ==========================================================================
   CTA-Banner auf Leistungsseiten
   ========================================================================== */
.cta-banner {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,21,16,.94) 0%, rgba(9,21,16,.78) 55%, rgba(9,21,16,.45) 100%);
  pointer-events: none;
}
.cta-banner__in {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  padding-top: clamp(44px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 72px);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.88); margin-top: 12px; max-width: 560px; line-height: 1.8; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner__actions .btn--light { background: #fff; color: var(--ink, #10241c); }

/* ==========================================================================
   Größere Leistungs-Icons (+ ~20 %)
   ========================================================================== */
.tile__ic { width: 66px; height: 66px; border-radius: 17px; }
.tile__ic svg { width: 34px; height: 34px; }
.card__chip { width: 60px; height: 60px; border-radius: 15px; }
.card__chip svg { width: 30px; height: 30px; }

/* Icon-Reihe als dunkles Band (z. B. vor den Standorten) */
.tiles--row { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1100px) { .tiles--row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .tiles--row { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   CTA-Button: moderne Hover-Animation (Conversion-optimiert)
   ========================================================================== */
.btn--cta {
  position: relative;
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-2) 100%);
  background-size: 150% 100%;
  background-position: 0% 0%;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-position .3s var(--ease);
  will-change: transform;
}
.btn--cta:hover {
  transform: translateY(-3px) scale(1.04);
  background-position: 100% 0%;
  box-shadow: 0 10px 26px -8px rgba(21,128,61,.55), 0 0 22px 2px rgba(34,197,94,.35);
}
.btn--cta:active { transform: translateY(-1px) scale(.99); }
.btn--cta svg { transition: transform .3s var(--ease); }
.btn--cta:hover svg { transform: translateX(6px); }
.btn--cta:focus-visible {
  outline: 3px solid #86efac;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(34,197,94,.25);
}
@media (prefers-reduced-motion: reduce) {
  .btn--cta, .btn--cta svg { transition: none; }
  .btn--cta:hover { transform: none; }
  .btn--cta:hover svg { transform: none; }
}
