/* ═══════════════════════════════════════════
   WEZEL GMBH – DESIGN 2 + FARBEN 3 (TECH BLUE LIGHT)
   Layout: Premium Wezel-Style
   Farben: Electric Blue auf weißem Hintergrund
   Typografie: Montserrat (Headings) + Source Sans 3 (Body)
═══════════════════════════════════════════ */
:root {
  --bg-white:      #ffffff;
  --bg-light:      #f8fafb;
  --bg-subtle:     #f0f4f8;
  --primary-dark:  #0a1628;
  --accent:        #0099cc;
  --accent-bright: #00b8e6;
  --accent-dark:   #007399;
  --accent-soft:   #e6f6fb;
  --text-dark:     #1a2332;
  --text-body:     #3d4a5c;
  --text-muted:    #6b7a8f;
  --border:        #e2e8f0;
  --border-dark:   #cbd5e1;

  /* Legacy-Aliasse fuer alten Markup (um Kompatibilitaet sicherzustellen) */
  --steel:         var(--primary-dark);
  --steel-mid:     var(--text-dark);
  --steel-light:   var(--text-body);
  --accent-light:  var(--accent-bright);
  --silver:        var(--text-muted);
  --light:         var(--bg-light);
  --white:         var(--bg-white);
  --text:          var(--text-dark);
  --text-muted-legacy: var(--text-muted);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
}

/* ── HEADER ── */
.site-header {
  background: var(--bg-white);
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.logo, .logo a {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.logo span { color: var(--accent); font-weight: 800; }

/* Breadcrumb / Nav */
.breadcrumb {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-subtle) 50%, var(--bg-white) 100%);
  padding: 5rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,153,204,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(0,153,204,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-label {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.hero h1 em,
.hero h1 span {
  display: inline-block;
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent);
}
.hero-lead {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 760px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.1rem;
  max-width: 820px;
}
.stat-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,153,204,0.10);
}
.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero badges */
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.4rem; }
.hero-badge {
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--accent-dark);
  padding: 0.35rem 0.95rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── MAIN / LAYOUT ── */
main { max-width: 1100px; margin: 0 auto; padding: 3.5rem 3rem; }
section { margin-bottom: 3.5rem; }

/* ── TYPOGRAPHY ── */
h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.01em;
}
h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 1.4rem 0 0.6rem;
}
h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}
p { margin-bottom: 1rem; color: var(--text-body); }
p strong { color: var(--text-dark); font-weight: 600; }
a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

/* ── PRODUCT / GENERIC CARDS ── */
.product-grid,
.segment-grid,
.use-case-grid,
.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 1.8rem;
}
.product-card,
.use-case {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem 1.7rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-card::before,
.use-case::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover::before,
.use-case:hover::before { transform: scaleX(1); }
.product-card:hover,
.use-case:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0,153,204,0.12);
}
.product-card h3,
.use-case h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--accent-dark);
}
.product-card h3 a,
.use-case h3 a { color: inherit; text-decoration: none; }
.product-card h3 a:hover,
.use-case h3 a:hover { color: var(--accent); }
.product-card p,
.use-case p { font-size: 0.92rem; margin: 0; color: var(--text-muted); }
.product-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  display: inline-block;
}

/* ── SEGMENT CARDS ── */
.segment-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
.segment-card:hover { box-shadow: 0 12px 32px rgba(0,153,204,0.10); }
.segment-header {
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.segment-icon { font-size: 1.8rem; color: #ffffff; }
.segment-title { color: #ffffff; font-weight: 700; font-size: 1rem; font-family: 'Montserrat', sans-serif; }
.segment-sub { color: rgba(255,255,255,0.75); font-size: 0.78rem; margin-top: 0.1rem; }
.segment-body { padding: 1.3rem 1.5rem; }
.segment-body p { font-size: 0.92rem; margin-bottom: 0.7rem; }

/* ── SPEC ROWS (inside cards) ── */
.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--text-muted); }
.spec-val { font-weight: 600; color: var(--text-dark); text-align: right; }

/* ── VARIANT CARDS ── */
.variant-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
.variant-card:hover { box-shadow: 0 12px 32px rgba(0,153,204,0.10); }
.variant-header {
  padding: 1.3rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.variant-header.steel-card,
.variant-header.alu-card {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.variant-title { color: #ffffff; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.2rem; font-family: 'Montserrat', sans-serif; }
.variant-sub { color: rgba(255,255,255,0.75); font-size: 0.82rem; }
.variant-body { padding: 1.3rem 1.5rem; background: var(--bg-white); }

/* ── SPEC / REQ / COMPARE TABLES ── */
.spec-table,
.req-table,
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.93rem;
  background: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.spec-table th,
.req-table th,
.compare-table th {
  background: var(--bg-subtle);
  color: var(--accent-dark);
  padding: 0.95rem 1.15rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
}
.compare-table th { text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table th.col-wezel {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  border-bottom: 2px solid var(--accent-dark);
}
.compare-table th.col-alt {
  background: var(--bg-subtle);
  color: var(--text-muted);
}
.spec-table td,
.req-table td,
.compare-table td {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  vertical-align: top;
}
.compare-table td { text-align: center; }
.compare-table td:first-child { text-align: left; }
.compare-table td.col-wezel { background: var(--accent-soft); }
.spec-table td:first-child,
.req-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 38%;
}
.spec-table tr:nth-child(even) td,
.req-table tr:nth-child(even) td {
  background: var(--bg-light);
}
.compare-table tr:nth-child(even) td:first-child { background: var(--bg-light); }
.spec-table tr:last-child td,
.req-table tr:last-child td,
.compare-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td,
.req-table tr:hover td { background: rgba(0,153,204,0.05); }

/* ── COMPARE VERDICT COLORS ── */
.good  { color: #0b7a3e; font-weight: 700; }
.mid   { color: #b07d10; font-weight: 700; }
.bad   { color: #c0392b; font-weight: 700; }
.check { color: #0b7a3e; font-weight: 700; }

/* ── ADVANTAGES ── */
.advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.advantage-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.3rem 1.4rem;
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,153,204,0.10);
}
.advantage-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.advantage-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}
.advantage-text p { font-size: 0.88rem; margin: 0; color: var(--text-muted); }

/* ── VS / DECISION CARDS ── */
.vs-grid,
.decision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.vs-card,
.decision-card {
  border-radius: 10px;
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vs-card:hover,
.decision-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,153,204,0.10);
}
.vs-card.winner,
.decision-card.recommended {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-white) 100%);
  border: 2px solid var(--accent);
}
.vs-card.loser,
.decision-card.alternative {
  background: var(--bg-light);
  border: 1px solid var(--border);
}
.vs-badge,
.decision-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.7rem;
}
.badge-w,
.badge-recommended {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #ffffff;
}
.badge-l,
.badge-limited {
  background: var(--bg-subtle);
  color: var(--text-muted);
}
.vs-card h3,
.decision-card h3 {
  font-size: 1rem;
  margin-top: 0.3rem;
  margin-bottom: 0.6rem;
}
.vs-card ul,
.decision-card ul { list-style: none; padding: 0; margin: 0; }
.vs-card ul li,
.decision-card ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.25rem 0 0.25rem 1.1rem;
  position: relative;
  line-height: 1.6;
}
.vs-card ul li::before,
.decision-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── MATERIAL PROPERTIES ── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-top: 1.6rem;
}
.prop-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 1.3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.prop-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.prop-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.prop-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-white);
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.open { border-color: var(--accent); box-shadow: 0 6px 18px rgba(0,153,204,0.10); }
.faq-q {
  background: var(--bg-light);
  padding: 1.05rem 1.35rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--primary-dark);
  border-left: 3px solid var(--accent);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  user-select: none;
}
.faq-item.open .faq-q { background: var(--accent-soft); }
.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 1px;
  transition: background 0.25s, transform 0.25s;
}
.faq-item.open .faq-toggle {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: rotate(45deg);
}
.faq-a {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
}
.faq-item.open .faq-a {
  max-height: 1200px;
  padding: 1.15rem 1.4rem;
  border-top: 1px solid var(--border);
}
.faq-a-inner,
.faq-a {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
}
.faq-a-inner strong,
.faq-a strong { color: var(--text-dark); font-weight: 600; }
.faq-a-inner ul,
.faq-a ul { margin: 0.5rem 0 0.5rem 1.3rem; }
.faq-a-inner ul li,
.faq-a ul li { margin-bottom: 0.3rem; }
.faq-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

/* ── FILTER TABS ── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-tab {
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-tab:hover {
  background: var(--bg-light);
  border-color: var(--accent);
  color: var(--accent);
}
.filter-tab.active {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0,153,204,0.25);
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--accent-soft);
  border: 1px solid rgba(0,153,204,0.2);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 1.3rem 1.5rem;
  margin: 1.6rem 0;
}
.highlight-box p { margin: 0; font-size: 0.95rem; color: var(--text-body); }
.highlight-box p strong { color: var(--primary-dark); }

/* ── BRANCH TAGS ── */
.branch-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.2rem; }
.tag {
  background: var(--bg-white);
  color: var(--accent-dark);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.25s;
}
.tag:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── COMPARE WRAP ── */
.compare-wrap { overflow-x: auto; margin-top: 1.6rem; border-radius: 10px; }
.compare-table { min-width: 640px; }

/* ── DEFINITION BOX / BLOCK ── */
.definition-lead {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 860px;
  margin-bottom: 1.6rem;
  line-height: 1.8;
}
.def-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.def-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 10px;
  padding: 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.def-block:hover { box-shadow: 0 10px 24px rgba(0,153,204,0.10); }
.def-block h3 { margin-top: 0; font-size: 1rem; margin-bottom: 0.7rem; color: var(--accent-dark); }
.def-list { list-style: none; padding: 0; margin: 0; }
.def-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.def-list li:last-child { border-bottom: none; }
.def-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  top: 0.45rem;
}
.definition-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 1.4rem 1.7rem;
  margin-bottom: 1.6rem;
}
.def-term {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem !important;
}
.definition-box p { font-size: 0.95rem; margin-bottom: 0.6rem; }
.definition-box p:last-child { margin-bottom: 0; }

/* ── PROCESS LIST ── */
.process-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  counter-reset: process-counter;
  max-width: 900px;
}
.process-list li {
  counter-increment: process-counter;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.15rem 1rem;
  align-items: start;
  padding: 1.15rem 1.4rem;
  margin-bottom: 0.7rem;
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
.process-list li:hover { box-shadow: 0 8px 22px rgba(0,153,204,0.10); }
.process-list li::before {
  content: counter(process-counter);
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(0,153,204,0.25);
}
.process-list li strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  color: var(--primary-dark);
  margin-bottom: 0.1rem;
}
.process-list li span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── ABSTRACT ── */
.abstract-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 880px;
  margin-bottom: 0.8rem;
}
.norm-quickref {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
}
.norm-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.2rem;
}
.norm-tag {
  background: var(--bg-white);
  color: var(--accent-dark);
  border: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.28rem 0.8rem;
  border-radius: 20px;
}

/* ── ONE-SENTENCE DEFINITION ── */
.one-sentence-def {
  font-size: 1.03rem;
  color: var(--text-dark);
  line-height: 1.8;
  max-width: 880px;
  margin-bottom: 1.3rem;
  padding: 1.1rem 1.5rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
}

/* ── ENTITY GRID ── */
.entity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.2rem;
  margin-top: 1.3rem;
}
.entity-group {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent-dark);
  border-radius: 10px;
  padding: 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
.entity-group:hover { box-shadow: 0 10px 24px rgba(0,153,204,0.10); }
.entity-group h3 { margin-top: 0; font-size: 0.98rem; margin-bottom: 0.8rem; color: var(--accent-dark); }
.entity-list { list-style: none; padding: 0; margin: 0; }
.entity-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.entity-list li:last-child { border-bottom: none; }
.entity-list li strong { color: var(--text-dark); }

/* ── CTA BOX ── */
.cta-box {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-subtle) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
}
.cta-box h2 {
  color: var(--primary-dark);
  font-size: 2rem;
  margin-bottom: 0.9rem;
  display: inline-block;
}
.cta-box h2::after { display: none; }
.cta-box p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 1.7rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  padding: 1rem 2.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,153,204,0.25);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,153,204,0.35);
  color: #ffffff;
}

/* ── FOOTER ── */
/* alte .page-footer-Definition entfernt – Grid-Version ab Zeile ~1556 ist maßgeblich */

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-header { padding: 1rem 1.5rem; }
  .hero { padding: 3.5rem 1.5rem 2.5rem; }
  main { padding: 2.5rem 1.5rem; }
  /* .page-footer responsive → Grid-Version */
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .site-header { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .hero h1 { font-size: 1.8rem; }
  .cta-box { padding: 2.2rem 1.5rem; }
}

/* ═══════════════════════════════════════════
   ERGAENZUNG: Layout-Klassen fuer htdocs-neu (2026)
═══════════════════════════════════════════ */

/* ── SITE HEADER (erweitert: mit Navigation) ── */
.site-header { padding: 1rem 2rem; }
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
/* Logo-Link: entfernt Link-Defaults, .logo-Stil aus Basis-CSS bleibt aktiv */
.logo-link {
  text-decoration: none;
  display: inline-block;
}
.logo-link:hover .logo { opacity: 0.85; }

/* Main-Nav (Top-Level) */
.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover { background: var(--accent-soft); color: var(--accent-dark); }
.main-nav a.active { color: var(--accent); background: var(--accent-soft); }

/* Produkte-Dropdown */
.main-nav .has-dropdown { position: relative; }
.main-nav .has-dropdown > a .chevron {
  font-size: 0.7rem;
  margin-left: 0.25rem;
  color: var(--text-muted);
  display: inline-block;
  transition: transform 0.2s, color 0.2s;
}
.main-nav .has-dropdown:hover > a .chevron,
.main-nav .has-dropdown:focus-within > a .chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.main-nav .dropdown {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 50;
}
.main-nav .has-dropdown:hover > .dropdown,
.main-nav .has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .dropdown li { list-style: none; }
.main-nav .dropdown a {
  display: block;
  padding: 0.55rem 1rem;
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dark);
}
.main-nav .dropdown a:hover,
.main-nav .dropdown a.active {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.breadcrumb .sep { color: var(--text-muted); margin: 0 0.3rem; }
.breadcrumb [aria-current="page"] { color: var(--primary-dark); font-weight: 600; }

/* ── MAIN + CONTAINER ── */
#main-content { max-width: none; margin: 0; padding: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── TRUST-BAR (Zertifikate) ── */
.trust-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-body);
  transition: color 0.2s;
}
.trust-item:hover { color: var(--accent); }
.trust-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.trust-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
}
.trust-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .trust-items { gap: 1rem; }
  .trust-sub { display: none; }
}

/* ── HERO (neue Varianten) ── */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-content { max-width: 860px; flex: 1 1 auto; }

/* ── GEAR-GRAPHIC (rotierende Kreise) ── */
.gear-graphic {
  width: 260px;
  height: 260px;
  position: relative;
  flex-shrink: 0;
}
.gear-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent);
  border-radius: 50%;
  animation: gear-rotate 30s linear infinite;
  box-shadow: 0 0 30px rgba(0,153,204,0.15);
}
.gear-outer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -13px;
  width: 26px;
  height: 18px;
  background: var(--accent);
  transform: translateY(-50%);
  border-radius: 2px;
}
.gear-outer::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -13px;
  width: 26px;
  height: 18px;
  background: var(--accent);
  transform: translateY(-50%);
  border-radius: 2px;
}
.gear-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent-bright);
  border-radius: 50%;
  animation: gear-rotate-reverse 20s linear infinite;
}
.gear-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 20px rgba(0,153,204,0.3);
}
@keyframes gear-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes gear-rotate-reverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}
@media (max-width: 820px) {
  .gear-graphic { display: none; }
}
.hero-badges { margin-bottom: 1.4rem; }
.hero-badges .badge,
.hero-badge {
  background: var(--bg-white);
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero h1 { margin-top: 0; }
.hero-stats { margin-top: 2rem; margin-bottom: 2rem; }
.hero-stats .stat {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-stats .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stats .stat-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.6rem; }

/* ── SECTION SYSTEM ── */
.section { padding: 4rem 0; }
.section-subtle { background: var(--bg-light); }
.section-header {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-header .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.section-header h2 {
  display: inline-block;
  margin: 0 auto 1rem;
}
.section-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-lead {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 0.8rem;
}

/* ── ONE-SENTENCE DEFINITION (Full-Width-Band) ── */
/* Hebt die schmale Inline-Variante aus dem Basis-CSS bewusst auf: */
section.one-sentence-def {
  max-width: none;
  margin: 0;
  border-radius: 0;
  border-left: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg-white);
  padding: 2.6rem 2rem;
  text-align: center;
}
section.one-sentence-def .container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
section.one-sentence-def p {
  margin: 0 auto;
  color: var(--bg-white);
  font-size: 1.08rem;
  line-height: 1.75;
  text-align: center;
  text-wrap: balance;           /* moderne Browser: gleichmäßig zentriert */
}
section.one-sentence-def strong { color: var(--bg-white); font-weight: 700; }

/* ── DEFINITION BOX (Text-Abschnitt mit Rahmen) ── */
.definition-box {
  background: var(--bg-white);
  border-left: 4px solid var(--accent);
  padding: 1.8rem 2rem;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  max-width: 900px;
  margin: 0 auto;
}
.definition-box p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.75; }
.definition-box p:last-child { margin-bottom: 0; }

/* ── SEGMENT GRID (Kernbereiche/Karten) ── */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.segment-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 1.7rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.segment-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(0,153,204,0.12);
}
.segment-icon {
  font-size: 2rem;
  width: 54px;
  height: 54px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.segment-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-dark);
}
.segment-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.card-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: auto;
}
.card-link:hover { color: var(--accent-dark); }

/* ── PROCESS LIST (nummerierte Prozesskette) ── */
/* Verwendet das flex-basierte Layout aus dem ersten Block (oben).
   Zusätzliche Regeln für h3/p (Template-Seiten): */
.process-list li h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-dark);
}
.process-list li p { margin: 0; font-size: 0.95rem; color: var(--text-body); }

/* ── FAQ LIST ── */
.faq-list {
  max-width: 900px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,153,204,0.08);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item .faq-answer p { margin: 0; }

/* ── CTA BOX SECTION ── */
.cta-box-section {
  padding: 4rem 0;
  background: var(--bg-white);
}
.cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #132234 100%);
  color: var(--bg-white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,153,204,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,184,230,0.08) 0%, transparent 50%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  color: var(--bg-white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.cta-box h2::after { background: linear-gradient(90deg, var(--accent-bright), transparent); }
.cta-box p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 1.8rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-box .btn-secondary {
  background: transparent;
  color: var(--bg-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.cta-box .btn-secondary:hover {
  background: var(--bg-white);
  color: var(--primary-dark);
  border-color: var(--bg-white);
}

/* ── PAGE FOOTER (Grid) ── */
.page-footer {
  background: var(--bg-light);
  color: var(--text-main);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
  margin-top: 4rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.footer-col h3 {
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-dark); }
.footer-col address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-main);
}
.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
}
.footer-bottom .footer-container {
  display: block;
  text-align: center;
}
.footer-bottom p { margin: 0; color: var(--text-muted); }

/* ── RESPONSIVE ERGAENZUNG ── */
@media (max-width: 820px) {
  .header-container { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .main-nav { width: 100%; }
  .main-nav ul { flex-wrap: wrap; gap: 0; }
  .main-nav a { padding: 0.45rem 0.7rem; font-size: 0.82rem; }
  .section { padding: 3rem 0; }
  .cta-box { padding: 2.2rem 1.5rem; }
  .cta-box h2 { font-size: 1.4rem; }
  .hero-stats .stat-num { font-size: 1.3rem; }
  .branchen-grid { grid-template-columns: 1fr !important; }
  .features-grid { grid-template-columns: 1fr !important; }
  .properties-grid { grid-template-columns: 1fr !important; }
  .two-col-lists { grid-template-columns: 1fr !important; }
  .info-grid { grid-template-columns: 1fr !important; }
}

/* ── HERO COMPACT (fuer Unterseiten) ── */
.hero.hero-compact { padding: 4rem 0 3rem; }
.hero.hero-compact h1 { font-size: 2.2rem; }
.hero.hero-compact .hero-lead { font-size: 1.05rem; margin-bottom: 0; }

/* ── BRANCHEN GRID (produkte.html) ── */
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.branche-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1.3rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.branche-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,153,204,0.12);
}
.branche-card h3 {
  font-size: 1.08rem;
  margin: 0 0 0.5rem;
  color: var(--accent-dark);
}
.branche-card p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.feature {
  padding: 1.2rem 0;
  border-top: 3px solid var(--accent);
}
.feature h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--primary-dark);
}
.feature p { margin: 0; font-size: 0.92rem; line-height: 1.6; color: var(--text-muted); }

@media (max-width: 980px) {
  .branchen-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── PROPERTIES GRID (fuer Produktdetails) ── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.property {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  text-align: center;
}
.property-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-dark);
  margin-bottom: 0.35rem;
}
.property-value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* ── TWO-COL LISTS (fuer Service Intern/Extern) ── */
.two-col-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.col-list {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.6rem 1.7rem;
}
.col-list h3 {
  font-size: 1.15rem;
  margin: 0 0 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent);
  color: var(--accent-dark);
}
.col-list h4 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 1.1rem 0 0.4rem;
  color: var(--text-muted);
}
.col-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.col-list li {
  padding: 0.4rem 0 0.4rem 1.3rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.55;
}
.col-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── INFO GRID (fuer Kontakt/Anfahrt) ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.info-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-size: 1.25rem;
}
.info-card address {
  font-style: normal;
  line-height: 1.75;
}
.info-card a { color: var(--accent-dark); }

/* ── CONTENT PROSE (Unternehmen/Qualitaet/Karriere Fliesstext) ── */
.prose {
  max-width: 820px;
  margin: 0 auto;
}
.prose p { font-size: 1.02rem; line-height: 1.75; margin: 0 0 1rem; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { margin: 0.5rem 0 1.2rem; padding-left: 1.3rem; }
.prose li { margin-bottom: 0.4rem; line-height: 1.65; }

/* ── CREDENTIAL CARDS (qualitaet.html) ── */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.credential-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}
.credential-card .credential-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-white);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}
.credential-card h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: var(--primary-dark);
}
.credential-card p { margin: 0; font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); }
.credential-downloads {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.btn-sm {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}

@media (max-width: 820px) {
  .credentials-grid { grid-template-columns: 1fr !important; }
}

/* ── LEGAL PAGE (impressum/datenschutz) ── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-content h2 { margin-top: 2.2rem; font-size: 1.3rem; }
.legal-content h3 { margin-top: 1.6rem; font-size: 1.1rem; }
.legal-content h4 { margin-top: 1.2rem; font-size: 1rem; color: var(--accent-dark); }
.legal-content p { margin: 0 0 0.9rem; }
.legal-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.35rem; }
