/* Pro24h Kammerjäger — Schädlingsbekämpfung
   Cream (#fdf9f3) + Forest green (#166534) + Terracotta CTA (#c2410c).
   Mobile-first. Distinct from Sanitar (blue+orange), Schluesseldienst (white+amber+black),
   Elektriker (white+electric-blue+yellow). Discreet, professional, hygiene feel. */

:root {
  /* Surfaces — warm cream */
  --bg: #fdf9f3;
  --bg-soft: #f7f1e3;
  --bg-card: #ffffff;
  --bg-dark: #14352a;
  --bg-dark-2: #1e4a3a;

  /* Ink — deep green */
  --text: #14352a;
  --text-soft: #5c6b64;
  --text-mute: #9ba3a0;
  --text-on-dark: #f7f1e3;

  /* Brand — forest green */
  --primary: #166534;
  --primary-dark: #14532d;
  --primary-light: #22c55e;
  --primary-soft: #dcfce7;

  /* CTA — warm terracotta */
  --cta: #c2410c;
  --cta-dark: #9a3412;
  --cta-text: #fdf9f3;
  --cta-glow: rgba(194, 65, 12, 0.30);
  --cta-soft: #fed7aa;

  /* Status */
  --success: #16a34a;
  --danger: #7c2d12;

  /* Borders */
  --border: #e6dcc4;
  --border-dark: #c9b98d;

  --radius: 10px;
  --radius-lg: 16px;
  --radius-sm: 6px;
  --container: 1180px;
  --strip-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--strip-h);
}

img, svg { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--primary); text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

/* ========== DISKRET-STRIP ========== */
.diskret-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.diskret-strip .shield {
  width: 16px;
  height: 16px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.diskret-strip .shield svg { width: 100%; height: 100%; }
.diskret-strip .sep { color: var(--text-mute); margin: 0 3px; font-weight: 400; }

/* ========== HEADER ========== */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 90;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark svg { width: 22px; height: 22px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name { font-weight: 800; font-size: 15.5px; letter-spacing: -0.01em; }
.brand-text .sub { font-size: 10.5px; color: var(--text-mute); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 3px; }

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cta);
  color: var(--cta-text) !important;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13.5px;
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: all 0.15s ease;
}

.header-call:hover {
  background: var(--cta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--cta-glow);
}

.header-call svg { width: 16px; height: 16px; }

/* ========== HERO — two-line stacked, cream ========== */
.hero {
  padding: 56px 0 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-soft 1.8s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.15); }
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .line-2 {
  display: block;
  color: var(--primary);
  margin-top: 4px;
}

.hero-lead {
  font-size: 17px;
  color: var(--text-soft);
  margin: 0 auto 32px;
  line-height: 1.6;
  max-width: 50ch;
}

.hero-lead strong { color: var(--text); font-weight: 700; }

.btn-terracotta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cta);
  color: var(--cta-text) !important;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.005em;
  padding: 18px 32px;
  min-height: 60px;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: 0 3px 0 var(--cta-dark), 0 8px 22px var(--cta-glow);
}

.btn-terracotta:hover {
  background: var(--cta-dark);
  color: var(--cta-text) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #7c2d12, 0 12px 30px var(--cta-glow);
}

.btn-terracotta svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-terracotta .num { font-size: 19px; font-weight: 900; letter-spacing: -0.01em; }

.hero-trust {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  color: var(--text);
  padding: 7px 13px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid var(--border);
}

.hero-trust-chip svg { width: 14px; height: 14px; color: var(--primary); }

.hero-photo {
  margin: 40px auto 0;
  max-width: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  box-shadow: 0 12px 32px rgba(20, 53, 42, 0.10);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== SCHÄDLING-MATRIX — 8 pest tiles ========== */
.schaedling {
  padding: 56px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head .kicker {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 8px;
}

.section-head h2 .accent { color: var(--primary); }

.section-head p {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 54ch;
  margin: 0 auto;
}

.schaedling-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.schaedling-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.schaedling-tile:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(20, 53, 42, 0.10);
  color: var(--text);
}

.schaedling-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.schaedling-tile:hover .schaedling-icon {
  background: var(--primary);
  color: var(--bg);
}

.schaedling-icon svg { width: 30px; height: 30px; }

.schaedling-tile h3 {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ========== DISKRET-PROZESS — 3 stages ========== */
.prozess {
  padding: 64px 0;
  background: var(--bg);
}

.prozess-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.prozess-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  position: relative;
}

.prozess-shield {
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
  background: var(--primary-soft);
}

.prozess-shield svg { width: 30px; height: 30px; }

.prozess-step h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--text);
}

.prozess-step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

.prozess-num {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--cta);
  color: var(--cta-text);
  font-weight: 900;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

/* ========== ERKENNUNGS-GUIDE — 6 identification mini-cards ========== */
.erkennung {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.erkennung-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.erkennung-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.erkennung-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.erkennung-icon svg { width: 26px; height: 26px; }

.erkennung-body h4 {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
  color: var(--text);
}

.erkennung-body p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
}

.erkennung-body p strong { color: var(--text); font-weight: 700; }

/* ========== BEHANDLUNGS-VERFAHREN — 4 method cards ========== */
.verfahren {
  padding: 64px 0;
  background: var(--bg);
}

.verfahren-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.verfahren-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  transition: all 0.18s ease;
}

.verfahren-card:hover {
  border-top-color: var(--cta);
  box-shadow: 0 6px 16px rgba(20, 53, 42, 0.08);
  transform: translateY(-2px);
}

.verfahren-icn {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.verfahren-icn svg { width: 22px; height: 22px; }

.verfahren-card h3 {
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.25;
}

.verfahren-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ========== PRÄVENTION-CHECKLISTE — 4 grid categories ========== */
.praevention {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.praevention-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.praev-cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px 22px;
}

.praev-cat h3 {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.praev-cat h3::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--cta);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fdf9f3' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.praev-cat ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.praev-cat li {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.praev-cat li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ========== ZERTIFIKATE — 5 pill badges ========== */
.zertifikate {
  padding: 56px 0;
  background: var(--bg);
}

.zert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.zert-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border-dark);
  border-radius: 100px;
  padding: 10px 18px 10px 12px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.zert-badge .icn {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zert-badge .icn svg { width: 14px; height: 14px; }

/* ========== WISSENS-KARTEN — 8 short articles ========== */
.wissen {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wissen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.wissen-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px 22px;
  transition: all 0.18s;
}

.wissen-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(20, 53, 42, 0.08);
  transform: translateY(-2px);
}

.wissen-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wissen-card h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
}

.wissen-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.6;
}

.wissen-card p strong {
  color: var(--text);
  background: var(--cta-soft);
  padding: 0 3px;
  border-radius: 2px;
  font-weight: 700;
}

/* ========== THEMEN IM DETAIL — with terracotta strip ========== */
.themen-xl {
  padding: 64px 0;
  background: var(--bg);
}

.themen-xl-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.themen-xl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.themen-xl-strip {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-dark) 100%);
  color: var(--cta-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.themen-xl-strip .marker {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cta-text);
  flex-shrink: 0;
}

.themen-xl-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
}

.themen-xl-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.themen-xl-card:hover .themen-xl-photo img {
  transform: scale(1.04);
}

.themen-xl-card .body {
  padding: 22px 22px 26px;
}

.themen-xl-card h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 12px;
}

.themen-xl-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

.themen-xl-card p strong {
  color: var(--text);
  background: var(--cta-soft);
  padding: 0 3px;
  border-radius: 2px;
  font-weight: 700;
}

/* ========== KUNDEN-FÄLLE — 3 anonymized case studies ========== */
.faelle {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faelle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.fall {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
}

.fall-eyebrow {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.fall h4 {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.28;
  color: var(--text);
  margin-bottom: 8px;
}

.fall p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}

.fall-result {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-dark);
  padding-top: 10px;
  border-top: 1px dashed var(--border-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.fall-result::before {
  content: '→';
  color: var(--cta);
  font-weight: 900;
}

.fall.with-photo {
  padding: 0;
  overflow: hidden;
}

.fall.with-photo .fall-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}

.fall.with-photo .fall-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fall.with-photo:hover .fall-photo img {
  transform: scale(1.04);
}

.fall.with-photo > .fall-eyebrow,
.fall.with-photo > h4,
.fall.with-photo > p,
.fall.with-photo > .fall-result {
  margin-left: 22px;
  margin-right: 22px;
}

.fall.with-photo > .fall-eyebrow {
  margin-top: 22px;
}

.fall.with-photo > .fall-result {
  margin-bottom: 24px;
}

/* ========== FAQ — F.01 / A. journalistic style ========== */
.faq {
  padding: 64px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  counter-increment: faqcount;
}

.faq-list {
  counter-reset: faqcount;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  display: flex;
  gap: 16px;
  align-items: baseline;
  letter-spacing: -0.005em;
  line-height: 1.35;
}

.faq-q::before {
  content: 'F.0' counter(faqcount);
  color: var(--primary);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
}

.faq-q .txt { flex: 1; }

.faq-q .toggle {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--cta);
  transition: transform 0.2s;
  font-weight: 400;
}

.faq-item.open .faq-q .toggle { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 46px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  transition: max-height 0.3s ease;
  position: relative;
}

.faq-a::before {
  content: 'A.';
  position: absolute;
  left: 0;
  color: var(--cta);
  font-weight: 900;
  font-size: 12.5px;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  letter-spacing: 0.06em;
  top: 0;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 22px;
}

/* ========== FINAL CTA — deep forest green background ========== */
.final {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.final > .container { position: relative; z-index: 1; }

.final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cta-soft);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.final-eyebrow .shield {
  width: 12px; height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-eyebrow .shield svg { width: 100%; height: 100%; }

.final h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 14px;
}

.final h2 .terracotta-line {
  border-bottom: 4px solid var(--cta);
  padding-bottom: 2px;
}

.final p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 46ch;
  margin: 0 auto 30px;
}

.final .btn-terracotta {
  background: var(--bg);
  color: var(--text) !important;
  box-shadow: 0 3px 0 var(--border-dark), 0 12px 30px rgba(0, 0, 0, 0.30);
}

.final .btn-terracotta:hover {
  background: #fff;
  color: var(--text) !important;
}

.final-meta {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* ========== FOOTER — single dark line ========== */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 22px 0;
  font-size: 13px;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.footer a { color: #fff; }
.footer a:hover { color: var(--cta-soft); }

.footer .legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

/* ========== STICKY MOBILE STRIP — prominent terracotta CTA bar ========== */
.mobile-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--strip-h);
  background: linear-gradient(90deg, var(--cta) 0%, var(--cta-dark) 100%);
  border-top: 3px solid var(--primary);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  gap: 12px;
  color: var(--cta-text);
  text-decoration: none;
  box-shadow: 0 -6px 22px rgba(194, 65, 12, 0.35);
  animation: strip-pulse 2.6s ease-in-out infinite;
}

@keyframes strip-pulse {
  0%, 100% { box-shadow: 0 -6px 22px rgba(194, 65, 12, 0.30); }
  50%      { box-shadow: 0 -6px 30px rgba(194, 65, 12, 0.55); }
}

.mobile-strip:hover,
.mobile-strip:active {
  background: linear-gradient(90deg, var(--cta-dark) 0%, #7c2d12 100%);
  color: var(--cta-text);
}

.mobile-strip .phone-icn {
  width: 26px;
  height: 26px;
  color: var(--cta-text);
  flex-shrink: 0;
  animation: phone-ring 3s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes phone-ring {
  0%, 60%, 100% { transform: rotate(0); }
  65% { transform: rotate(-12deg); }
  70% { transform: rotate(10deg); }
  75% { transform: rotate(-8deg); }
  80% { transform: rotate(6deg); }
  85% { transform: rotate(0); }
}

.mobile-strip-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.mobile-strip-info .label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.mobile-strip-info .num {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.mobile-strip-cta {
  margin-left: 6px;
  background: rgba(255, 255, 255, 0.16);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
}

/* ========== TABLET 640+ ========== */
@media (min-width: 640px) {
  body { padding-bottom: 0; }
  .mobile-strip { display: none; }

  .hero { padding: 80px 0 96px; }
  .hero h1 { font-size: 56px; }
  .hero-lead { font-size: 19px; }

  .section-head h2 { font-size: 36px; }
  .section-head p { font-size: 16px; }

  .schaedling { padding: 80px 0; }
  .schaedling-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .schaedling-tile { padding: 20px 14px 18px; }
  .schaedling-tile h3 { font-size: 14.5px; }

  .prozess { padding: 88px 0; }
  .prozess-flow { grid-template-columns: repeat(3, 1fr); }
  .prozess-step h4 { font-size: 19px; }

  .erkennung { padding: 88px 0; }
  .erkennung-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .erkennung-card { flex-direction: column; align-items: flex-start; }

  .verfahren { padding: 88px 0; }
  .verfahren-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .verfahren-card { padding: 26px 24px 28px; }
  .verfahren-card h3 { font-size: 19px; }

  .praevention { padding: 88px 0; }
  .praevention-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .praev-cat { padding: 24px 22px 26px; }
  .praev-cat h3 { font-size: 17px; }

  .zertifikate { padding: 72px 0; }
  .zert-badge { font-size: 14px; padding: 12px 20px 12px 14px; }

  .wissen { padding: 88px 0; }
  .wissen-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .wissen-card { padding: 22px 20px 24px; }
  .wissen-card h3 { font-size: 17px; }

  .themen-xl { padding: 88px 0; }
  .themen-xl-card .body { padding: 28px 30px 32px; }
  .themen-xl-card h3 { font-size: 25px; }
  .themen-xl-card p { font-size: 16px; }

  .faelle { padding: 88px 0; }
  .faelle-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .fall { padding: 26px 24px 28px; }

  .faq { padding: 88px 0; }
  .faq-q { font-size: 17px; padding: 24px 0; }

  .final { padding: 96px 0 110px; }
  .final h2 { font-size: 52px; }
  .final p { font-size: 17px; }
}

/* ========== DESKTOP 1024+ ========== */
@media (min-width: 1024px) {
  .hero { padding: 96px 0 110px; }
  .hero h1 { font-size: 68px; }

  .schaedling-grid { grid-template-columns: repeat(8, 1fr); gap: 12px; }

  .wissen-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .praevention-grid { grid-template-columns: repeat(4, 1fr); }

  .final h2 { font-size: 64px; }
}

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

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