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

body {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════
   ABSCHNITT 1: DESIGN-SYSTEM (Zentrales Layout & Komponenten)
═══════════════════════════════════════════════════════════════ */

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

/* Globaler Inhaltsdeckel (Zentrierung & maximale Breite) */
.contentcontainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .contentcontainer {
    padding-left: 14px;
    padding-right: 14px;
  }
}

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

.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-lg {
  font-size: 1rem;
  padding: 0.8rem 2rem;
}

.etm-section {
  margin: 2.5rem 0;
}
.etm-section-title {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--etm-anthrazit);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--etm-gray-mid);
  line-height: 1.3;
}
.etm-section-lead {
  font-size: 0.95rem;
  color: var(--etm-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ── LINK-STEUERUNG ── */
a { color: var(--etm-red); text-decoration: none; transition: color 0.12s ease; }
a:hover { color: var(--etm-red-dark); text-decoration: underline; }
a:visited { color: var(--etm-red); }

/* Buttons schützen ihre Farbe gegen den globalen a:visited-Selektor */
a.etm-btn-primary,
a.etm-btn-primary:link,
a.etm-btn-primary:visited {
  background: var(--etm-red);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
a.etm-btn-primary:hover {
  background: var(--etm-red-dark);
  color: #ffffff;
  text-decoration: none;
}

/* CTA-Link in der Navbar */
a.etm-nav-link-cta,
a.etm-nav-link-cta:link,
a.etm-nav-link-cta:visited {
  background: var(--etm-red);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
a.etm-nav-link-cta:hover {
  background: var(--etm-red-dark);
  color: #ffffff;
  text-decoration: none;
}

/* ── NATIVE LEISTUNGSZEILEN ── */
.etm-leistung-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--etm-gray-border);
  border-radius: var(--etm-radius-lg);
  overflow: hidden;
}
.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); }
.etm-leistung-icon { flex-shrink: 0; display: flex; align-items: center; }
.etm-leistung-body { flex: 1 1 auto; min-width: 0; }
.etm-leistung-title { font-size: 1rem; font-weight: 600; color: var(--etm-anthrazit); margin: 0 0 0.25rem 0; }
.etm-leistung-text { font-size: 0.88rem; color: var(--etm-text-muted); line-height: 1.5; margin: 0 0 0.5rem 0; }
.etm-leistung-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--etm-gray-light);
  color: var(--etm-anthrazit2);
}
.etm-leistung-item:hover .etm-leistung-link { background: var(--etm-red); color: #ffffff; }

@media (max-width: 600px) {
  .etm-leistung-item { flex-direction: column; text-align: center; gap: 12px; }
}

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

/* ═══════════════════════════════════════════════════════════════
   ABSCHNITT 2: NAVIGATION & DROPDOWN ARCHITEKTUR
═══════════════════════════════════════════════════════════════ */

.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;
  box-sizing: border-box;
}
.etm-navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.etm-logo-img { height: 52px; width: auto; display: block; }

.etm-nav-menu { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 0.25rem; }
.etm-nav-item { position: relative; }
.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;
  transition: background 0.15s ease, color 0.15s ease;
}
.etm-nav-link:hover, .etm-nav-link:focus { background: #f5f5f5; color: var(--etm-red); outline: none; }

.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: var(--etm-red); }

@media (min-width: 769px) {
  .etm-has-dropdown:hover .etm-dropdown, .etm-has-dropdown:focus-within .etm-dropdown { display: block; }
  .etm-has-dropdown:hover > .etm-dropdown-toggle { color: var(--etm-red); background: #f5f5f5; }
  .etm-has-dropdown:hover > .etm-dropdown-toggle .etm-nav-chevron { transform: rotate(180deg); }
}

.etm-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  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-dropdown::before { content: ""; position: absolute; top: -15px; left: 0; right: 0; height: 15px; background: transparent; }
.etm-has-dropdown.etm-open .etm-dropdown { display: block; }
.etm-dropdown a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
  color: #404041;
  border-left: 2px solid transparent;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.etm-dropdown a:hover { background: #f5f5f5; border-left-color: var(--etm-red); color: var(--etm-red); }

.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; padding: 8px;
}
.etm-hamburger span { display: block; height: 2px; background: #404041; transition: transform 0.22s, opacity 0.22s; }
.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); }

@media (max-width: 768px) {
  .etm-hamburger { display: flex; }
  .etm-nav-menu {
    display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #ffffff; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; padding: 0.5rem 0;
  }
  .etm-nav-menu.etm-mobile-open { display: flex; }
  .etm-nav-link { width: 100%; padding: 0.75rem 1.25rem; justify-content: space-between; }
  .etm-dropdown { position: static; box-shadow: none; background: #f5f5f5; width: 100%; }
  .etm-nav-link-cta, .etm-nav-link-cta:link, .etm-nav-link-cta:visited {
    margin: 0.5rem 1rem 0;
    border-radius: 4px;
    justify-content: center;
    width: calc(100% - 2rem);
  }
}

/* ═══════════════════════════════════════════════════════════════
   ABSCHNITT 3: NATIVES KOPFBILD-HERO & FORMULAR / SIDEBAR ARCHITEKTUR
═══════════════════════════════════════════════════════════════ */

.etm-page-hero { position: relative; width: 100%; overflow: hidden; background: #1a1e24; display: block; }
.etm-page-hero__img { display: block; width: 100%; height: auto; min-height: 220px; object-fit: cover; object-position: center 40%; }
.etm-page-hero__overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.7) 65%, rgba(0,0,0,0.85) 100%);
}
.etm-page-hero__content {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 1200px; padding: 2.5rem 20px 2rem 20px; text-align: center; z-index: 2; box-sizing: border-box;
}
.etm-page-hero__headline { color: #ffffff !important; font-size: clamp(1.25rem, 3.5vw, 2.2rem); font-weight: 700; margin: 0 auto 0.5rem auto; text-shadow: 0 2px 10px rgba(0,0,0,0.7); }
.etm-page-hero__subline { color: #ffffff !important; font-size: clamp(0.85rem, 1.5vw, 1.05rem); opacity: 0.92; text-shadow: 0 1px 6px rgba(0,0,0,0.6); margin: 0 auto; }

@media (min-width: 768px) { .etm-page-hero__img { min-height: 320px; } .etm-page-hero__content { padding: 3.5rem 20px 2.5rem 20px; } }
@media (min-width: 1200px) { .etm-page-hero__img { min-height: 380px; } }

.etm-kontakt-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; margin: 3.5rem 0; align-items: start; }
.etm-form-card { background: #ffffff; border: 1px solid var(--etm-gray-border); border-radius: 8px; padding: 2.5rem; box-shadow: var(--etm-shadow-sm); }
.etm-kontakt-form { display: flex; flex-direction: column; gap: 1.25rem; }
.etm-field-group { display: flex; flex-direction: column; gap: 0.35rem; }
.etm-field-label { font-size: 0.8rem; font-weight: 600; color: var(--etm-anthrazit); text-transform: uppercase; letter-spacing: 0.05em; }
.etm-required { color: var(--etm-red); margin-left: 2px; }
.etm-field-input { width: 100%; border: 1px solid var(--etm-gray-border); border-radius: var(--etm-radius-sm); padding: 0.65rem 0.85rem; font-size: 0.95rem; color: var(--etm-text); background: var(--etm-white); box-sizing: border-box; font-family: inherit; 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.1); }
.etm-field-textarea { min-height: 140px; resize: vertical; }
.etm-field-checkbox { flex-direction: row; align-items: center; gap: 0.5rem; margin-top: 0.25rem; }
.etm-checkbox-input { width: 16px; height: 16px; accent-color: var(--etm-red); cursor: pointer; margin: 0; }
.etm-checkbox-label { font-size: 0.95rem; color: var(--etm-text); cursor: pointer; }
.etm-captcha-question { font-size: 1.05rem; font-weight: 600; color: var(--etm-anthrazit); margin: 0.2rem 0; }
.etm-captcha-input { max-width: 140px; }
.etm-captcha-hint { font-size: 0.8rem; color: var(--etm-text-muted); }
.etm-field-required-note { font-size: 0.82rem; color: var(--etm-text-muted); }

.etm-kontakt-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.etm-kontakt-card, .etm-vertrauen-card { background: #fafafa; border: 1px solid var(--etm-gray-border); border-radius: 8px; padding: 1.75rem; }
.etm-kontakt-card-title { font-size: 1.15rem; font-weight: 600; color: var(--etm-anthrazit); margin: 0 0 1.25rem 0; }
.etm-kontakt-info { display: flex; flex-direction: column; gap: 1.1rem; }
.etm-kontakt-row { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.95rem; line-height: 1.5; }
.etm-kontakt-row svg { color: var(--etm-red); flex-shrink: 0; margin-top: 0.15rem; }
.etm-vertrauen-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.etm-vertrauen-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; font-weight: 500; color: var(--etm-anthrazit); }
.etm-vertrauen-list svg { color: #16a34a; flex-shrink: 0; }

@media (max-width: 860px) { .etm-kontakt-grid { grid-template-columns: 1fr; gap: 2rem; } .etm-form-card { padding: 1.5rem; } }


/* ═══════════════════════════════════════════════════════════════
   ABSCHNITT 4: RECONSTRUCTED BENTO-GRID (STARTSEITE)
═══════════════════════════════════════════════════════════════ */

.etm-bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 2rem 0; }
.etm-bento-card {
  background: #ffffff; border: 1px solid var(--etm-gray-border); border-radius: 6px; padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-start; transition: transform 0.2s, box-shadow 0.2s;
}
.etm-bento-card:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.etm-bento-span-2 { grid-column: span 2; }
.etm-bento-span-3 { grid-column: span 3; }
.etm-bento-highlight { border: 2px solid var(--etm-red); background: rgba(227, 6, 19, 0.01); }
.etm-bento-title { font-size: 1.15rem; font-weight: 600; color: var(--etm-anthrazit); margin: 0.25rem 0 0.75rem 0; line-height: 1.3; }
.etm-bento-list { margin: 0 0 1.25rem 0; padding-left: 1.1rem; color: var(--etm-anthrazit); font-size: 0.88rem; line-height: 1.6; }
.etm-bento-list li { margin-bottom: 0.4rem; }
.etm-bento-text { font-size: 0.88rem; color: var(--etm-anthrazit); line-height: 1.6; margin: 0 0 1.25rem 0; }
.etm-bento-prozess-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 0.5rem; }
.etm-bento-step { background: #f9f9f9; padding: 0.85rem; border-radius: 4px; border-left: 3px solid var(--etm-red); }
.etm-bento-step h4 { font-size: 0.85rem; font-weight: 600; margin: 0 0 0.25rem 0; }
.etm-bento-step p { font-size: 0.78rem; color: var(--etm-text-muted); margin: 0; line-height: 1.4; }

@media (max-width: 992px) {
  .etm-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .etm-bento-span-3, .etm-bento-span-2 { grid-column: span 2; }
  .etm-bento-prozess-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .etm-bento-grid { grid-template-columns: 1fr; }
  .etm-bento-span-3, .etm-bento-span-2 { grid-column: span 1; }
  .etm-bento-prozess-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ABSCHNITT 5: ARCHITEKTUR FÜR FOKUSSEITEN (MAGAZIN-STIL)
═══════════════════════════════════════════════════════════════ */

.etm-focus-section { padding: 5.5rem 0; border-bottom: 1px solid var(--etm-gray-border); }
.etm-focus-content-wrap { max-width: 850px; margin: 0 auto; box-sizing: border-box; }
.etm-focus-lead-text { font-size: 1.25rem; line-height: 1.6; color: var(--etm-anthrazit); margin-bottom: 2.5rem; }

.etm-focus-spacer-list { list-style: none; padding: 0; margin: 2.5rem 0 0 0; }
.etm-focus-spacer-list li { margin-bottom: 2rem; padding-left: 1.75rem; position: relative; font-size: 1.05rem; line-height: 1.7; }
.etm-focus-spacer-list li::before { content: "•"; color: var(--etm-red); font-size: 1.5rem; position: absolute; left: 0; top: -0.15rem; }

.etm-info-box { background: #fafafa; border: 1px solid var(--etm-gray-border); border-radius: 6px; padding: 2.5rem; margin: 3rem 0; }
.etm-accent-box { border-left: 4px solid var(--etm-red); background: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.etm-focus-cta-block { background: #ffffff; text-align: center; padding: 6rem 0; }

.etm-comparison-table-wrapper { overflow-x: auto; margin: 2.5rem 0; border: 1px solid var(--etm-gray-border); border-radius: 6px; }
.etm-comparison-table { width: 100%; border-collapse: collapse; text-align: left; background: #ffffff; }
.etm-comparison-table th, .etm-comparison-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--etm-gray-border); }
.etm-comparison-table th { background: #fafafa; font-weight: 600; color: var(--etm-anthrazit); }
.etm-comparison-table tr:last-child td { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════════
   ABSCHNITT 6: PROJEKTREFERENZEN (AKKORDEON-LAYOUT)
═══════════════════════════════════════════════════════════════ */

.etm-ref-grid { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; margin: 2rem 0; width: 100%; }
.etm-ref-card { background: #ffffff; border: 1px solid var(--etm-gray-border); border-radius: 6px; overflow: hidden; display: block; width: 100%; max-width: 800px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.etm-ref-card:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.etm-ref-head { background: #fafafa; padding: 1.25rem; cursor: pointer; list-style: none; position: relative; outline: none; }
.etm-ref-head::-webkit-details-marker { display: none; }
.etm-ref-head::after { content: '▼'; position: absolute; right: 1.25rem; top: 1.4rem; font-size: 0.75rem; color: var(--etm-text-muted); transition: transform 0.2s ease; }
.etm-ref-card[open] .etm-ref-head::after { transform: rotate(180deg); }
.etm-ref-kat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--etm-red); margin: 0 0 0.4rem 0; }
.etm-ref-titel { font-size: 1.05rem; font-weight: 600; color: var(--etm-anthrazit); margin: 0 0 0.75rem 0; line-height: 1.3; padding-right: 1.5rem; }
.etm-ref-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.etm-ref-detail { background: #ffffff; border-top: 1px solid var(--etm-gray-border); padding: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 580px) { .etm-ref-detail { grid-template-columns: 1fr; } }
.etm-ref-detail-label { font-size: 0.7rem; font-weight: 600; color: var(--etm-text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin: 0 0 0.4rem 0; }
.etm-ref-detail-text { font-size: 0.88rem; color: var(--etm-anthrazit); line-height: 1.55; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   ABSCHNITT 7: RECHTSTEXTE & DATENSCHUTZ (LEGAL LAYOUT)
═══════════════════════════════════════════════════════════════ */

.etm-legal-wrap {
  max-width: 850px;
  margin: 0 auto;
  box-sizing: border-box;
}
.etm-legal-wrap p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--etm-text);
  margin-bottom: 1.25rem;
}
.etm-legal-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3.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: 1.15rem;
  font-weight: 600;
  color: var(--etm-anthrazit);
  margin: 2rem 0 0.75rem 0;
  line-height: 1.4;
}
.etm-dsgvo-nav {
  background: var(--etm-gray-light);
  border: 1px solid var(--etm-gray-border);
  border-left: 4px solid var(--etm-red);
  border-radius: var(--etm-radius-md);
  padding: 1.5rem;
  margin-bottom: 3.5rem;
  display: block;
}
.etm-dsgvo-nav-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--etm-anthrazit);
  margin: 0 0 0.75rem 0;
}
.etm-dsgvo-nav-list {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.etm-dsgvo-nav-list li {
  font-size: 0.95rem;
  line-height: 1.4;
}
.etm-dsgvo-contact {
  background: var(--etm-gray-light);
  border: 1px solid var(--etm-gray-border);
  border-left: 3px solid var(--etm-red);
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--etm-text);
  border-radius: 0 var(--etm-radius-md) var(--etm-radius-md) 0;
}
.etm-dsgvo-capslock p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--etm-text-muted);
  background: #fafafa;
  padding: 1.25rem;
  border: 1px dashed var(--etm-gray-border);
  border-radius: 6px;
}
.etm-legal-ul {
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem 0;
}
.etm-legal-ul li {
  font-size: 1rem;
  color: var(--etm-text);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}
.etm-dsgvo-source {
  font-size: 0.85rem;
  color: var(--etm-text-muted);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--etm-gray-mid);
}
/* ═══════════════════════════════════════════════════════════════
   ERGÄNZUNGEN — AUDIT-KORREKTUREN
═══════════════════════════════════════════════════════════════ */

/* ── BARRIEREFREIHEIT: Screenreader-only ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── FAQ-ITEMS (Messkonzepte-Seite, statisches Format ohne JS) ── */
.etm-faq-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--etm-gray-mid);
}
.etm-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.etm-faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--etm-anthrazit);
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}
.etm-faq-item p {
  font-size: 0.95rem;
  color: var(--etm-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── BENTO-CARD: Interne Verlinkung zu Fokusseiten ── */
.etm-bento-readmore {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--etm-red);
  text-decoration: none;
}
.etm-bento-readmore:hover {
  text-decoration: underline;
}

/* ── INTERNE QUERVERWEISE am Sektionsende (Fokusseiten) ── */
.etm-internal-link-hint {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--etm-text-muted);
  line-height: 1.6;
}
.etm-internal-link-hint a {
  color: var(--etm-red);
  font-weight: 500;
  text-decoration: none;
}
.etm-internal-link-hint a:hover {
  text-decoration: underline;
}

/* ── KONTAKT-LINKS (Telefon & E-Mail in der Sidebar) ── */
.etm-kontakt-link {
  color: var(--etm-anthrazit);
  font-weight: 500;
  text-decoration: none;
}
.etm-kontakt-link:hover {
  color: var(--etm-red);
  text-decoration: underline;
}

/* ── FOOTER ── */
#etm-footer {
  background: #2a2d32;
  color: rgba(255,255,255,0.55);
  padding: 2rem 0 1.25rem;
  margin-top: auto;
  font-size: 0.82rem;
}
.etm-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.etm-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.etm-footer-nav-divider {
  color: rgba(255,255,255,0.15);
  padding: 0 0.25rem;
}
.etm-footer-nav-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.etm-footer-nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.15s;
}
.etm-footer-nav a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
.etm-footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}
.etm-footer-legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  text-decoration: none;
}
.etm-footer-legal a:hover { color: rgba(255,255,255,0.75); text-decoration: none; }
.etm-footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ── BACK-TO-TOP-BUTTON ── */
#etm-btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--etm-anthrazit);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease,
              transform 0.25s ease, background 0.15s ease;
  z-index: 900;
}
#etm-btt.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#etm-btt:hover { background: var(--etm-red); }
@media (max-width: 480px) {
  #etm-btt { bottom: 1.25rem; right: 1.25rem; width: 40px; height: 40px; }
}


/* ── INDEX-KONTAKT-BENTO (Kontaktbereich auf der Startseite) ── */
.etm-index-kontakt-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.etm-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0;
}

.etm-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--etm-anthrazit);
  text-decoration: none;
}
.etm-contact-link:hover {
  color: var(--etm-red);
  text-decoration: none;
}
.etm-contact-link svg {
  flex-shrink: 0;
  color: var(--etm-red);
}

/* ── PORTRAIT (Profilbild + Beschriftung) ── */
.etm-portrait-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
}

.etm-portrait-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--etm-gray-mid);
  display: block;
}

.etm-portrait-caption {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--etm-anthrazit);
  line-height: 1.4;
}
.etm-portrait-caption span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--etm-text-muted);
}

@media (max-width: 600px) {
  .etm-index-kontakt-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .etm-portrait-wrap {
    align-self: center;
  }
}
