/* Pro24h Elektriker-Notdienst
   Electric blue (#1e40af) + bright yellow CTA (#facc15) + white.
   Mobile-first. Distinct from Sanitar-Sofort (blue+orange) and Schluesseldienst (white+amber+black). */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-section: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-dark-2: #1e293b;

  /* Ink */
  --text: #0f172a;
  --text-soft: #475569;
  --text-mute: #94a3b8;
  --text-on-dark: #f1f5f9;

  /* Brand — electric blue */
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --primary-soft: #dbeafe;

  /* CTA — bright electric yellow */
  --cta: #facc15;
  --cta-dark: #eab308;
  --cta-text: #0f172a;
  --cta-glow: rgba(250, 204, 21, 0.45);
  --cta-soft: #fef9c3;

  /* Status */
  --success: #10b981;
  --danger: #dc2626;

  /* Borders */
  --border: #e2e8f0;
  --border-dark: #cbd5e1;

  --radius: 10px;
  --radius-lg: 16px;
  --radius-sm: 6px;
  --container: 1200px;
}

* { 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.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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; }

/* ========== TOP-STRIP — узкая верхняя полоса с пульсом ========== */
.top-strip {
  background: var(--bg);
  border-bottom: 2px solid var(--primary);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bolt-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--cta-dark);
  animation: bolt-flash 2.4s ease-in-out infinite;
}

.bolt-pulse svg { width: 100%; height: 100%; }

@keyframes bolt-flash {
  0%, 95%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.92); }
  97% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 8px var(--cta)); }
}

.top-strip .sep { color: var(--text-mute); margin: 0 2px; }

/* ========== HEADER ========== */
.header {
  background: #fff;
  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(--cta);
  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.10em; margin-top: 3px; }

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

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

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

/* ========== HERO — centered with ⚡ watermark ========== */
.hero {
  padding: 56px 0 64px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 320px;
  max-width: 90%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.hero > .container { 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.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

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

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

.hero h1 .yellow-highlight {
  background: linear-gradient(to top, var(--cta) 38%, transparent 38%);
  padding: 0 4px;
}

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

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

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cta);
  color: var(--cta-text) !important;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  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 24px var(--cta-glow);
}

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

.btn-yellow svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-yellow .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-section);
  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-operator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 22px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 20px 6px 6px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.hero-operator-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cta);
  flex-shrink: 0;
  display: block;
}

.hero-operator-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.hero-operator-text .status-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.005em;
}

.hero-operator-text .status-line .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-soft 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-operator-text .sub {
  font-size: 11.5px;
  color: var(--text-soft);
  font-weight: 600;
  margin-top: 3px;
}

/* ========== NOTFALL-MATRIX — 6 emergency tiles ========== */
.notfall {
  padding: 56px 0;
  background: var(--bg-section);
  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.14em;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  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: 52ch;
  margin: 0 auto;
}

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

.notfall-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  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;
}

.notfall-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cta);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.notfall-tile:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.12);
  color: var(--text);
}

.notfall-tile:hover::before { transform: scaleX(1); }

.notfall-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notfall-icon svg { width: 22px; height: 22px; }

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

.notfall-tile p {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ========== SOFORT-DIAGNOSE flowchart ========== */
.diagnose {
  padding: 64px 0;
  background: var(--bg);
}

.diagnose-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.diagnose-step {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
  text-align: center;
}

.diagnose-step.is-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.diagnose-step.is-cta h4,
.diagnose-step.is-cta p { color: #fff; }

.diagnose-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--cta);
  color: var(--cta-text);
  border-radius: 50%;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 12px;
}

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

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

.diagnose-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  padding: 4px 0;
}

.diagnose-arrow svg { width: 28px; height: 28px; transform: rotate(90deg); }

/* ========== WAS WIR ABSICHERN — 8 service tiles ========== */
.absichern {
  padding: 64px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.absichern-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.absichern-item .icn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.absichern-item .icn svg { width: 24px; height: 24px; }

.absichern-item h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.25;
}

.absichern-item p {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.45;
}

/* ========== TECHNIK-CHECKLISTE — 4 accordion categories ========== */
.checkliste {
  padding: 64px 0;
  background: var(--bg);
}

.checkliste-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.check-cat {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
}

.check-cat.open { border-left-color: var(--cta-dark); }

.check-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 18px;
  cursor: pointer;
  gap: 12px;
}

.check-cat-head h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
  flex: 1;
}

.check-cat-head .sign {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  transition: all 0.25s;
}

.check-cat.open .sign {
  background: var(--cta);
  color: var(--cta-text);
  transform: rotate(45deg);
}

.check-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
}

.check-cat.open .check-cat-body { max-height: 400px; padding: 0 18px 18px; }

.check-cat-body ul { list-style: none; }

.check-cat-body li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  padding: 7px 0 7px 24px;
  position: relative;
}

.check-cat-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 14px;
  background: var(--cta);
  border-radius: 4px;
  clip-path: polygon(20% 40%, 0% 60%, 40% 100%, 100% 20%, 80% 0%, 40% 60%);
}

/* ========== SICHERHEITS-STANDARDS — 5 badges ========== */
.standards {
  padding: 56px 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.standards .section-head .kicker { color: var(--cta); }
.standards .section-head h2 { color: #fff; }
.standards .section-head h2 .accent { color: var(--cta); }
.standards .section-head p { color: rgba(255,255,255,0.7); }

.standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.standard-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.standard-card .badge {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--cta);
  color: var(--cta-text);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.standard-card .badge svg { width: 22px; height: 22px; }

.standard-card h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 3px;
}

.standard-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ========== WISSENS-BIBLIOTHEK — 8 cards, dense grid ========== */
.wissen {
  padding: 64px 0;
  background: var(--bg);
}

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

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

.wissen-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.10);
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

.wissen-card.with-photo > .wissen-tag,
.wissen-card.with-photo > h3,
.wissen-card.with-photo > p {
  margin-left: 16px;
  margin-right: 16px;
}

.wissen-card.with-photo > .wissen-tag {
  margin-top: 16px;
}

.wissen-card.with-photo > p:last-of-type {
  margin-bottom: 18px;
}

/* ========== THEMEN IM DETAIL — full-width colored strip header ========== */
.themen-xl {
  padding: 64px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

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

.themen-xl-strip .bolt {
  width: 14px; height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.themen-xl-strip .bolt svg { width: 100%; height: 100%; }

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

.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: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  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;
}

/* ========== ERSTE HILFE — Sofort-Maßnahmen vor dem Anruf ========== */
.erstehilfe {
  padding: 64px 0;
  background: var(--bg);
}

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

.erstehilfe-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-top: 3px solid var(--cta);
  border-radius: var(--radius);
  padding: 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.18s ease;
}

.erstehilfe-card:hover {
  border-top-color: var(--cta-dark);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.erstehilfe-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--cta);
  color: var(--cta-text);
  border-radius: 50%;
  font-weight: 900;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--cta-glow);
  align-self: flex-start;
}

.erstehilfe-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
}

.erstehilfe-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.erstehilfe-steps li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-soft);
}

.erstehilfe-steps li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-color: var(--cta);
  border-radius: 4px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230f172a' 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: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.erstehilfe-steps li strong {
  color: var(--text);
  font-weight: 700;
}

.erstehilfe-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  align-self: flex-start;
}

.erstehilfe-cta svg { width: 14px; height: 14px; }

.erstehilfe-cta:hover { color: var(--primary-dark); }

/* ========== STIMMEN — quote-style reviews ========== */
.stimmen {
  padding: 64px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stimmen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.stimme {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 22px;
  position: relative;
}

.stimme::before {
  content: '\201C';
  position: absolute;
  top: -22px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
  color: var(--cta);
  font-weight: 700;
}

.stimme p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 500;
}

.stimme .author {
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.stimme .author strong {
  color: var(--text);
  font-weight: 800;
}

/* ========== FAQ — flat list, no cards ========== */
.faq {
  padding: 64px 0;
  background: var(--bg);
}

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

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.faq-q .arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.25s;
}

.faq-item.open .faq-q .arrow { transform: rotate(45deg); color: var(--cta-dark); }

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

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

/* ========== FINAL CTA — light yellow tint background ========== */
.final {
  background: linear-gradient(180deg, var(--cta-soft) 0%, #fef9c3 100%);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

.final h2 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 14px;
}

.final h2 .yellow-highlight {
  background: linear-gradient(to top, var(--cta) 38%, transparent 38%);
  padding: 0 6px;
}

.final p {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 44ch;
  margin: 0 auto 30px;
}

.final .btn-yellow {
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 3px 0 var(--primary-dark), 0 12px 30px rgba(30, 64, 175, 0.30);
}
.final .btn-yellow:hover {
  background: var(--primary-dark);
  color: #fff !important;
  box-shadow: 0 5px 0 #1e3a8a, 0 16px 40px rgba(30, 64, 175, 0.40);
}

.final-meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
}

/* ========== FOOTER — single dark strip ========== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 22px 0;
  font-size: 13.5px;
  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); }

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

/* ========== FAB — floating pill button (mobile sticky) ========== */
.fab {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 200;
  background: var(--cta);
  color: var(--cta-text) !important;
  padding: 12px 18px 12px 14px;
  border-radius: 100px;
  font-weight: 900;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px var(--cta-glow), 0 12px 30px rgba(0,0,0,0.20);
  border: 2px solid var(--cta-dark);
  letter-spacing: -0.005em;
}

.fab:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  color: var(--cta-text) !important;
}

.fab svg { width: 18px; height: 18px; }

/* ========== TABLET 640+ ========== */
@media (min-width: 640px) {
  .hero { padding: 80px 0 96px; }
  .hero h1 { font-size: 60px; }
  .hero-lead { font-size: 19px; }
  .hero-watermark { width: 460px; }

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

  .notfall { padding: 80px 0; }
  .notfall-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .notfall-tile { padding: 22px 16px; }
  .notfall-tile h3 { font-size: 15.5px; }
  .notfall-tile p { font-size: 13px; }

  .diagnose { padding: 88px 0; }
  .diagnose-flow {
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    align-items: stretch;
    gap: 8px;
  }
  .diagnose-arrow svg { transform: rotate(0); }
  .diagnose-step h4 { font-size: 19px; }
  .diagnose-step { padding: 28px 22px; }

  .absichern { padding: 88px 0; }
  .absichern-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .absichern-item { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 18px; }

  .checkliste { padding: 88px 0; }
  .check-cat-head h3 { font-size: 17.5px; }
  .check-cat-head { padding: 20px 22px; }

  .standards { padding: 80px 0; }
  .standards-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .standard-card { flex-direction: column; text-align: center; padding: 22px 14px; gap: 12px; }
  .standard-card h4 { font-size: 13.5px; }
  .standard-card p { font-size: 12px; }

  .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; }
  .wissen-card p { font-size: 14px; }

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

  .erstehilfe { padding: 88px 0; }
  .erstehilfe-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .erstehilfe-card { padding: 26px 24px 26px; }
  .erstehilfe-card h3 { font-size: 18px; }
  .erstehilfe-steps li { font-size: 14px; }

  .stimmen { padding: 88px 0; }
  .stimmen-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }

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

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

  /* FAB stays visible on tablet but smaller */
  .fab { padding: 14px 22px 14px 16px; font-size: 14.5px; }
}

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

  .notfall-grid { grid-template-columns: repeat(6, 1fr); }

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

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

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

/* ========== 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); }
