/* ═══════════════════════════════════════════════════════════════════
   OPEN SANS — Selbst gehostet, DSGVO-konform
   Dateien liegen in: fonts/
═══════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/open-sans-v44-latin_latin-ext-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/open-sans-v44-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/open-sans-v44-latin_latin-ext-600.woff2') format('woff2');
}

/* Schriftstack: Open Sans mit sicheren Fallbacks */
body {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════
   ETM ELEKTROTECHNIK — ZENTRALES STYLESHEET
   style.css
   Alle Seiten binden diese Datei ein via:
   <link rel="stylesheet" href="style.css">
═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   ABSCHNITT 1: DESIGN-SYSTEM (Basis, Komponenten, Layout)
═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   ETM ELEKTROTECHNIK — DESIGN SYSTEM
   Firmenfarben: Rot #C81F25 | Anthrazit #404041
   Gilt für alle Inhaltsseiten
═══════════════════════════════════════════════════════════════ */

:root {
  --etm-red:        #C81F25;
  --etm-red-dark:   #a01820;
  --etm-red-light:  #f9e8e8;
  --etm-anthrazit:  #404041;
  --etm-anthrazit2: #5a5a5b;
  --etm-gray-light: #f5f5f5;
  --etm-gray-mid:   #e8e8e8;
  --etm-gray-border:#d4d4d4;
  --etm-white:      #ffffff;
  --etm-text:       #404041;
  --etm-text-muted: #6b6b6c;
  --etm-radius-sm:  4px;
  --etm-radius-md:  8px;
  --etm-radius-lg:  12px;
  --etm-shadow-sm:  0 1px 4px rgba(64,64,65,0.08);
  --etm-shadow-md:  0 3px 12px rgba(64,64,65,0.10);
}

/* ── BASE ── */
.etm-content-section {
  color: var(--etm-text);
}
.etm-content-section p {
  color: var(--etm-text);
  line-height: 1.7;
}

/* ── SEITENTITEL ── */
.etm-page-title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.2rem) !important;
  font-weight: 600;
  color: var(--etm-anthrazit) !important;
  margin-bottom: 1.25rem !important;
  line-height: 1.25 !important;
}

/* ── HOOK-BOX ── */
.etm-hook-box {
  border-left: 4px solid var(--etm-red);
  background: var(--etm-red-light);
  border-radius: 0 var(--etm-radius-md) var(--etm-radius-md) 0;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.75rem;
}
.etm-hook-main {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--etm-anthrazit);
  margin-bottom: 0.35rem;
}
.etm-hook-sub {
  font-size: 0.95rem;
  color: var(--etm-anthrazit2);
  line-height: 1.6;
}

/* ── INLINE CTA ── */
.etm-cta-inline {
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ── */
.etm-btn {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--etm-radius-sm);
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  transition: background 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: 0.01em;
}
.etm-btn-primary {
  background: var(--etm-red);
  color: var(--etm-white) !important;
}
.etm-btn-primary:hover {
  background: var(--etm-red-dark) !important;
  color: var(--etm-white) !important;
  text-decoration: none !important;
  box-shadow: var(--etm-shadow-md);
}
.etm-btn-lg {
  font-size: 1rem;
  padding: 0.8rem 2rem;
}

/* ── SEKTIONEN ── */
.etm-section {
  margin: 2.5rem 0;
}
.etm-section-shaded {
  background: var(--etm-gray-light);
  border-radius: var(--etm-radius-lg);
  padding: 1.75rem 1.75rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.etm-section-title {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem) !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin-bottom: 1rem !important;
  padding-bottom: 0.6rem !important;
  border-bottom: 2px solid var(--etm-gray-mid) !important;
  line-height: 1.3 !important;
}
.etm-section-lead {
  font-size: 0.95rem;
  color: var(--etm-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ── KARTEN-GRID ── */
.etm-card-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.etm-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.etm-card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .etm-card-grid-3,
  .etm-card-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ── KARTE ── */
.etm-card {
  background: var(--etm-white);
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-lg);
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: var(--etm-shadow-sm);
}
.etm-card-icon {
  color: var(--etm-red);
  margin-bottom: 0.6rem;
  line-height: 1;
}
.etm-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.etm-card-header .etm-card-icon {
  margin-bottom: 0;
}
.etm-card-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0 !important;
}
.etm-card-result .etm-card-title {
  margin-bottom: 0 !important;
}
.etm-card-note {
  font-size: 0.82rem !important;
  color: var(--etm-text-muted) !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

/* ── CHECKLISTE ── */
.etm-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.etm-checklist li {
  font-size: 0.9rem !important;
  color: var(--etm-text-muted) !important;
  padding: 0.22rem 0 0.22rem 1.2rem !important;
  position: relative;
  line-height: 1.45 !important;
}
.etm-checklist li::before {
  content: "·";
  position: absolute;
  left: 0.3rem;
  color: var(--etm-red);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.35;
}
.etm-checklist-check li::before {
  content: "✓";
  font-size: 0.78rem;
  top: 0.28rem;
  color: var(--etm-red);
  font-weight: 700;
  left: 0.1rem;
}

/* ── SUMMARY NOTE ── */
.etm-summary-note {
  font-size: 0.9rem !important;
  color: var(--etm-anthrazit) !important;
  font-weight: 500 !important;
  margin-top: 0.5rem !important;
  padding: 0.6rem 0.9rem;
  border-left: 3px solid var(--etm-gray-border);
}

/* ── PROZESS-SCHRITTE ── */
.etm-steps {
  display: flex;
  flex-direction: column;
}
.etm-step {
  display: flex;
  gap: 1.1rem;
}
.etm-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.etm-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--etm-red);
  color: var(--etm-white);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(200,31,37,0.25);
}
.etm-step-line {
  width: 1px;
  background: var(--etm-gray-border);
  flex: 1;
  min-height: 1rem;
  margin: 5px 0;
}
.etm-step-last .etm-step-line {
  display: none;
}
.etm-step-body {
  padding-bottom: 1.5rem;
  padding-top: 0.3rem;
}
.etm-step-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin-bottom: 0.4rem !important;
  margin-top: 0 !important;
}
.etm-step-lead {
  font-size: 0.9rem !important;
  color: var(--etm-text-muted) !important;
  margin-bottom: 0.6rem !important;
  line-height: 1.5 !important;
}
.etm-step-badge {
  display: inline-block;
  background: var(--etm-gray-mid);
  color: var(--etm-anthrazit2);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: var(--etm-radius-sm);
  margin-top: 0.5rem;
}
.etm-step-badge-result {
  background: var(--etm-red-light);
  color: var(--etm-red-dark);
}

/* ── TRUST-STRIP ── */
.etm-trust-strip {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--etm-anthrazit);
  color: var(--etm-white);
  border-radius: var(--etm-radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}
.etm-trust-icon {
  color: var(--etm-white);
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.85;
}
.etm-trust-strip p {
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.9) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}
.etm-trust-strip strong {
  color: var(--etm-white) !important;
}

/* ── QUALIFIKATIONS-BOX ── */
.etm-qual-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--etm-white);
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--etm-shadow-sm);
}
.etm-qual-icon {
  color: var(--etm-red);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.etm-qual-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin-bottom: 0.5rem !important;
  margin-top: 0 !important;
}
.etm-qual-box p {
  font-size: 0.92rem !important;
  color: var(--etm-text-muted) !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.6 !important;
}
.etm-qual-box p:last-child {
  margin-bottom: 0 !important;
}
.etm-qual-highlight {
  color: var(--etm-anthrazit) !important;
  font-weight: 500 !important;
  padding-top: 0.35rem;
  border-top: 1px solid var(--etm-gray-mid);
}

/* ── TIMELINE ── */
.etm-timeline {
  display: flex;
  flex-direction: column;
}
.etm-tl-item {
  display: flex;
  gap: 1rem;
}
.etm-tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
}
.etm-tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--etm-red);
  flex-shrink: 0;
  margin-top: 0.35rem;
  box-shadow: 0 0 0 3px var(--etm-red-light);
}
.etm-tl-dot-final {
  background: var(--etm-anthrazit);
  box-shadow: 0 0 0 3px var(--etm-gray-mid);
}
.etm-tl-line {
  width: 1px;
  background: var(--etm-gray-border);
  flex: 1;
  min-height: 0.5rem;
  margin: 4px 0;
}
.etm-tl-last .etm-tl-line {
  display: none;
}
.etm-tl-body {
  padding-bottom: 1.2rem;
  padding-top: 0.15rem;
}
.etm-tl-body strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--etm-anthrazit);
  display: block;
  margin-bottom: 0.2rem;
}
.etm-tl-body p {
  font-size: 0.88rem !important;
  color: var(--etm-text-muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ── CTA-BOX ── */
.etm-cta-box {
  background: var(--etm-gray-light);
  border: 1px solid var(--etm-gray-border);
  border-top: 3px solid var(--etm-red);
  border-radius: var(--etm-radius-lg);
  padding: 2rem 2rem;
  text-align: center;
  margin: 1.5rem 0 2rem;
}
.etm-cta-title {
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.4rem) !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin-bottom: 0.75rem !important;
}
.etm-cta-text {
  font-size: 0.95rem !important;
  color: var(--etm-text-muted) !important;
  max-width: 56ch;
  margin: 0 auto 1.5rem !important;
  line-height: 1.65 !important;
}

/* ── FAQ ── */
.etm-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.etm-faq-item {
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-md);
  overflow: hidden;
  background: var(--etm-white);
}
.etm-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--etm-anthrazit);
  font-family: inherit;
  line-height: 1.4;
  transition: background 0.15s ease;
}
.etm-faq-q:hover {
  background: var(--etm-gray-light);
}
.etm-faq-q[aria-expanded="true"] {
  border-bottom: 1px solid var(--etm-gray-mid);
  color: var(--etm-red);
}
.etm-faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--etm-anthrazit2);
}
.etm-faq-q[aria-expanded="true"] .etm-faq-icon {
  transform: rotate(180deg);
  color: var(--etm-red);
}
.etm-faq-a {
  display: none;
  padding: 0.9rem 1.1rem;
}
.etm-faq-a.etm-faq-open {
  display: block;
}
.etm-faq-a p {
  font-size: 0.9rem !important;
  color: var(--etm-text-muted) !important;
  margin: 0 !important;
  line-height: 1.65 !important;
}
.etm-faq-a a {
  color: var(--etm-red) !important;
}
.etm-faq-a a:hover {
  color: var(--etm-red-dark) !important;
}

/* ── HERO OVERLAY (gilt für alle Seiten) ── */

/* Breche aus allen max-width-Containern aus */
#header.fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

/* Flexslider: volle Breite, keine internen Einschränkungen */
#headerslider,
#headerslider .flex-container,
#headerslider .flexslider,
#headerslider ul.slides,
#headerslider ul.slides li {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Slide-Container: Anker für absolut positioniertes Overlay */
#headerslider ul.slides li {
  position: relative;
  display: block;
  min-height: 38vh;
}

/* Kopfbild: full-width, cover, keine Verzerrung */
#headerslider ul.slides li img {
  display: block;
  width: 100% !important;
  height: auto;
  min-height: 38vh;
  object-fit: cover;
  object-position: center 30%;
}

/* Overlay: bündig an der Unterkante, volle Breite */
#headerslider .flex-caption.etm-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.58);
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
}

/* Headline */
.etm-hero-headline {
  color: #ffffff !important;
  font-size: clamp(1.4rem, 3.5vw, 2.6rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin: 0 auto 0.25rem auto !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
  white-space: normal !important;
  word-break: break-word;
  max-width: 900px;
}

/* Subline */
.etm-hero-subline {
  color: #ffffff !important;
  font-size: clamp(0.9rem, 1.6vw, 1.15rem) !important;
  font-weight: 400 !important;
  margin: 0 auto !important;
  opacity: 0.92;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  white-space: normal !important;
  word-break: break-word;
  max-width: 700px;
}

@media (max-width: 600px) {
  #headerslider ul.slides li,
  #headerslider ul.slides li img {
    min-height: 44vw;
  }
  #headerslider .flex-caption.etm-hero-overlay {
    padding: 14px 16px;
  }
}
}

/* ── NORM-KARTEN ── */
.etm-norm-card p {
  font-size: 0.9rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
.etm-norm-badge {
  display: inline-block;
  background: var(--etm-anthrazit);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--etm-radius-sm);
  margin-bottom: 0.75rem;
}
.etm-norm-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--etm-white);
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-md);
  font-size: 0.88rem;
  color: var(--etm-text-muted);
  line-height: 1.5;
}
.etm-norm-note svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--etm-anthrazit2);
}

/* ── AMPEL-KARTEN ── */
.etm-ampel-card {
  border-top: 3px solid transparent;
  padding-top: 1.1rem;
}
.etm-ampel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-bottom: 0.7rem;
}
.etm-ampel-title {
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 0 0.4rem 0 !important;
}
.etm-ampel-text {
  font-size: 0.87rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
.etm-ampel-rot  { border-top-color: #C81F25; }
.etm-ampel-rot  .etm-ampel-dot { background: #C81F25; }
.etm-ampel-gelb { border-top-color: #d97706; }
.etm-ampel-gelb .etm-ampel-dot { background: #d97706; }
.etm-ampel-gruen { border-top-color: #16a34a; }
.etm-ampel-gruen .etm-ampel-dot { background: #16a34a; }
/* ── TRUSTBAR ── */
.etm-trustbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--etm-gray-light);
  border-radius: var(--etm-radius-md);
  border: 1px solid var(--etm-gray-border);
  font-size: 0.88rem;
  color: var(--etm-anthrazit2);
  margin-bottom: 0.5rem;
}
.etm-trustbar a {
  color: var(--etm-red) !important;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none !important;
}
.etm-trustbar a:hover { text-decoration: underline !important; }
.etm-trustbar-divider {
  color: var(--etm-gray-border);
  font-weight: 300;
}
@media (max-width: 600px) {
  .etm-trustbar-divider { display: none; }
}

/* ── EYEBROW ── */
.etm-eyebrow {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--etm-red) !important;
  margin: 0 0 0.35rem 0 !important;
}

/* ── VORTEIL-KARTEN ── */
.etm-vorteil-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.etm-vorteil-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.etm-vorteil-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 0 0.3rem 0 !important;
}
.etm-vorteil-text {
  font-size: 0.88rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* ── REGION-TAGS ── */
/* ── 3-FRAGEN-KARTEN ── */
.etm-frage-card {
  display: flex;
  flex-direction: column;
}
.etm-frage-icon {
  margin-bottom: 0.75rem;
  line-height: 1;
}
.etm-frage-q {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 0 0.5rem 0 !important;
  line-height: 1.3 !important;
}
.etm-frage-a {
  font-size: 0.88rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.6 !important;
  margin: 0 0 0.85rem 0 !important;
  flex: 1;
}
.etm-frage-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--etm-red) !important;
  text-decoration: none !important;
  margin-top: auto;
}
.etm-frage-link:hover {
  text-decoration: underline !important;
}

/* ── PROZESS-GRID (4 Schritte + Pfeile) ── */
.etm-prozess-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.etm-prozess-step {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--etm-white);
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-lg);
}
.etm-prozess-step img {
  display: block;
  margin: 0 auto 0.6rem;
}
.etm-prozess-title {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 0 0.3rem 0 !important;
}
.etm-prozess-text {
  font-size: 0.82rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}
.etm-prozess-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  color: var(--etm-gray-border);
  flex-shrink: 0;
  margin-top: 1.75rem;
}
@media (max-width: 640px) {
  .etm-prozess-grid { flex-direction: column; }
  .etm-prozess-arrow { transform: rotate(90deg); margin: 0 auto; }
  .etm-prozess-step { min-width: 100%; }
}

/* ── KONTAKT-GRID (STARTSEITE) ── */
.etm-index-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 640px) {
  .etm-index-kontakt-grid {
    grid-template-columns: 1fr;
  }
  .etm-portrait-wrap { display: none; }
}

/* ── PORTRAIT ── */
.etm-portrait-wrap {
  text-align: center;
}
.etm-portrait-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--etm-gray-border);
  display: block;
  margin: 0 auto 0.6rem;
}
.etm-portrait-caption {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}
.etm-portrait-caption span {
  font-weight: 400;
  color: var(--etm-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   ETM LINK-STYLES — Fließtext, Content-Boxen, Footer
   Ausnahme: .etm-navbar bleibt unberührt
═══════════════════════════════════════════════════════════════ */
a                              { color: #C81F25; text-decoration: none; }
a:hover                        { color: #C81F25; text-decoration: underline; opacity: 0.85; }
a:visited                      { color: #C81F25; }
.zparea a,
.etm-content-section a,
.etm-section a,
.etm-card a,
.etm-faq-a a,
.etm-legal-wrap a,
.etm-dsgvo-nav a,
#footer a                      { color: #C81F25 !important; text-decoration: none !important; }
.zparea a:hover,
.etm-content-section a:hover,
.etm-section a:hover,
.etm-card a:hover,
.etm-faq-a a:hover,
.etm-legal-wrap a:hover,
.etm-dsgvo-nav a:hover,
#footer a:hover                { color: #C81F25 !important; text-decoration: underline !important; opacity: 0.85; }

/* ── LEISTUNGS-LISTE ── */
.etm-leistung-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-lg);
  overflow: hidden;
}
.etm-leistung-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px;
  padding: 1.1rem 1.25rem;
  background: var(--etm-white);
  border-bottom: 1px solid var(--etm-gray-border);
  transition: background 0.15s ease;
}
.etm-leistung-item:last-child { border-bottom: none; }
.etm-leistung-item:hover      { background: var(--etm-gray-light); }
.etm-leistung-icon {
  flex-shrink: 0;
  flex-grow: 0;
  display: flex !important;
  align-items: center;
}
.etm-leistung-body {
  flex: 1 1 auto;
  min-width: 0;
  display: block !important;
}
.etm-leistung-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 0 0.25rem 0 !important;
}
.etm-leistung-text {
  font-size: 0.88rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.5 !important;
  margin: 0 0 0.5rem 0 !important;
}
.etm-leistung-norms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.etm-norm-chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  background: var(--etm-anthrazit);
  color: #ffffff;
  border-radius: 2px;
}
.etm-leistung-link {
  flex-shrink: 0;
  flex-grow: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--etm-gray-light);
  color: var(--etm-anthrazit2) !important;
  transition: background 0.15s, color 0.15s;
  text-decoration: none !important;
}
.etm-leistung-item:hover .etm-leistung-link {
  background: var(--etm-red);
  color: #ffffff !important;
}
@media (max-width: 600px) {
  .etm-leistung-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 12px;
    padding: 1.25rem 1rem;
  }
  .etm-leistung-norms { justify-content: center; }
  .etm-leistung-link  { width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════════════════════════
   ETM LAYOUT-KORREKTUREN
   1. Weiße Schrift in Buttons (überschreibt globale Link-Rot-Regel)
   2. Max-Width 1200px + Zentrierung für Inhalt und Footer
   3. Seitliches Padding gegen Randkleben
═══════════════════════════════════════════════════════════════ */

/* ── 1. BUTTON-LINKS: weiße Schrift, kein Unterstreichen ────────────────── */
a.etm-btn,
a.etm-btn:link,
a.etm-btn:visited,
a.etm-btn:hover,
a.etm-btn:focus,
a.etm-btn:active,
.etm-btn[role="button"],
.etm-btn[role="button"]:hover,
.button,
a.button,
a.button:hover,
input[type="submit"].button {
  color: #ffffff !important;
  text-decoration: none !important;
  opacity: 1 !important;
}
/* Primäre Buttons: Rot-Hintergrund, weiße Schrift */
a.etm-btn-primary,
a.etm-btn-primary:hover,
a.etm-btn-primary:visited {
  background: #C81F25;
  color: #ffffff !important;
}
a.etm-btn-primary:hover,
a.etm-btn-primary:focus {
  background: #a01820 !important;
  color: #ffffff !important;
}

/* ── 2. MAX-WIDTH 1200px: Inhalt und Footer zentriert ──────────────────── */
/* Haupt-Inhaltscontainer (ZP-Struktur) */
.contentcontainer,
.contentcontainer .row-fluid,
.contentcontainer .span12.content,
.contentcontainer .articles,
.zpMainContent {
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

/* Seitenbreiter äußerer Wrapper */
.contentcontainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer-Inhaltscontainer */
#footer .container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Navbar-Innenbereich bereits auf 1200px limitiert — bestätigen */
.etm-navbar-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero-Overlay-Text auf 1200px begrenzen */
#headerslider .flex-caption.etm-hero-overlay {
  padding-left: max(20px, calc((100% - 1200px) / 2 + 20px));
  padding-right: max(20px, calc((100% - 1200px) / 2 + 20px));
}

/* ── 3. SEITLICHES PADDING: kein Randkleben ────────────────────────────── */
.contentcontainer {
  padding-left: 20px;
  padding-right: 20px;
}
#footer .container {
  padding-left: 20px;
  padding-right: 20px;
}

/* Auf sehr kleinen Bildschirmen etwas weniger Padding */
@media (max-width: 480px) {
  .contentcontainer,
  #footer .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ── Jede Leistungszeile: 3-spaltig ── */
.etm-leistung-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 1.1rem 1.25rem;
  background: var(--etm-white);
  border-bottom: 1px solid var(--etm-gray-border);
  transition: background 0.15s ease;
}
.etm-leistung-item:last-child { border-bottom: none; }
.etm-leistung-item:hover { background: var(--etm-gray-light); }

/* ── Mobilansicht ≤ 600px: untereinander ── */
@media (max-width: 600px) {
  .etm-leistung-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 1.25rem 1rem;
  }
  .etm-leistung-norms {
    justify-content: center;
  }
  .etm-leistung-link {
    width: 40px;
    height: 40px;
  }
}

/* ── ÜBER UNS GRID + KONTAKT ── */
.etm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .etm-about-grid { grid-template-columns: 1fr; }
}
.etm-about-grid > div > p {
  font-size: 0.92rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.65 !important;
  margin-bottom: 1rem !important;
}
.etm-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 0.75rem;
}
.etm-contact-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--etm-anthrazit) !important;
  text-decoration: none !important;
}
.etm-contact-link:hover { color: var(--etm-red) !important; }
.etm-contact-link svg { flex-shrink: 0; color: var(--etm-red); }
.etm-cta-box-inline {
  text-align: left;
}
.etm-cta-box-inline .etm-cta-text {
  text-align: left;
}

/* ═══════════════════════════════════════════════════════════════
   ABSCHNITT 2: NAVIGATION
═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   ETM NAVBAR — sauber, kein Zeta-Producer-Abhängigkeit
═══════════════════════════════════════════════════════ */

.etm-navbar {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 6px rgba(64,64,65,0.07);
}
.etm-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
}

/* ── LOGO ── */
.etm-navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
}
.etm-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* ── NAV MENU (desktop) ── */
.etm-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}
.etm-nav-item { position: relative; }

/* ── NAV LINKS ── */
.etm-nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #404041;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1.4;
}
.etm-nav-link:hover,
.etm-nav-link:focus {
  background: #f5f5f5;
  color: #C81F25;
  outline: none;
}

/* ── KONTAKT-BUTTON ── */
.etm-nav-link-cta {
  background: #C81F25;
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  margin-left: 0.25rem;
}
.etm-nav-link-cta:hover,
.etm-nav-link-cta:focus {
  background: #a01820 !important;
  color: #ffffff !important;
}

/* ── DROPDOWN-CHEVRON ── */
.etm-nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: #6b6b6c;
}
.etm-has-dropdown.etm-open > .etm-dropdown-toggle .etm-nav-chevron {
  transform: rotate(180deg);
  color: #C81F25;
}
.etm-has-dropdown.etm-open > .etm-dropdown-toggle {
  color: #C81F25;
  background: #f9e8e8;
}

/* ── DROPDOWN-PANEL ── */
.etm-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 290px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(64,64,65,0.12);
  padding: 0.4rem 0;
  list-style: none;
  margin: 0;
  z-index: 1001;
}
.etm-has-dropdown.etm-open .etm-dropdown { display: block; }
.etm-dropdown li { margin: 0; }
.etm-dropdown a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: #404041 !important;
  text-decoration: none !important;
  border-left: 2px solid transparent;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.etm-dropdown a:hover,
.etm-dropdown a:focus {
  background: #f5f5f5;
  border-left-color: #C81F25;
  color: #C81F25 !important;
  outline: none;
}

/* ── HAMBURGER (mobil) ── */
.etm-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.etm-hamburger span {
  display: block;
  height: 2px;
  background: #404041;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.etm-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.etm-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.etm-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE ≤ 768px
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .etm-hamburger { display: flex; }

  .etm-nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 6px 16px rgba(64,64,65,0.10);
    padding: 0.5rem 0 0.75rem;
    z-index: 999;
  }
  .etm-nav-menu.etm-mobile-open { display: flex; }
  .etm-nav-item { width: 100%; }

  .etm-nav-link {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 0;
    justify-content: space-between;
  }
  .etm-nav-link-cta {
    margin: 0.5rem 1rem 0;
    border-radius: 4px;
    justify-content: center;
    width: calc(100% - 2rem);
  }

  /* Mobil: Dropdown inline, kein absolut */
  .etm-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #f5f5f5;
    min-width: auto;
    width: 100%;
  }
  .etm-dropdown a {
    padding: 0.6rem 1.75rem;
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ABSCHNITT 3: SEITENSPEZIFISCHE KOMPONENTEN
═══════════════════════════════════════════════════════════════════ */

/* ── SICHERHEITS-HINWEIS-BOX ── */
.etm-safety-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--etm-red-light);
  border: 1px solid rgba(200,31,37,0.2);
  border-left: 3px solid var(--etm-red);
  border-radius: var(--etm-radius-md);
}
.etm-safety-icon {
  color: var(--etm-red);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.etm-safety-note p {
  font-size: 0.9rem !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* ── PRÜFZEITPUNKT-KARTEN ── */
.etm-pruef-card {
  border-top: 3px solid var(--etm-red);
  display: flex;
  flex-direction: column;
}
.etm-pruef-icon {
  color: var(--etm-red);
  margin-bottom: 0.6rem;
  line-height: 1;
}
.etm-pruef-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 0 0.2rem 0 !important;
}
.etm-pruef-when {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--etm-red) !important;
  margin: 0 0 0.65rem 0 !important;
}
.etm-pruef-text {
  font-size: 0.88rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.55 !important;
  margin: 0 0 0.75rem 0 !important;
  flex: 1;
}
.etm-pruef-note {
  font-size: 0.8rem;
  color: var(--etm-anthrazit2);
  padding: 0.4rem 0.7rem;
  background: var(--etm-gray-light);
  border-radius: var(--etm-radius-sm);
  margin-top: auto;
}
.etm-pruef-note a {
  color: var(--etm-red) !important;
  font-weight: 500;
  text-decoration: none !important;
}
.etm-pruef-note a:hover {
  text-decoration: underline !important;
}

/* ── INTRO-TEXT ── */
.etm-intro-text {
  font-size: 1rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.7 !important;
  max-width: 72ch;
  margin-bottom: 0 !important;
}

/* ── PRÜFFRISTEN-TABELLE ── */
.etm-table-wrap {
  overflow-x: auto;
  border-radius: var(--etm-radius-lg);
  border: 1px solid var(--etm-gray-border);
  box-shadow: var(--etm-shadow-sm);
}
.etm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.etm-table thead tr {
  background: var(--etm-anthrazit);
}
.etm-table thead th {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.1rem;
  text-align: left;
  white-space: nowrap;
}
.etm-table tbody tr {
  border-bottom: 1px solid var(--etm-gray-border);
  background: var(--etm-white);
  transition: background 0.12s ease;
}
.etm-table tbody tr:last-child { border-bottom: none; }
.etm-table tbody tr:nth-child(even) { background: var(--etm-gray-light); }
.etm-table tbody tr:hover { background: var(--etm-red-light); }
.etm-table tbody td {
  padding: 0.75rem 1.1rem;
  color: var(--etm-text);
  vertical-align: middle;
}
.etm-frist-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--etm-radius-sm);
  white-space: nowrap;
}
.etm-frist-high  { background: var(--etm-red-light);  color: var(--etm-red-dark); }
.etm-frist-mid   { background: #fef3cd;               color: #92400e; }
.etm-frist-low   { background: #d1fae5;               color: #065f46; }
.etm-table-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--etm-text-muted);
  line-height: 1.5;
}
.etm-table-note svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--etm-anthrazit2);
}

/* ── INFO-BOX ── */
.etm-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--etm-white);
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-md);
}
.etm-info-box svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--etm-anthrazit);
}
.etm-info-box p {
  font-size: 0.9rem !important;
  color: var(--etm-text-muted) !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* ── KONSEQUENZ-KARTEN ── */
.etm-konsequenz-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 3px solid var(--etm-red);
}
.etm-konsequenz-icon {
  flex-shrink: 0;
  color: var(--etm-red);
  margin-top: 0.1rem;
}
.etm-konsequenz-title {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 0 0.35rem 0 !important;
}
.etm-konsequenz-text {
  font-size: 0.87rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* ── KONTAKT: ZWEISPALTEN-LAYOUT ── */
.etm-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 860px) {
  .etm-kontakt-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FORMULAR-FELDER: sanftes Restyling, alle name/id unverändert ── */
.etm-form-card .zp-form label.field {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--etm-anthrazit);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  display: block;
}
.etm-form-card .zp-form input.typetext,
.etm-form-card .zp-form textarea {
  width: 100%;
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
  color: var(--etm-text);
  background: var(--etm-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 100%;
}
.etm-form-card .zp-form input.typetext:focus,
.etm-form-card .zp-form textarea:focus {
  outline: none;
  border-color: var(--etm-red);
  box-shadow: 0 0 0 3px rgba(200,31,37,0.1);
}
.etm-form-card .zp-form textarea {
  rows: 6;
  min-height: 130px;
  resize: vertical;
}
.etm-form-card .zp-form .resizablefield {
  margin-bottom: 1rem;
}
.etm-form-card .zp-form .zpcheckbox label.default {
  font-size: 0.9rem;
  color: var(--etm-text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.etm-form-card .zp-form input[type="checkbox"] {
  accent-color: var(--etm-red);
  width: 16px;
  height: 16px;
  margin-right: 0.4rem;
  vertical-align: middle;
  cursor: pointer;
}
.etm-form-card .zp-form #antispam label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--etm-anthrazit);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.etm-form-card .zp-form input[type="radio"] {
  accent-color: var(--etm-red);
  margin-right: 0.35rem;
  cursor: pointer;
}
.etm-form-card .zp-form label.default {
  font-size: 0.9rem;
  color: var(--etm-text-muted);
  margin-right: 1rem;
  cursor: pointer;
}
.etm-form-card .zp-form .formbuttons {
  margin-top: 1.25rem;
}
.etm-form-card .zp-form input[type="submit"].button {
  background: var(--etm-red);
  color: #ffffff;
  border: none;
  border-radius: var(--etm-radius-sm);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: background 0.18s ease;
}
.etm-form-card .zp-form input[type="submit"].button:hover {
  background: var(--etm-red-dark);
}
/* ── ANTISPAM CAPTCHA ── */
.etm-captcha-question {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 0 0.4rem 0 !important;
  min-height: 1.4rem;
}
.etm-captcha-input {
  max-width: 120px;
}
.etm-captcha-hint {
  font-size: 0.78rem;
  color: var(--etm-text-muted);
  margin-top: 0.15rem;
}

/* ── LEGAL WRAP: schlanke Laufbreite für Rechtstexte ── */
.etm-legal-wrap {
  max-width: 72ch;
}
.etm-legal-wrap p {
  font-size: 0.92rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.7 !important;
  margin-bottom: 0.75rem !important;
}

/* ── LEGAL SECTIONS ── */
.etm-legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--etm-gray-mid);
}
.etm-legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.etm-legal-h3 {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  margin: 1.25rem 0 0.4rem 0 !important;
}

/* ── KONTAKT-BLOCK ── */
.etm-impressum-kontakt {
  background: var(--etm-gray-light);
  border: 1px solid var(--etm-gray-border);
  border-left: 3px solid var(--etm-red);
  border-radius: 0 var(--etm-radius-md) var(--etm-radius-md) 0;
  padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.etm-impressum-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--etm-text-muted);
  line-height: 1.55;
}
.etm-impressum-row svg {
  flex-shrink: 0;
  color: var(--etm-red);
  margin-top: 0.15rem;
}
.etm-impressum-row strong {
  color: var(--etm-anthrazit);
  display: block;
  margin-bottom: 0.1rem;
}
.etm-legal-link {
  color: var(--etm-anthrazit) !important;
  text-decoration: none !important;
}
.etm-legal-link:hover {
  color: var(--etm-red) !important;
  text-decoration: underline !important;
}

/* ── REGISTER-TABELLE ── */
.etm-legal-register {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-md);
  overflow: hidden;
  margin-top: 0.75rem;
}
.etm-legal-register-row {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--etm-gray-border);
  background: var(--etm-white);
}
.etm-legal-register-row:nth-child(even) {
  background: var(--etm-gray-light);
}
.etm-legal-register-row:last-child {
  border-bottom: none;
}
.etm-legal-label {
  flex-shrink: 0;
  width: 180px;
  font-weight: 600;
  color: var(--etm-anthrazit);
  font-size: 0.82rem;
}
@media (max-width: 540px) {
  .etm-legal-register-row { flex-direction: column; gap: 0.15rem; }
  .etm-legal-label { width: auto; }
}

/* ── DSGVO-INHALTSVERZEICHNIS ── */
.etm-dsgvo-nav {
  background: var(--etm-gray-light);
  border: 1px solid var(--etm-gray-border);
  border-left: 3px solid var(--etm-red);
  border-radius: 0 var(--etm-radius-md) var(--etm-radius-md) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: inline-block;
  min-width: 260px;
}
.etm-dsgvo-nav-title {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--etm-anthrazit) !important;
  margin: 0 0 0.6rem 0 !important;
}
.etm-dsgvo-nav-list {
  margin: 0 !important;
  padding-left: 1.2rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.etm-dsgvo-nav-list li {
  font-size: 0.88rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.4 !important;
}
.etm-dsgvo-nav-list a {
  color: var(--etm-anthrazit) !important;
  text-decoration: none !important;
}
.etm-dsgvo-nav-list a:hover {
  color: var(--etm-red) !important;
  text-decoration: underline !important;
}

/* ── LEGAL UL ── */
.etm-legal-ul {
  padding-left: 1.4rem !important;
  margin: 0.5rem 0 0.75rem 0 !important;
}
.etm-legal-ul li {
  font-size: 0.92rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.65 !important;
  margin-bottom: 0.5rem !important;
}

/* ── QUELLENANGABE ── */
.etm-dsgvo-source {
  font-size: 0.82rem !important;
  color: var(--etm-text-muted) !important;
  margin-top: 1.5rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid var(--etm-gray-mid) !important;
}

/* ── KONTAKTFORMULAR ── */
.etm-kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.etm-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.etm-field-label {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--etm-anthrazit) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.etm-required { color: var(--etm-red); margin-left: 1px; }
.etm-field-input {
  width: 100%;
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
  color: var(--etm-text);
  background: var(--etm-white);
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.etm-field-input:focus {
  outline: none;
  border-color: var(--etm-red);
  box-shadow: 0 0 0 3px rgba(200,31,37,0.10);
}
.etm-field-input:invalid:not(:placeholder-shown) {
  border-color: var(--etm-red);
}
.etm-field-textarea { min-height: 130px; resize: vertical; }
.etm-field-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.etm-checkbox-input {
  width: 16px; height: 16px;
  accent-color: var(--etm-red);
  flex-shrink: 0;
  cursor: pointer;
}
.etm-checkbox-label {
  font-size: 0.92rem;
  color: var(--etm-text-muted);
  cursor: pointer;
}
.etm-field-required-note {
  font-size: 0.78rem;
  color: var(--etm-text-muted);
  margin-top: -0.25rem;
}
.etm-field-submit { margin-top: 0.25rem; }

/* ── REGION-TAGS ── */
.etm-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.etm-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--etm-radius-sm);
}
.etm-tag-primary {
  background: var(--etm-red);
  color: #ffffff !important;
}
.etm-tag-secondary {
  background: var(--etm-white);
  color: var(--etm-anthrazit);
  border: 1px solid var(--etm-gray-border);
}
.etm-region-sub {
  font-size: 0.8rem !important;
  color: var(--etm-text-muted) !important;
  margin: 0 0 0.5rem 0 !important;
  font-weight: 500 !important;
}
.etm-region-note {
  font-size: 0.88rem !important;
  color: var(--etm-text-muted) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  padding: 0.75rem 1rem;
  background: var(--etm-white);
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-md);
}
.etm-region-note a {
  color: var(--etm-red) !important;
  font-weight: 500;
}

