/* ==========================================================================
   Asiatische Hornisse — Nienhaus Schädlingsbekämpfung
   Design-System: 1:1 Match mit schaedlingsbekaempfung-nienhaus.de
   Automatic.css (ACSS) Token-System nachgebaut
   ========================================================================== */

:root {
  /* Primary Palette — exakt von ACSS hx386.css */
  --primary: #38555c;
  --primary-hover: #416169;
  --primary-ultra-light: #eff4f5;
  --primary-light: #d0dee2;
  --primary-semi-light: #90b3bb;
  --primary-semi-dark: #44666f;
  --primary-dark: #30494f;
  --primary-ultra-dark: #203032;
  --primary-medium: #61929e;
  --primary-trans-20: rgba(56, 85, 92, 0.2);
  --primary-trans-40: rgba(56, 85, 92, 0.4);

  /* Secondary */
  --secondary: #86aac0;
  --secondary-hover: #91b2c6;
  --secondary-ultra-light: #fcfdfd;
  --secondary-light: #eef3f6;
  --secondary-medium: #cddce5;
  --secondary-semi-dark: #3d6076;
  --secondary-dark: #2b4554;
  --secondary-ultra-dark: #111b22;
  --secondary-trans-10: rgba(134, 170, 192, 0.1);

  /* Action (CTA Green) */
  --action: #0cf574;
  --action-hover: #2ff689;
  --action-ultra-light: #e7fef1;
  --action-light: #b6fcd5;
  --action-semi-dark: #07ab51;
  --action-dark: #057a3a;

  /* Accent (Warm Cream) */
  --accent: #fae9ca;
  --accent-light: #f8e2b9;
  --accent-semi-light: #f0bc5c;
  --accent-medium: #e99f16;

  /* Neutrals */
  --base: #444444;
  --white: #fff;
  --black: #000;
  --shade-light-trans-10: rgba(255, 255, 255, 0.1);

  /* Layout */
  --content-width: 1280px;
  --section-padding-x: clamp(1.5rem, 3vw, 2.5rem);
  --container-gap: clamp(2rem, 4vw, 3rem);
  --content-gap: clamp(1rem, 2vw, 1.5rem);
  --grid-gap: clamp(1.5rem, 3vw, 2.4rem);
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-s: clamp(0.75rem, 1.5vw, 1rem);
  --space-m: clamp(1rem, 2vw, 1.5rem);
  --space-l: clamp(1.5rem, 3vw, 2rem);
  --space-xl: clamp(2rem, 4vw, 3rem);

  /* Radius */
  --radius-xs: 0.333rem;
  --radius-s: 0.5rem;
  --radius-m: 0.75rem;
  --radius-l: 1.125rem;
  --radius-circle: 50vw;

  /* Typography */
  --h1: clamp(1.8rem, 3.5vw, 2.565rem);
  --h2: clamp(1.5rem, 3vw, 2.28rem);
  --h3: clamp(1.3rem, 2.5vw, 2.025rem);
  --h4: clamp(1.1rem, 2vw, 1.8rem);
  --text-s: clamp(0.8rem, 1vw, 0.875rem);
  --text-base: 1rem;
  --base-line-height: calc(6px + 2ex);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Lato", sans-serif;
  color: var(--base);
  background-color: var(--secondary-ultra-light);
  line-height: var(--base-line-height);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  text-wrap: balance;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: 0.2s ease; }
ul, ol { list-style: none; }
p { max-width: 75ch; }

/* ===================== ACCESSIBILITY ===================== */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--action); color: var(--primary-ultra-dark);
  padding: 0.5rem 1rem; z-index: 10000; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ===================== CONTAINER ===================== */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-inline: var(--section-padding-x);
}

/* ===================== TOP BAR ===================== */
.topbar {
  background-color: var(--primary-ultra-light);
  min-height: 2rem;
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-m);
  padding-block: 0.25rem;
  font-size: var(--text-s);
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
}
.topbar-link:hover {
  border-bottom-color: var(--action);
}
.topbar-link svg {
  width: 14px; height: 14px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* ===================== HEADER ===================== */
.site-header {
  background-color: var(--primary);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3.5rem;
  padding-block: 0.5rem;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  width: auto;
  height: clamp(40px, 5vw, 60px);
}

/* Navigation */
.main-nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navlink {
  position: relative;
  color: var(--primary-ultra-light);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, calc(0.75rem + ((1vw - 0.2rem) * 0.51)), 1rem);
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
}
.navlink::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 0.13rem;
  background-color: var(--action-hover);
  border-radius: 5px;
  transition: width 0.2s ease, left 0.2s ease;
}
.navlink:hover::after {
  width: 100%; left: 0;
}
.navlink-termin {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--secondary);
  border-radius: var(--radius-s);
  color: var(--primary-ultra-light);
}
.navlink-termin:hover {
  color: var(--primary-ultra-dark);
  background-color: var(--action-hover);
  border-color: var(--action-hover);
}
.navlink-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  background-color: #4e757e;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.navlink-whatsapp:hover { transform: translateY(-2px); }
.navlink-whatsapp svg { width: 1.3rem; height: 1.3rem; fill: var(--white); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--primary-ultra-light);
  font-size: 1.5rem; padding: 0.5rem;
}
.nav-toggle svg { width: 24px; height: 24px; fill: currentColor; }

/* ===================== HERO ===================== */
.hero {
  background-color: var(--secondary-ultra-light);
  padding-block: var(--space-xl) var(--space-l);
}
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
}
/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 245, 116, 0.1);
  border: 1px solid rgba(12, 245, 116, 0.3);
  color: var(--action-semi-dark);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  padding: 5px 14px;
  border-radius: var(--radius-circle);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-self: flex-start;
}
.hero-badge svg { color: var(--action-semi-dark); }

/* Hero Trust */
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  margin-top: var(--space-xs);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--base);
}
.trust-item svg { color: var(--action-semi-dark); flex-shrink: 0; }

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: var(--space-s);
}
.hero-text h1 {
  color: var(--primary);
  font-size: var(--h2);
  font-weight: 800;
}
.hero-text p { color: var(--base); }
.hero-text ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  list-style: disc;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.hero-text ul li { color: var(--base); }
.hero-text strong { color: var(--primary); }
.hero-media {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-m);
}
.hero-portrait {
  width: 100%;
  max-width: 32rem;
  object-fit: contain;
  filter: drop-shadow(4px 8px 16px rgba(56, 85, 92, 0.3));
}

/* ===================== STATS BAND ===================== */
.stats-band {
  background-color: var(--accent);
  padding-block: var(--space-l);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-m);
  text-align: center;
}
.stat-num {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
  line-height: 1;
}
.stat-num span {
  color: var(--action-semi-dark);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--base);
  margin-top: 4px;
}
.stat-item--link {
  text-decoration: none;
  transition: transform 0.2s ease;
}
.stat-item--link:hover {
  transform: translateY(-2px);
}
.stat-item--link .stat-label {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.stat-item--link:hover .stat-label {
  border-bottom-color: var(--primary);
}

/* ===================== DETAILS GRID ===================== */
.details-section {
  padding-block: var(--space-xl);
}
.details-heading {
  margin-bottom: var(--grid-gap);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}
.detail-card {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background-color: var(--secondary-ultra-light);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-s);
  overflow: hidden;
}
.detail-card__content {
  grid-column: 1 / 9;
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.detail-card__icon {
  width: 2.2rem; height: 2.2rem;
  background-color: var(--secondary);
  color: var(--secondary-ultra-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.detail-card__icon svg { width: 1rem; height: 1rem; fill: var(--secondary-ultra-light); }
.detail-card__heading {
  font-size: var(--h4);
  color: var(--primary);
}
.detail-card__text {
  max-width: 34ch;
  font-size: 0.9rem;
  color: var(--base);
}
.detail-card__media {
  grid-column: 9 / 13;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  max-height: 18.125rem;
}

/* ===================== CTA INLINE ===================== */
.cta-inline {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  padding: var(--space-l) 0;
  margin-top: var(--space-m);
  border-top: 1px solid var(--secondary-light);
  flex-wrap: wrap;
}
.cta-inline p {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 700;
  font-family: "Raleway", sans-serif;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-radius: 4px;
  padding: 1.125em 2em;
  cursor: pointer;
  border: none;
  transition: 0.2s ease;
}
.btn-primary {
  background-color: var(--action);
  color: var(--primary-ultra-dark);
  box-shadow: 0 4px 6px -2px var(--primary-trans-20);
}
.btn-primary:hover {
  background-color: var(--action-hover);
  transform: translateX(1px);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--secondary);
  box-shadow: none;
  padding: 0.75em 1.5em;
}
.btn-outline:hover {
  color: var(--primary-ultra-dark);
  background-color: var(--action-hover);
  border-color: var(--action-hover);
}
.btn-call {
  background-color: var(--primary);
  color: var(--primary-ultra-light);
  border-radius: var(--radius-circle);
  padding: 0.75em 1.5em;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.5px;
  align-self: flex-start;
}
.btn-call:hover {
  background-color: var(--primary-hover);
}
.btn svg { width: 1em; height: 1em; fill: currentColor; }

/* ===================== SECTIONS ===================== */
.section {
  padding-block: clamp(2rem, 5vw, 4rem);
}
.section--alt {
  background-color: var(--primary-ultra-light);
}
.section--light {
  background-color: var(--secondary-light);
}
.section--cream {
  background-color: var(--accent);
}
.section--warm {
  background-color: #fdf8f0;
}
.section-header {
  margin-bottom: var(--grid-gap);
}
.section-header p {
  margin-top: var(--space-xs);
  color: var(--base);
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--grid-gap); align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--grid-gap); }
.grid-2-3 { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: var(--space-xl); }

/* Cards */
.card {
  background-color: var(--white);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-s);
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.card h3, .card h4 { color: var(--primary); }

/* Callout */
.callout {
  background-color: var(--action-ultra-light);
  border-left: 3px solid var(--action);
  border-radius: var(--radius-xs);
  padding: var(--space-m);
  font-size: 0.9rem;
}
.callout strong { color: var(--primary); }

/* Danger variant */
.callout--danger {
  background-color: #fff5f5;
  border-left-color: #e53e3e;
}
.callout--danger strong { color: #c53030; }

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  counter-reset: step;
}
.step {
  display: flex;
  gap: var(--space-m);
  align-items: flex-start;
}
.step-number {
  counter-increment: step;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem; height: 2.2rem;
  background-color: var(--secondary-dark);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 0.25rem; }
.step-content p { font-size: 0.9rem; }

/* ===================== LISTS IN CONTENT ===================== */
.section ul {
  padding-left: 1.25rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.section ul li { color: var(--base); }
.section p + ul { margin-top: 0.5rem; }
.section a { color: var(--primary); border-bottom: 1px solid transparent; }
.section a:hover { border-bottom-color: var(--action); }

/* ===================== FAQ ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  max-width: 48rem;
}
details {
  border: 1px solid var(--secondary);
  border-radius: var(--radius-s);
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: var(--space-m);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--secondary);
  transition: transform 0.2s;
  flex-shrink: 0;
}
details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
summary::-webkit-details-marker { display: none; }
details .faq-answer {
  padding: 0 var(--space-m) var(--space-m);
  color: var(--base);
}

/* ===================== KONTAKT ===================== */
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.kontakt-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}
.kontakt-item svg {
  width: 1.25rem; height: 1.25rem;
  fill: var(--primary);
  flex-shrink: 0;
}
.kontakt-item a {
  color: var(--primary);
  border-bottom: 1px solid transparent;
}
.kontakt-item a:hover {
  border-bottom-color: var(--action);
}

/* ===================== EXPERT SECTION ===================== */
.section--expert {
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}
.expert-text {
  padding-bottom: var(--space-xl);
}
.section--expert::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--primary-dark);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.expert-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
  gap: var(--space-xl);
  align-items: end;
  position: relative;
  z-index: 1;
}
.expert-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  align-self: stretch;
}
.expert-image img {
  max-width: 28rem;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  position: relative;
  z-index: 0;
  margin-top: auto;
}
.expert-text h2 {
  color: var(--white);
  margin-bottom: var(--space-s);
  font-size: var(--h3);
}
.expert-name {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--action);
  margin-bottom: var(--space-s);
}
.expert-text > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
.expert-text ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--space-s);
}
.expert-text ul li {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.9rem;
}
.expert-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background-color: var(--action);
  border-radius: 50%;
}
.expert-text ul li strong {
  color: var(--white);
}
.expert-cta {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
  margin-top: var(--space-m);
}
.section--expert .btn-call {
  background-color: var(--action);
  color: var(--primary-ultra-dark);
  font-size: 0.9rem;
  padding: 0.65em 1.3em;
}
.section--expert .btn-call:hover {
  background-color: var(--action-hover);
}
.section--expert .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.65em 1.3em;
}
.section--expert .btn-outline:hover {
  background-color: var(--action-hover);
  border-color: var(--action-hover);
  color: var(--primary-ultra-dark);
}

/* ===================== ENTFERNUNG SECTION ===================== */
.section--entfernung {
  background: var(--accent);
  color: var(--base);
  overflow: visible;
}
.section--entfernung h2,
.section--entfernung h3,
.section--entfernung h4 {
  color: var(--primary);
}
.section--entfernung p,
.section--entfernung li {
  color: var(--base);
}
.section--entfernung .step-number {
  background-color: var(--primary);
  color: var(--white);
}
.entfernung-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: var(--space-xl);
  align-items: center;
}
.entfernung-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  position: relative;
  margin-top: calc(clamp(2rem, 5vw, 4rem) * -1);
}
.entfernung-bookmark {
  position: relative;
  width: 100%;
  filter: drop-shadow(2px 6px 16px rgba(56, 85, 92, 0.2));
}
.entfernung-bookmark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.entfernung-content h2 {
  font-size: var(--h2);
  margin-bottom: 0.25rem;
}
.entfernung-sub {
  font-size: 1.1rem;
  color: var(--primary-medium) !important;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  margin-bottom: var(--space-m);
}
.entfernung-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.entfernung-step {
  display: flex;
  gap: var(--space-s);
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-s);
  padding: var(--space-s) var(--space-m);
  border-left: 3px solid var(--primary);
  box-shadow: 0 2px 6px rgba(56, 85, 92, 0.08);
}
.entfernung-step .step-content h4 {
  margin-bottom: 0.15rem;
  font-size: 1.05rem;
}
.entfernung-step .step-content p {
  font-size: 0.85rem;
}
.entfernung-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: var(--space-m);
  background: #fff5f5;
  border: 1px solid #e53e3e;
  border-radius: var(--radius-s);
  padding: var(--space-s) var(--space-m);
  font-size: 0.9rem;
}
.entfernung-warning svg {
  color: #e53e3e;
  flex-shrink: 0;
  margin-top: 2px;
}
.entfernung-warning strong {
  color: #c53030;
}
.entfernung-cta {
  margin-top: var(--space-m);
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

/* ===================== PRÄVENTION SECTION ===================== */
.section--praevention {
  background-color: var(--accent);
}
.section--praevention .card {
  background-color: var(--white);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(56, 85, 92, 0.08);
}

/* ===================== EQUIPMENT SECTION ===================== */
.section--equipment {
  background-color: var(--secondary-ultra-light);
}
.equipment-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}
.equipment-card {
  background-color: var(--white);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-s);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.equipment-image {
  background-color: var(--primary-ultra-light);
  display: flex;
  justify-content: center;
  padding: var(--space-m);
}
.equipment-image img {
  max-width: 100%;
  max-height: 22rem;
  height: auto;
  object-fit: contain;
  display: block;
}
.equipment-text {
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.equipment-text h3 {
  color: var(--primary);
}
.equipment-text p {
  font-size: 0.9rem;
  color: var(--base);
}

/* ===================== SERVICEGEBIET SECTION ===================== */
.section--servicegebiet {
  background: linear-gradient(180deg, var(--secondary-light) 0%, var(--secondary-ultra-light) 100%);
}
.servicegebiet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: var(--space-xl);
  align-items: start;
}
.servicegebiet-map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.servicegebiet-map img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(56, 85, 92, 0.15));
}
.map-legend {
  display: flex;
  gap: var(--space-m);
  font-size: var(--text-s);
  color: var(--base);
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot--base {
  background-color: var(--action);
  box-shadow: 0 0 0 3px var(--action-light);
}
.legend-dot--area {
  background-color: var(--secondary);
  border: 2px solid #6B9AB3;
}
.servicegebiet-text h3 {
  margin-bottom: var(--space-s);
}
.servicegebiet-kreise {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  margin-top: var(--space-m);
}
.kreis-item {
  background-color: var(--white);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-xs);
  padding: var(--space-s) var(--space-m);
}
.kreis-item h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.kreis-item p {
  font-size: var(--text-s);
  color: var(--base);
}

/* ===================== SECTION IMAGES ===================== */
.section-image {
  margin-bottom: var(--space-m);
  overflow: hidden;
}
.section-image--rounded {
  border-radius: var(--radius-m);
}
.section-image img {
  max-width: 100%;
  max-height: 20rem;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-m);
}

/* Risiko section */
.section--risiko {
  background-color: var(--primary-ultra-light);
}

/* Risiko banner image */
.risiko-image-banner {
  margin-bottom: var(--grid-gap);
  border-radius: var(--radius-m);
  background-color: var(--white);
  display: flex;
  justify-content: center;
  padding: var(--space-m);
}
.risiko-image-banner img {
  max-width: 100%;
  max-height: 24rem;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===================== FOOTER CTA (#schädlingsfrei) ===================== */
.footer-cta {
  background-color: var(--primary);
  color: var(--white);
  padding-block: var(--container-gap);
  text-align: center;
}
.footer-cta h2 {
  color: var(--white);
  font-size: var(--h1);
  margin-bottom: var(--content-gap);
}
.footer-cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: var(--space-l);
}

/* ===================== FOOTER ===================== */
.footer {
  background-color: var(--primary);
  color: #FAFAFA;
  padding-bottom: var(--space-l);
}
.footer-inner {
  background-color: var(--shade-light-trans-10);
  border-radius: 4px;
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-xl);
}

/* Footer brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.footer-logo {
  width: 7.625em;
  height: auto;
}
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-address svg {
  width: 14px; height: 14px;
  fill: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-inhaber {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-dsv {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 14rem;
  margin-top: var(--space-s);
}
.footer-dsv-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-dsv img {
  max-width: 14rem;
  background-color: var(--white);
  padding: 5px 6px 5px 8px;
  border-radius: 2px;
}

/* Footer nav columns */
.footer-nav {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-xl);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.footer-col-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Raleway", sans-serif;
}
.footer-link {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-link:hover { color: var(--action); }
.footer-link svg {
  width: 13px; height: 13px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Footer sub bar */
.footer-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-s);
  padding-top: var(--space-l);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-legal {
  display: flex;
  gap: var(--space-m);
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}
.footer-legal a:hover { color: var(--action); }

/* ===================== RESPONSIVE ===================== */

/* Tablet (≤991px) */
@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .main-nav-list {
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 320px; height: 100vh;
    background-color: var(--secondary-medium);
    padding: 4rem 2rem 2rem;
    gap: 0.5rem;
    z-index: 300;
    box-shadow: -4px 0 12px rgba(0,0,0,0.15);
  }
  .navlink { color: var(--primary-ultra-dark); font-size: 1rem; width: 100%; }
  .navlink-termin { border-color: var(--primary); color: var(--primary-ultra-dark); text-align: center; }
  .navlink-whatsapp { align-self: flex-start; }
}

/* Tablet (≤767px) */
@media (max-width: 767px) {
  .hero-inner { flex-direction: column; }
  .details-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2-3 { grid-template-columns: 1fr; }
  .section--expert::before { display: none; }
  .expert-layout { grid-template-columns: 1fr; text-align: center; }
  .expert-image { order: -1; }
  .expert-image { align-items: center; }
  .expert-image img { max-width: 18rem; margin-top: 0; }
  .expert-text ul li { text-align: left; }
  .expert-cta { justify-content: center; }
  .entfernung-layout { grid-template-columns: 1fr; }
  .entfernung-image { order: -1; justify-content: center; }
  .entfernung-bookmark { max-width: 10rem; }
  .equipment-layout { grid-template-columns: 1fr; }
  .servicegebiet-layout { grid-template-columns: 1fr; }
  .servicegebiet-map img { max-width: 20rem; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; gap: var(--space-l); }
  .footer-sub { flex-direction: column; align-items: flex-start; }
  .footer-cta { text-align: left; }
  .footer-cta p { margin-inline: 0; }
}

/* Mobile (≤478px) */
@media (max-width: 478px) {
  .topbar { display: none; }
  .main-nav-list { width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .detail-card { grid-template-columns: 1fr; }
  .detail-card__content { grid-column: 1; }
  .detail-card__media { grid-column: 1; max-height: 12rem; }
  .footer-inner { padding: var(--space-m); }
  .cta-inline { flex-direction: column; text-align: center; }
}

/* ===================== KLICKWEISE CREATOR ===================== */
.kw-footer-creator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-s);
  padding: var(--space-s) var(--space-m);
  background: var(--primary-ultra-dark);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}
.kw-logo-link img {
  height: 1.2em;
  width: auto;
  display: block;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.kw-logo-link:hover img { opacity: 0.8; }
.kw-text {
  margin: 0;
}
.kw-text a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.kw-text a:hover { color: var(--action); }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}
.wa-float svg { color: var(--white); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
