/* ═══════════════════════════════════════════
   ZPAS Deutschland – Shared Stylesheet
   Fonts: Source Sans Pro (body), Open Sans (headings)
   ═══════════════════════════════════════════ */

:root {
  --bg:        #f2f2f2;
  --bg-white:  #ffffff;
  --bg-mid:    #e6e6e6;
  --steel:     #555555;
  --steel-mid: #777777;
  --steel-lt:  #aaaaaa;
  --dark:      #1a1a1a;
  --accent:    #cc0f15;
  --accent-lt: #e01218;
  --text:      #2a2a2a;
  --text-mid:  #5f5f5f;
  --border:    #d5d5d5;
}

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

body {
  font-family: 'Source Sans Pro', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 201;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--steel-mid);
}
.topbar-left { display: flex; gap: 16px; align-items: center; }
.topbar-left a { color: var(--steel-mid); text-decoration: none; transition: color .15s; }
.topbar-left a:hover { color: var(--accent); }
.social-icons { display: flex; gap: 8px; }
.social-icons a {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--steel-mid); text-decoration: none;
  transition: all .15s;
}
.social-icons a:hover { border-color: var(--steel); color: var(--steel); }
.topbar-divider { color: var(--border); }
.topbar-right { display: flex; gap: 20px; }
.topbar-right a { color: var(--steel-mid); text-decoration: none; font-weight: 600; font-size: 12px; letter-spacing: .5px; transition: color .15s; }
.topbar-right a:hover, .topbar-right a.active { color: var(--accent); }

/* ── HEADER ── */
header {
  background: var(--bg-white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 37px;
  z-index: 200;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}
.logo { text-decoration: none; flex-shrink: 0; }
.logo-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--steel);
  letter-spacing: -1px;
  line-height: 1;
}
.logo-img { height: 42px; width: auto; display: block; }
.footer-brand .logo-img { height: 28px; opacity: 0.65; filter: brightness(2); }

/* ── NAV ── */
nav { display: flex; align-items: center; gap: 2px; flex: 1; }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 4px;
  transition: color .15s, background .15s;
  white-space: nowrap;
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
}
.nav-link:hover { color: var(--dark); background: var(--bg); }
.nav-link.active { color: var(--dark); background: var(--bg); font-weight: 700; }
.nav-caret { font-size: 9px; color: var(--steel-lt); }
/* Hervorgehobener Konfigurator-Menuepunkt */
.nav-link-kfg { color: var(--accent); font-weight: 700; }
.nav-link-kfg:hover { color: var(--accent); background: var(--bg); }
.nav-link-kfg.active { color: var(--accent); background: var(--bg); }
.nav-link-kfg .nav-caret { color: var(--accent); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;           /* kein Spalt → Hover bleibt aktiv beim Überfahren */
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 250px;
  display: none;
  z-index: 300;
  overflow: hidden;
}
/* Unsichtbare Brücke: verhindert Hover-Verlust beim Überfahren zum Dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;   /* deckt den Abstand zum Dropdown ab */
}
.nav-item:hover .dropdown { display: block; }
.dropdown-head {
  background: var(--bg);
  padding: 11px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel-lt);
  border-bottom: 1px solid var(--border);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--bg);
  transition: background .12s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--bg); color: var(--dark); }
.dropdown a .d-icon { font-size: 16px; width: 20px; flex-shrink: 0; }

.nav-right { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.btn-ghost {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--steel);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: all .15s;
  font-family: 'Source Sans Pro', sans-serif;
}
.btn-ghost:hover { border-color: var(--steel); color: var(--dark); }
.btn-cta {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: var(--accent);
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s;
  font-family: 'Source Sans Pro', sans-serif;
}
.btn-cta:hover { background: var(--accent-lt); }

/* ── HERO (Startseite) ── */
.hero {
  background: #08111e;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,40,70,.25) 0%, transparent 60%),
              linear-gradient(to right, rgba(8,17,30,.95) 40%, rgba(8,17,30,.6) 100%);
  z-index: 1;
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 28px 76px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); }
.hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero-sub {
  color: rgba(255,255,255,.58);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 460px;
}
.hero-ctas { display: flex; gap: 12px; }
.btn-hero-primary {
  background: var(--accent);
  color: white;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s;
  font-family: 'Source Sans Pro', sans-serif;
}
.btn-hero-primary:hover { background: var(--accent-lt); }
.btn-hero-ghost {
  background: transparent;
  color: rgba(255,255,255,.75);
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.22);
  text-decoration: none;
  transition: all .15s;
  font-family: 'Source Sans Pro', sans-serif;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.5); color: white; }

/* Produktseiten-Banner: Hinweis auf Konfigurator */
.kfg-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff5f5;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 28px 0;
}
.kfg-banner-text { font-size: 15px; color: var(--dark); line-height: 1.5; flex: 1; min-width: 240px; }
.kfg-banner-text strong { color: var(--accent); }
.kfg-banner-btn {
  background: var(--accent);
  color: #fff;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}
.kfg-banner-btn:hover { background: var(--accent-lt); }

/* Social-Teilen-Leiste (statisch, datenschutzfreundlich) */
.share-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--border);
}
.share-bar-label { font-size: 14px; font-weight: 700; color: var(--text-mid); margin-right: 4px; }
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  font-family: 'Source Sans Pro', sans-serif;
}
.share-btn:hover { opacity: .85; transform: translateY(-2px); }
.share-li   { background: #0a66c2; }
.share-x    { background: #000; }
.share-fb   { background: #1877f2; }
.share-mail { background: #5f6b7a; }
.share-copy { background: var(--accent); }

/* Hero product cards grid */
.hero-visual { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 10px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  display: block;
}
.hero-card:hover { background: rgba(255,255,255,.09); border-color: rgba(204,15,21,.5); }
.hero-card-icon { font-size: 26px; margin-bottom: 10px; }
.hero-card-title { font-size: 11px; font-weight: 700; color: white; margin-bottom: 2px; line-height: 1.3; }
.hero-card-sub { font-size: 10px; color: rgba(255,255,255,.4); }

/* ── STATS STRIP ── */
.stats { background: var(--steel); padding: 18px 0; }
.stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat { text-align: center; padding: 10px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 26px; font-weight: 800; color: white; line-height: 1;
}
.stat-lbl { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 3px; }

/* ── PRODUCT HERO (Unterseiten) ── */
.prod-hero {
  background: #08111e;
  padding: 60px 28px;
  position: relative;
  overflow: hidden;
}
.prod-hero::after {
  content: '';
  position: absolute; right: 0; top: 0;
  width: 50%; height: 100%;
  background: rgba(255,255,255,.015);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.prod-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.prod-hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.prod-hero h1 em { color: var(--accent); font-style: normal; }
.prod-hero-desc {
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 460px;
}
.prod-hero-visual {
  border: 1px solid rgba(77,208,225,.18);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: #08111e;
}
.prod-hero-visual svg { width: 100%; display: block; }
.prod-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── SPEC BAR ── */
.spec-bar { background: var(--steel); padding: 0; }
.spec-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.spec-item { padding: 18px 20px; border-right: 1px solid rgba(255,255,255,.1); text-align: center; }
.spec-item:last-child { border-right: none; }
.spec-val { font-family: 'Open Sans', sans-serif; font-size: 18px; font-weight: 800; color: white; }
.spec-key { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 3px; }

/* ── SECTION BASICS ── */
.section { padding: 72px 28px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--accent); }
.section-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -.3px; line-height: 1.2;
}
.section-lead {
  color: var(--text-mid); font-size: 17px;
  max-width: 580px; margin-bottom: 48px; line-height: 1.7;
}

/* ── PRODUCT CARDS (Startseite) ── */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.prod-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.prod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  border-color: var(--steel-mid);
}
.prod-card-img {
  height: 280px;
  background: #f5f6f8;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 52px;
  overflow: hidden;
}
.prod-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.5);
  transform-origin: center center;
}
.prod-card-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--steel);
  color: white; font-size: 10px; font-weight: 700; letter-spacing: .8px;
  padding: 3px 8px; border-radius: 2px;
}
.prod-card-body { padding: 20px 22px 22px; }
.prod-card-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--dark);
  margin-bottom: 7px; line-height: 1.3;
}
.prod-card-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.prod-card-link { font-size: 13px; font-weight: 700; color: var(--accent); }

/* ── USP SECTION ── */
.usp-section { background: var(--bg-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp-item { padding: 40px 30px; border-right: 1px solid var(--border); }
.usp-item:last-child { border-right: none; }
.usp-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 34px; font-weight: 800; color: var(--steel);
  line-height: 1; margin-bottom: 10px;
}
.usp-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.usp-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── CTA STRIP ── */
.cta-strip { background: #08111e; padding: 56px 28px; }
.cta-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.cta-text h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px; font-weight: 800; color: white;
  margin-bottom: 8px; letter-spacing: -.3px;
}
.cta-text p { color: rgba(255,255,255,.5); font-size: 16px; }
.btn-cta-lg {
  background: var(--accent); color: white;
  padding: 14px 28px; font-size: 15px; font-weight: 700;
  border-radius: 4px; text-decoration: none; white-space: nowrap;
  transition: background .15s; flex-shrink: 0;
  font-family: 'Source Sans Pro', sans-serif;
}
.btn-cta-lg:hover { background: var(--accent-lt); }

/* ── BLOG PREVIEW ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  text-decoration: none; display: block;
  transition: box-shadow .18s;
}
.blog-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.blog-card-img {
  height: 160px; background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 40px;
  overflow: hidden; position: relative;
}
.blog-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 18px 20px 20px; }
.blog-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.blog-card-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 8px;
}
.blog-card-desc { font-size: 14px; color: var(--text-mid); line-height: 1.55; }

/* ── CONTENT LAYOUT (Produktseiten) ── */
.content-wrap {
  max-width: 1240px; margin: 0 auto;
  padding: 64px 28px;
  display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start;
}
.content h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--dark);
  margin: 44px 0 14px;
  padding-top: 44px; border-top: 1px solid var(--border);
  letter-spacing: -.2px;
}
.content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.content p { color: #3d4750; font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.content ul { list-style: none; margin: 16px 0 20px; }
.content ul li {
  padding: 8px 0 8px 22px; position: relative;
  font-size: 15px; color: #3d4750;
  border-bottom: 1px solid var(--bg); line-height: 1.5;
}
.content ul li:last-child { border-bottom: none; }
.content ul li::before { content: '—'; position: absolute; left: 0; color: var(--steel-lt); font-size: 12px; top: 10px; }

/* Series tiles */
.series-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.series-tile {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 4px; padding: 16px;
  transition: border-color .15s, box-shadow .15s;
}
.series-tile:hover { border-color: var(--steel-mid); box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.series-id { font-size: 12px; font-weight: 700; color: var(--accent); margin-bottom: 4px; letter-spacing: .5px; }
.series-name { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.3; }

/* ── SIDEBAR ── */
.sidebar { position: sticky; top: 125px; }
.sidebar-cta {
  background: var(--dark); color: white;
  border-radius: 6px; padding: 24px; margin-bottom: 16px;
}
.sidebar-cta h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px; font-weight: 800; margin-bottom: 10px; line-height: 1.2;
}
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 18px; }
.sidebar-cta a {
  display: block; text-align: center;
  background: var(--accent); color: white;
  padding: 11px; border-radius: 4px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .15s;
}
.sidebar-cta a:hover { background: var(--accent-lt); }

.spec-box {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden; margin-bottom: 16px;
}
.spec-box-head {
  background: var(--bg); padding: 12px 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--steel-mid);
  border-bottom: 1px solid var(--border);
}
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 16px; border-bottom: 1px solid var(--bg); font-size: 14px;
}
.spec-row:last-child { border-bottom: none; }
.spec-k { color: var(--text-mid); }
.spec-v { font-weight: 700; color: var(--dark); text-align: right; }

.download-box { background: var(--bg-white); border: 1px solid var(--border); border-radius: 6px; padding: 20px; }
.download-box h4 { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--steel-mid); margin-bottom: 12px; }
.dl-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--bg);
  font-size: 14px; color: var(--text); text-decoration: none; cursor: pointer;
  transition: color .15s;
}
.dl-link:last-child { border-bottom: none; }
.dl-link:hover { color: var(--accent); }
.dl-icon { font-size: 16px; flex-shrink: 0; }
.dl-meta { font-size: 11px; color: var(--steel-lt); margin-top: 2px; }

/* ── CONTACT PAGE ── */
.contact-wrap {
  max-width: 1240px; margin: 0 auto;
  padding: 64px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.contact-info h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 14px;
}
.contact-info > p { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.contact-block {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; background: var(--bg-white); border: 1px solid var(--border);
  border-left: 3px solid var(--steel); border-radius: 4px; margin-bottom: 12px;
}
.contact-block-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-block h4 { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--steel-mid); margin-bottom: 4px; }
.contact-block p { font-size: 15px; color: var(--dark); font-weight: 600; }

.contact-form-wrap { background: var(--bg-white); border: 1px solid var(--border); border-radius: 6px; padding: 32px; }
.contact-form-wrap h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 22px;
}
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 10px 13px;
  border: 1px solid var(--border); border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif; font-size: 15px; color: var(--dark);
  background: var(--bg); transition: border-color .15s; outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--steel); background: white; }
.fg textarea { height: 100px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg-note { font-size: 12px; color: var(--steel-lt); margin-top: 10px; line-height: 1.5; }
.btn-submit {
  width: 100%; padding: 13px; font-size: 15px; font-weight: 700;
  background: var(--accent); color: white; border: none; border-radius: 4px;
  cursor: pointer; font-family: 'Source Sans Pro', sans-serif; transition: background .15s;
}
.btn-submit:hover { background: var(--accent-lt); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.fg-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.fg-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; cursor: pointer; }
.fg-check label { font-size: 13px; color: var(--text-mid); line-height: 1.5; cursor: pointer; }
.form-success {
  background: #f0fff4; border: 1px solid #48bb78; border-left: 3px solid #48bb78;
  padding: 12px 16px; border-radius: 4px; color: #276749;
  font-size: 15px; margin-top: 14px; line-height: 1.5;
}
.form-error {
  background: #fff5f5; border: 1px solid #fc8181; border-left: 3px solid var(--accent);
  padding: 12px 16px; border-radius: 4px; color: #9b2c2c;
  font-size: 15px; margin-top: 14px; line-height: 1.5;
}

/* ── SUPPORT GRID ── */
.support-grid {
  max-width: 1240px; margin: 0 auto;
  padding: 64px 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.support-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 6px; padding: 28px; }
.support-card-icon { font-size: 32px; margin-bottom: 14px; }
.support-card-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 8px;
}
.support-card-desc { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
.btn-sm {
  display: inline-block; padding: 8px 16px;
  font-size: 13px; font-weight: 700; border-radius: 4px;
  text-decoration: none; cursor: pointer; transition: all .15s;
  font-family: 'Source Sans Pro', sans-serif;
}
.btn-sm-outline { border: 1px solid var(--border); color: var(--steel); background: white; }
.btn-sm-outline:hover { border-color: var(--steel); color: var(--dark); }
.btn-sm-primary { background: var(--accent); color: white; border: none; }
.btn-sm-primary:hover { background: var(--accent-lt); }

/* ── BLOG LIST ── */
.blog-list {
  max-width: 1240px; margin: 0 auto;
  padding: 64px 28px;
  display: grid; grid-template-columns: 2fr 1fr; gap: 32px;
}
.blog-main-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.blog-main-img {
  height: 240px;
  background: linear-gradient(135deg, var(--dark), var(--steel));
  display: flex; align-items: center; justify-content: center; font-size: 60px;
}
.blog-main-body { padding: 28px 32px; }
.blog-main-body h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.3;
}
.blog-main-body p { font-size: 16px; color: var(--text-mid); line-height: 1.7; }
.blog-sidebar-posts { display: flex; flex-direction: column; gap: 14px; }
.blog-mini { background: var(--bg-white); border: 1px solid var(--border); border-radius: 6px; padding: 18px; }
.blog-mini:hover { border-color: var(--steel-lt); }
.blog-mini h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 6px;
}
.blog-mini p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* ── BLOG NEWS GRID (3 gleiche Karten) ── */
.blog-news-grid {
  max-width: 1240px; margin: 0 auto;
  padding: 64px 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-news-card {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column;
}
.blog-news-card:hover { border-color: var(--steel-lt); box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.blog-news-img { height: 210px; overflow: hidden; position: relative; background: var(--bg-mid); }
.blog-news-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-news-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-news-body h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; font-weight: 800; color: var(--dark); margin: 10px 0 10px; line-height: 1.4;
}
.blog-news-body p { font-size: 14px; color: var(--text-mid); line-height: 1.65; flex: 1; }
.blog-news-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent); background: rgba(204,15,21,.08);
  padding: 3px 8px; border-radius: 3px; margin-bottom: 4px;
}

/* ── DOWNLOADS ── */
.downloads-grid {
  max-width: 1240px; margin: 0 auto;
  padding: 56px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.dl-section { max-width: 1240px; margin: 0 auto; padding: 48px 28px 0; }
.dl-section:last-child { padding-bottom: 56px; }
.dl-section-head {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: var(--steel-mid); margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.dl-featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.dl-featured-card {
  background: var(--bg-white); border: 2px solid var(--border); border-radius: 8px;
  padding: 30px 26px; text-align: center;
  transition: border-color .2s, box-shadow .2s; text-decoration: none; display: block;
}
.dl-featured-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.dl-featured-icon { font-size: 36px; margin-bottom: 14px; line-height: 1; }
.dl-featured-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 6px; display: block;
}
.dl-featured-meta { font-size: 13px; color: var(--text-mid); margin-bottom: 18px; display: block; }
.dl-featured-btn {
  display: inline-block; padding: 9px 22px;
  background: var(--accent); color: #fff !important; border-radius: 4px;
  font-size: 13px; font-weight: 700; text-decoration: none;
}
.dl-featured-card:hover .dl-featured-btn { background: var(--accent-lt); }
.dl-secondary-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.dl-secondary-grid .spec-box { margin: 0; }

/* ── ÜBER UNS ── */
.ueber-grid {
  max-width: 1240px; margin: 0 auto;
  padding: 64px 28px;
  display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start;
}
.ueber-text h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 16px;
}
.ueber-text p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.facts-list { list-style: none; margin-top: 24px; }
.facts-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--text);
}
.facts-list li:last-child { border-bottom: none; }
.facts-list li strong { font-weight: 700; color: var(--dark); min-width: 60px; }
.ueber-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 5px;
  border-radius: 6px;
  overflow: hidden;
}
.ueber-photo-item { overflow: hidden; position: relative; cursor: zoom-in; }
.ueber-photo-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.ueber-photo-item:hover img { transform: scale(1.06); }
.ueber-photo-item::after {
  content: '⤢';
  position: absolute; top: 8px; right: 10px;
  font-size: 16px; color: rgba(255,255,255,.8);
  opacity: 0; transition: opacity .2s;
  pointer-events: none;
}
.ueber-photo-item:hover::after { opacity: 1; }

/* ── WARUM-HERSTELLER STRIP (Startseite) ── */
.warum-strip {
  background: #e8edf3;
  border-top: 1px solid #d4d9e2;
  border-bottom: 1px solid #d4d9e2;
  padding: 64px 0;
}
.warum-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.warum-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 16px;
}
.warum-text p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.warum-benefits { display: flex; flex-direction: column; gap: 18px; }
.warum-benefit { display: flex; align-items: flex-start; gap: 14px; }
.warum-benefit-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--dark); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: #4dd0e1; font-size: 15px; font-weight: 800; font-family: 'Open Sans', sans-serif;
}
.warum-benefit-body strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.warum-benefit-body span { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* ── LEGAL PAGES (Impressum, Datenschutz) ── */
.legal-hero { background: var(--dark); color: #fff; padding: 52px 28px 40px; }
.legal-hero-inner { max-width: 1240px; margin: 0 auto; }
.legal-hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 38px; font-weight: 800; color: #fff; margin: 12px 0 8px;
}
.legal-hero p { color: rgba(255,255,255,.55); font-size: 14px; }
.legal-wrap { max-width: 1240px; margin: 0 auto; padding: 56px 28px; }
.legal-content h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--dark);
  margin: 36px 0 12px; padding-top: 20px; border-top: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 20px; }
.legal-content ul li { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ── KATALOG-CTA BOX (prominent download) ── */
.katalog-cta {
  background: var(--dark);
  border-radius: 6px;
  padding: 22px 20px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.katalog-cta-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
}
.katalog-cta-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.katalog-cta-sub {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: -4px;
}
.katalog-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 4px;
  transition: background .15s;
}
.katalog-cta-btn:hover { background: var(--accent-lt); }
.katalog-cta-btn-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.katalog-cta-btn-text { line-height: 1.25; }
.katalog-cta-btn-text small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: rgba(255,255,255,.7);
  margin-top: 1px;
}

/* ── FOOTER ── */
footer { background: #161c20; color: rgba(255,255,255,.45); padding: 56px 28px 28px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text { color: rgba(255,255,255,.6); font-size: 24px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 12px; max-width: 260px; }
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,.4); text-decoration: none;
  font-size: 14px; transition: color .15s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── HERO CARD mit Bild/SVG ── */
.hero-card-thumb { height: 130px; overflow: hidden; border-radius: 4px; margin-bottom: 8px; }
.hero-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-thumb svg { width: 100%; height: 100%; display: block; }

/* ── ABOUT HERO MOSAIC ── */
.about-hero-mosaic {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-sketch {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

/* ── ZPAS PHOTO GALLERY ── */
.zpas-gallery-section {
  background: var(--dark);
  padding: 60px 0;
}
.zpas-gallery-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.zpas-gallery-header {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.zpas-gallery-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.zpas-gallery-sub { font-size: 14px; color: rgba(255,255,255,.4); }
.zpas-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 6px;
}
.zpas-gallery-item {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
.zpas-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.zpas-gallery-item:hover img { transform: scale(1.06); }
.zpas-gallery-item.tall  { grid-row: span 2; }
.zpas-gallery-item.wide  { grid-column: span 2; }
.zpas-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: rgba(255,255,255,.8);
  font-size: 11px;
  font-family: 'Source Sans Pro', sans-serif;
  opacity: 0;
  transition: opacity .2s;
}
.zpas-gallery-item:hover .zpas-gallery-caption { opacity: 1; }

/* ── HISTORY TIMELINE ── */
.zpas-history-section {
  background: #0d1d33;
  padding: 60px 0;
}
.zpas-history-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.zpas-history-lead { padding-top: 4px; }
.zpas-history-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.zpas-history-sub {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}
.zpas-timeline {
  position: relative;
  padding-left: 28px;
}
.zpas-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: rgba(77,208,225,.2);
}
.zpas-tl-item {
  position: relative;
  margin-bottom: 24px;
}
.zpas-tl-item::before {
  content: '';
  position: absolute;
  left: -33px; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(77,208,225,.5);
  border: 2px solid #0d1d33;
}
.zpas-tl-item.hl::before {
  background: var(--accent);
  width: 10px; height: 10px;
  left: -34px; top: 5px;
}
.zpas-tl-year {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #4dd0e1;
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.zpas-tl-item.hl .zpas-tl-year { color: var(--accent); }
.zpas-tl-text {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}

/* ── INTRO SECTION (Startseite) ── */
.intro-cols { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; margin-top: 24px; }
.intro-col-text p { color: #3d4750; font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.intro-col-links { display: flex; flex-direction: column; gap: 8px; }
.intro-link {
  display: block; padding: 11px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: 4px;
  font-size: 14px; font-weight: 600; color: var(--text);
  text-decoration: none; transition: background .15s;
}
.intro-link:hover { background: var(--bg-mid); color: var(--dark); }

/* ── SEO TEXT COLUMNS ── */
.seo-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 32px; }
.seo-cols h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px;
}
.seo-cols p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.seo-cols strong { color: var(--text); font-weight: 600; }

/* ── HERO WIDE INNER (for photo options) ── */
.prod-hero-inner--wide { grid-template-columns: 5fr 7fr; gap: 40px; }

/* ── HERO OPTION B: Diagonal Photo Split ── */
.hero-photo-split {
  position: relative;
  width: 100%;
  height: 310px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.hero-split-left,
.hero-split-right {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-split-left  { clip-path: polygon(0 0, 68% 0, 54% 100%, 0 100%); }
.hero-split-right {
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 46% 100%);
  background-position: right center;
}
.hero-split-tint {
  position: absolute; inset: 0;
  background: rgba(8,17,30,.52);
}
.hero-split-tint-r {
  background: linear-gradient(120deg, rgba(8,17,30,.72), rgba(25,12,12,.45));
}
.hero-split-blade {
  position: absolute;
  left: 53%; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: skewX(-8deg);
  box-shadow: 0 0 18px rgba(204,15,21,.95), 0 0 50px rgba(204,15,21,.35);
  z-index: 10;
}
.hero-split-badge {
  position: absolute;
  background: rgba(8,17,30,.92);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 8px 14px;
  z-index: 20;
  display: flex; flex-direction: column; gap: 1px;
  backdrop-filter: blur(4px);
}
.hero-split-badge-tl { top: 16px; left: 16px; border-color: var(--accent); }
.hero-split-badge-br { bottom: 16px; right: 16px; border-color: #4dd0e1; }
.hero-split-badge-bl { bottom: 16px; left: 16px; }
.hsb-val {
  font-size: 20px; font-weight: 800; color: #fff;
  font-family: 'Open Sans', sans-serif; line-height: 1;
}
.hero-split-badge-tl .hsb-val { color: var(--accent); }
.hero-split-badge-br .hsb-val { color: #4dd0e1; }
.hsb-lbl {
  font-size: 9px; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .08em; margin-top: 3px;
}

/* ── HERO OPTION C: Photo Mosaic ── */
.hero-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 310px;
  border-radius: 6px;
  overflow: hidden;
}
.mosaic-cell {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.mosaic-main { grid-column: 1; grid-row: 1 / 3; border-right: 3px solid var(--accent); }
.mosaic-a    { grid-column: 2; grid-row: 1; }
.mosaic-b    { grid-column: 3; grid-row: 1; }
.mosaic-c    { grid-column: 2; grid-row: 2; }
.mosaic-d    { grid-column: 3; grid-row: 2; }
.mosaic-tint {
  position: absolute; inset: 0;
  background: rgba(8,17,30,.52);
  transition: background .2s;
}
.mosaic-cell:hover .mosaic-tint { background: rgba(8,17,30,.3); }
.mosaic-label {
  position: absolute; bottom: 14px; left: 14px;
  color: #fff; font-weight: 800; font-size: 15px;
  font-family: 'Open Sans', sans-serif; line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,.6); z-index: 2;
}
.mosaic-label small {
  display: block; font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,.55); margin-top: 3px;
}
.mosaic-spec-chip {
  position: absolute; top: 8px; left: 8px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800;
  font-family: 'Open Sans', sans-serif;
  padding: 3px 8px; border-radius: 2px; z-index: 2;
  letter-spacing: .02em;
}

/* ── DEMO COMPARISON LABELS ── */
.demo-option-strip {
  background: #1a2028;
  padding: 14px 28px;
  display: flex; align-items: center; gap: 16px;
  border-top: 4px solid transparent;
}
.demo-option-strip--a { border-top-color: #4dd0e1; }
.demo-option-strip--b { border-top-color: var(--accent); }
.demo-option-strip--c { border-top-color: rgba(255,255,255,.2); }
.demo-option-num {
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 900;
  font-family: 'Open Sans', sans-serif;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.demo-option-title { font-weight: 800; font-size: 15px; font-family: 'Open Sans', sans-serif; color: #fff; }
.demo-option-tag {
  font-size: 11px; color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 2px 10px; border-radius: 3px;
  font-weight: 600; margin-left: 4px;
}
.demo-intro-bar {
  background: var(--dark); padding: 24px 28px;
  text-align: center; border-bottom: 1px solid rgba(255,255,255,.06);
}
.demo-intro-bar h2 { font-family: 'Open Sans', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.demo-intro-bar p { font-size: 14px; color: rgba(255,255,255,.45); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner, .prod-hero-inner, .prod-hero-inner--wide { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .prod-hero-visual { display: none; }
  .hero-photo-split, .hero-mosaic { display: none; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .ueber-grid { grid-template-columns: 1fr; }
  .intro-cols { grid-template-columns: 1fr; }
  .seo-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .intro-cols { grid-template-columns: 1fr; }
  .seo-cols { grid-template-columns: 1fr; }
  .stats-inner, .spec-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .support-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-list { grid-template-columns: 1fr; }
  .blog-news-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
  .dl-featured-grid { grid-template-columns: 1fr; }
  .dl-secondary-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .series-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .blog-news-grid { grid-template-columns: 1fr 1fr; }
  .dl-featured-grid { grid-template-columns: 1fr 1fr; }
}

/* ── DATA CENTER PAGE ── */
.dc-intro-strip {
  background: var(--dark);
  padding: 52px 28px;
}
.dc-intro-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.dc-intro-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 30px 26px 26px;
}
.dc-intro-card.dc-highlight {
  background: var(--accent);
  border-color: var(--accent);
}
.dc-intro-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
}
.dc-highlight .dc-intro-tag { color: rgba(255,255,255,.75); }
.dc-intro-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.dc-intro-card p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 0;
}
.dc-highlight p { color: rgba(255,255,255,.88); }
.dc-intro-specs {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.9;
}
.dc-highlight .dc-intro-specs { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.25); }
.dc-intro-specs strong { color: rgba(255,255,255,.75); font-weight: 700; }
.dc-highlight .dc-intro-specs strong { color: #fff; }

/* Process steps */
.dc-process {
  display: flex;
  margin: 28px 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  counter-reset: dcstep;
}
.dc-step {
  flex: 1;
  padding: 18px 14px 18px 42px;
  position: relative;
  border-right: 1px solid var(--border);
  background: var(--bg);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  counter-increment: dcstep;
}
.dc-step:last-child { border-right: none; }
.dc-step::before {
  content: counter(dcstep);
  position: absolute;
  left: 13px;
  top: 19px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
}
.dc-step strong {
  display: block;
  color: var(--dark);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

/* KI highlight box */
.dc-ki-box {
  background: var(--bg);
  border: 2px solid var(--dark);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 22px 24px;
  margin: 24px 0;
}
.dc-ki-box h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.dc-ki-box ul { margin-top: 10px; }

/* Responsive data center */
@media (max-width: 1024px) {
  .dc-intro-inner { grid-template-columns: 1fr 1fr; }
  .dc-intro-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .dc-intro-inner { grid-template-columns: 1fr; }
  .dc-intro-card:last-child { grid-column: auto; }
  .dc-process { flex-direction: column; border-radius: 6px; }
  .dc-step { border-right: none; border-bottom: 1px solid var(--border); }
  .dc-step:last-child { border-bottom: none; }
}

/* ── OUTDOOR GALLERY ── */
.outdoor-gallery {
  background: #fff;
  border-top: 1px solid var(--border);
}
.og-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 28px 80px;
}
.og-wrap > h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.og-subtitle {
  font-size: 15px;
  color: var(--steel-mid);
  margin-bottom: 28px;
}

/* Featured: main large + two stacked right */
.og-featured {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
  margin-bottom: 10px;
}
.og-featured .og-main {
  grid-row: 1 / 3;
}
.og-col2 {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

/* Item base */
.og-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #f0f0f0;
  cursor: zoom-in;
}
.og-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.og-item:hover img {
  transform: scale(1.05);
}
.og-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  pointer-events: none;
}
.og-item:hover::after {
  background: rgba(0,0,0,0.12);
}
.og-item .og-zoom {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
  pointer-events: none;
}
.og-item .og-zoom svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}
.og-item:hover .og-zoom {
  opacity: 1;
}

/* 4-column product/detail grid */
.og-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}
.og-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.og-grid-4 .og-item {
  height: 200px;
}
.og-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.og-grid-3 .og-item {
  height: 220px;
}

/* Section divider for references */
.og-ref-head {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--steel-mid);
  padding: 28px 0 14px;
  border-top: 2px solid var(--border);
  margin-top: 18px;
}

/* ── Lightbox ── */
.zpas-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0,0,0,.9);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.zpas-lb.is-open {
  display: flex;
}
.zpas-lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.zpas-lb-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,.7);
  display: block;
}
.zpas-lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 100001;
}
.zpas-lb-close:hover { background: rgba(255,255,255,.28); }
.zpas-lb-prev,
.zpas-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.10);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 100001;
}
.zpas-lb-prev:hover,
.zpas-lb-next:hover { background: rgba(255,255,255,.25); }
.zpas-lb-prev { left: 16px; }
.zpas-lb-next { right: 16px; }
.zpas-lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-family: 'Source Sans Pro', sans-serif;
  z-index: 100001;
}

/* ── PRODUCT CARD GRID (Server / Rack overview) ── */
.prod-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0 8px;
}
.prod-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.prod-card:hover { border-color: #b8b8b8; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.prod-card-img {
  height: 150px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.prod-card-img img {
  max-width: 85%;
  max-height: 130px;
  object-fit: contain;
  display: block;
}
.prod-card-body { padding: 14px 16px 16px; }
.prod-card-series {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 3px;
}
.prod-card-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 6px;
}
.prod-card-spec {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .prod-card-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .prod-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .prod-card-grid { grid-template-columns: 1fr 1fr; }
}

/* ── BRANCHEN STRIP (Titelseite) ── */
.branchen-strip {
  background: #1e2428;
  padding: 40px 28px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.branchen-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.branchen-eyebrow {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.28);
  margin-bottom: 16px;
}
.branchen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.branchen-tag {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
.branchen-tag:hover { background: rgba(255,255,255,.09); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.2); }
.branchen-tag.bt-hot { background: rgba(204,15,21,.18); border-color: rgba(204,15,21,.35); color: rgba(255,255,255,.85); }

/* ── MATERIAL TILES ── */
.mat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.mat-tile {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--dark);
  border-radius: 0 0 6px 6px;
  padding: 24px 22px 22px;
}
.mat-tile.mt-accent { border-top-color: var(--accent); }
.mat-tile-icon {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--steel-mid);
  margin-bottom: 10px;
}
.mat-tile h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.mat-tile p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}
.mat-tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}
.mat-tile-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--steel);
}
@media (max-width: 768px) {
  .mat-grid { grid-template-columns: 1fr; }
  .branchen-tag { font-size: 12px; padding: 6px 12px; }
}

/* Product category intro strip (3-col, dark) – reused from dc */
.rack-family-strip {
  background: #1e2428;
  padding: 44px 28px;
}
.rack-family-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.rack-family-card {
  padding: 28px 26px 24px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
}
.rack-family-card.rfh { background: var(--accent); border-color: var(--accent); }
.rack-family-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
}
.rack-family-card.rfh .rack-family-label { color: rgba(255,255,255,.7); }
.rack-family-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.rack-family-card p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}
.rack-family-card.rfh p { color: rgba(255,255,255,.85); }
.rack-family-series {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.rack-family-card.rfh .rack-family-series { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.25); }
@media (max-width: 1024px) {
  .rack-family-inner { grid-template-columns: 1fr 1fr; }
  .rack-family-inner .rack-family-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .rack-family-inner { grid-template-columns: 1fr; }
  .rack-family-inner .rack-family-card:last-child { grid-column: auto; }
}

/* Gallery responsive */
@media (max-width: 1024px) {
  .og-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .og-grid-4 .og-item { height: 180px; }
  .og-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .og-grid-3 .og-item { height: 200px; }
}
@media (max-width: 768px) {
  .og-featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .og-featured .og-main {
    grid-row: auto;
    height: 250px;
  }
  .og-col2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    height: 160px;
  }
  .og-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .og-grid-4 .og-item { height: 150px; }
  .og-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .og-grid-3 .og-item { height: 150px; }
  .zpas-lb-prev { left: 6px; }
  .zpas-lb-next { right: 6px; }
}

/* ── MOBILE NAVIGATION ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 1100;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
header.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
header.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-burger { display: flex; }

  header nav {
    display: none;
    position: fixed;
    top: 109px; left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 32px;
    z-index: 1000;
    overflow-y: auto;
    border-top: 2px solid var(--accent);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
  }
  header.nav-open nav { display: flex; }

  nav .nav-item {
    display: block !important;
    border-bottom: 1px solid var(--border);
  }
  nav .nav-item > a.nav-link,
  nav .nav-item > span.nav-link {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    pointer-events: auto;
  }
  nav .nav-item > a.nav-link-kfg { color: var(--accent); }
  nav .nav-item .nav-caret { display: none; }

  nav .dropdown {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: none;
    padding: 0 0 12px 12px;
    min-width: 0;
  }
  nav .dropdown .dropdown-head { display: none; }
  nav .dropdown a {
    font-size: 14px;
    padding: 9px 0;
    color: var(--steel-mid);
    border: none;
    font-weight: 400;
  }
  nav .dropdown a:hover { background: none; color: var(--accent); }

  nav .nav-right {
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    margin-top: auto;
    margin-left: 0;
    width: 100%;
  }
  nav .nav-right a { text-align: center; display: block; }
  nav .btn-ghost { border: 2px solid var(--border); }
}

/* ── VERDRAHTUNG & BESTÜCKUNG SECTION ── */
.wiring-section {
  background: var(--dark);
  padding: 72px 28px;
}
.wiring-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.wiring-header {
  text-align: center;
  margin-bottom: 52px;
}
.wiring-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.wiring-header h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.wiring-header p {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.wiring-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.wiring-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 36px 32px;
  position: relative;
  transition: background .2s;
}
.wiring-step:hover { background: rgba(255,255,255,.07); }
.wiring-step--accent {
  background: var(--accent);
  border-color: var(--accent);
}
.wiring-step--accent:hover { background: #c0000d; }
.wiring-step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  color: rgba(255,255,255,.25);
  margin-bottom: 16px;
}
.wiring-step--accent .wiring-step-num { color: rgba(255,255,255,.5); }
.wiring-step-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.wiring-step-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.wiring-step-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.wiring-step--accent .wiring-step-desc { color: rgba(255,255,255,.85); }

@media (max-width: 1024px) {
  .wiring-steps { grid-template-columns: 1fr; gap: 2px; }
  .wiring-header h2 { font-size: 24px; }
}

/* ── Warum ZPAS (index.html) ────────────────────────────── */
.warum-section { background: var(--bg); }
.warum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.warum-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  padding: 28px 24px;
  transition: border-top-color .2s;
}
.warum-card:hover { border-top-color: var(--accent); }
.warum-card--accent {
  background: var(--dark);
  border-color: var(--dark);
  border-top-color: var(--accent);
}
.warum-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.warum-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.warum-card--accent .warum-title { color: #fff; }
.warum-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}
.warum-card--accent .warum-desc { color: rgba(255,255,255,.5); }
@media (max-width: 900px) { .warum-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .warum-grid { grid-template-columns: 1fr; } }

/* ── Kunden-Logos-Strip (index.html) ────────────────────── */
.kunden-strip {
  background: rgba(26,26,26,.97);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 28px;
}
.kunden-strip-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.kunden-strip-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.kunden-logos {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  flex: 1;
}
.kunden-logo {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  padding: 10px 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  flex: 1;
  text-align: center;
}
@media (max-width: 900px) {
  .kunden-logos { flex-wrap: wrap; }
  .kunden-logo { flex: 0 0 auto; }
}

/* ── Ansprechpartner-Karte (kontakt.html) ───────────────── */
.kontakt-person-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  padding: 20px;
  margin-bottom: 24px;
}
.kontakt-person-avatar {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kontakt-person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.kontakt-person-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.kontakt-person-role {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.kontakt-person-tel {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.kontakt-person-tel:hover { text-decoration: underline; }

/* ── Über uns: Zertifizierungen ─────────────────────────── */
.zpas-certs-section {
  background: var(--dark);
  padding: 72px 28px;
}
.zpas-certs-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.zpas-certs-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.zpas-certs-section h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.zpas-certs-intro {
  color: rgba(255,255,255,.55);
  max-width: 680px;
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.7;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 24px;
}
.cert-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 20px 20px 18px;
  transition: background .2s;
}
.cert-item:hover { background: rgba(255,255,255,.07); }
.cert-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.cert-desc {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}
.cert-note {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
}
.cert-note a { color: rgba(255,255,255,.55); text-decoration: underline; }
@media (max-width: 900px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cert-grid { grid-template-columns: 1fr 1fr; } }

/* ── Über uns: Referenzen & Projekte ────────────────────── */
.zpas-refs-section {
  background: var(--bg-white);
  padding: 72px 28px;
}
.zpas-refs-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.zpas-refs-section h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.zpas-refs-intro {
  color: var(--text-mid);
  max-width: 700px;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
}
.ref-logos {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 48px;
}
.ref-logo-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .ref-logos { flex-wrap: wrap; }
  .ref-logo-item { flex: 0 0 auto; }
}
.zpas-refs-section h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.project-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  padding: 20px 20px 18px;
}
.project-client {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.project-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.project-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}
@media (max-width: 768px) { .projects-grid { grid-template-columns: 1fr; } }

/* ── Über uns: Unternehmenswerte ────────────────────────── */
.zpas-values-section {
  background: var(--bg);
  padding: 72px 28px;
  border-top: 1px solid var(--border);
}
.zpas-values-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.zpas-values-section h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.zpas-values-intro {
  color: var(--text-mid);
  max-width: 700px;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 24px 20px;
}
.value-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.value-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}
@media (max-width: 1024px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ── Baureihen-Detail-Karten (schaltschraenke.html) ──────── */
.series-detail {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  padding: 28px;
  margin-bottom: 20px;
}
.series-detail-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.series-detail-id {
  background: var(--dark);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.series-detail-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}
.series-detail-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 16px;
}
.series-spec-grid {
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}
.ssrow {
  display: flex;
  border-bottom: 1px solid #f3f4f6;
  font-size: 13px;
}
.ssrow:last-child { border-bottom: none; }
.ssk {
  width: 160px;
  min-width: 160px;
  padding: 7px 12px;
  background: #f9fafb;
  color: #6b7280;
  font-weight: 600;
  border-right: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.ssv {
  padding: 7px 12px;
  color: #111827;
  flex: 1;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .series-detail { padding: 20px 16px; }
  .series-detail-head { gap: 10px; }
  .series-detail-title { font-size: 15px; }
  .ssrow { flex-direction: column; }
  .ssk { width: 100%; min-width: unset; border-right: none; border-bottom: 1px solid #e5e7eb; padding: 6px 12px; }
  .ssv { padding: 6px 12px; }
}

/* ── SCHALTSCHRANK MOSAIC GALLERY ── */
.ss-gallery {
  background: #0b1624;
  padding: 72px 28px 80px;
  border-top: none;
}
.ss-gallery-inner { max-width: 1240px; margin: 0 auto; }
.ss-gallery-hd { margin-bottom: 36px; }
.ss-gallery-hd .hero-eyebrow { margin-bottom: 10px; }
.ss-gallery-hd h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.4px;
}
.ss-gallery-hd p { color: rgba(255,255,255,.45); font-size: 15px; margin: 0; }

/* Foto-Galerie – Schaltschränke (3-spaltig, kleine Kacheln wie ueber-uns) */
.sch-photo-section {
  background: #f7f8fa;
  border-top: 1px solid #e8edf3;
  padding: 56px 0 64px;
}
.sch-photo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.sch-photo-title {
  margin: 4px 0 24px;
  font-size: 1.55rem;
}
.sch-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 185px;
  gap: 5px;
  border-radius: 6px;
  overflow: hidden;
}



.ss-gitem {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: #0f1e30;
}
.ss-gitem img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .48s cubic-bezier(.25,.46,.45,.94);
}
.ss-gitem:hover img { transform: scale(1.07); }

/* Dark gradient overlay on hover */
.ss-gitem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.08) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .35s;
  z-index: 1;
  pointer-events: none;
}
.ss-gitem:hover::before { opacity: 1; }

/* Zoom icon */
.ss-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s, background .2s;
  z-index: 3;
  pointer-events: none;
}
.ss-gitem:hover .ss-zoom-btn { opacity: 1; }
.ss-gitem:hover .ss-zoom-btn:hover { background: rgba(255,255,255,.28); }
.ss-zoom-btn svg {
  width: 18px; height: 18px;
  stroke: #fff; stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
}

/* Caption label */
.ss-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.ss-gitem:hover .ss-caption { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 520px) {
  .sch-photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
}

/* ── FAQ PAGE ── */
.faq-hero {
  background: var(--dark);
  padding: 64px 28px 72px;
}
.faq-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.faq-hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
}
.faq-hero h1 em { color: var(--accent); font-style: normal; }
.faq-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-layout {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 52px;
  align-items: start;
}

.faq-body {
  min-width: 0;
}

.faq-sidebar {
  position: sticky;
  top: 96px;
}

.faq-sidebar-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 20px;
}

.sidebar-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}

.sidebar-eyebrow {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--steel-lt);
  margin-bottom: 4px;
}

.sidebar-heading {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.sidebar-articles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-article {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-article-title {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 7px;
}

.sidebar-article-title:hover { color: var(--accent); }

.sidebar-article-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0 0 8px;
}

.sidebar-product-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.sidebar-product-link:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
    padding: 40px 20px 60px;
    gap: 32px;
  }
  .faq-sidebar {
    position: static;
  }
}

.faq-category {
  margin-bottom: 56px;
}
.faq-category-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 6px;
}
.faq-category h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--bg-white);
  transition: border-color .15s;
}
.faq-item:hover { border-color: #b8b8b8; }
.faq-item[open] { border-color: var(--dark); }

.faq-item summary {
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  position: relative;
  user-select: none;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--steel-lt);
  line-height: 1;
  transition: transform .2s, color .15s;
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--accent);
}

.faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--dark); font-weight: 600; }
.faq-answer ul {
  margin: 8px 0 10px 18px;
}
.faq-answer ul li { margin-bottom: 5px; }
.faq-answer a { color: var(--accent); text-decoration: none; font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

.faq-cta-strip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 24px 28px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-cta-strip p {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0;
}
.faq-cta-strip strong { color: var(--dark); display: block; font-size: 17px; margin-bottom: 4px; }

.faq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
}
.faq-table thead th {
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: .04em;
}
.faq-table td {
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-mid);
}
.faq-table td:first-child {
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  width: 44px;
  background: var(--bg);
}
.faq-table tr:last-child td { border-bottom: none; }
.faq-table tr:hover td { background: #f5f7f9; }
.faq-table tr:hover td:first-child { background: #eef0f3; }

.ral-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}
.ral-swatch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark);
}
.ral-dot {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,.12);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .faq-hero h1 { font-size: 28px; }
  .faq-cta-strip { flex-direction: column; align-items: flex-start; }
  .faq-item summary { padding-right: 44px; font-size: 15px; }
  .faq-table { font-size: 13px; }
  .faq-table td, .faq-table thead th { padding: 7px 10px; }
}

/* ── PRODUCT PAGE FAQ BLOCK ── */
.prod-faq-section {
  border-top: 2px solid var(--border);
  margin-top: 48px;
  padding-top: 32px;
}
.prod-faq-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 6px;
}
.prod-faq-section > h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}
.prod-faq-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.prod-faq-more:hover { text-decoration: underline; }

/* ── RATGEBER SIDEBAR WIDGET ── */
.ratgeber-widget {
  background: #f0f7ff;
  border: 1px solid #c8dff7;
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 20px;
  margin-top: 20px;
}
.ratgeber-widget-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 6px;
}
.ratgeber-widget h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ratgeber-widget p {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.6;
}
.ratgeber-widget a.ratgeber-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.ratgeber-widget a.ratgeber-link:hover { text-decoration: underline; }

/* ── RATGEBER ARTICLE PAGE ── */
.ratgeber-hero {
  background: var(--dark);
  padding: 56px 28px 64px;
}
.ratgeber-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}
.ratgeber-hero .breadcrumb { margin-bottom: 16px; }
.ratgeber-hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
}
.ratgeber-hero h1 em { color: var(--accent); font-style: normal; }
.ratgeber-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 600px;
}
.ratgeber-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 28px 80px;
}
.ratgeber-body h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.ratgeber-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 10px;
}
.ratgeber-body p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.ratgeber-body ul { margin: 10px 0 16px 20px; }
.ratgeber-body ul li { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }
.ratgeber-body strong { color: var(--dark); }
.ratgeber-body a { color: var(--accent); font-weight: 600; text-decoration: none; }
.ratgeber-body a:hover { text-decoration: underline; }
.ratgeber-infobox {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.ratgeber-infobox p { margin-bottom: 0; font-size: 15px; }
.ratgeber-body .ratgeber-cta {
  background: var(--dark);
  border-radius: 8px;
  padding: 32px 36px;
  margin-top: 48px;
  text-align: center;
}
.ratgeber-body .ratgeber-cta h3 { font-family: 'Open Sans', sans-serif; font-size: 20px; color: #fff; margin-bottom: 10px; }
.ratgeber-body .ratgeber-cta p { color: rgba(255,255,255,.55); margin-bottom: 20px; }
.ratgeber-body .ratgeber-cta a.btn-cta { color: #fff; }
.ratgeber-body .ratgeber-cta a.btn-ghost { color: #fff; }
@media (max-width: 768px) {
  .ratgeber-hero h1 { font-size: 26px; }
  .ratgeber-body { padding: 40px 20px 60px; }
}
