/* ============================================================
   Elektro Lehmann — Multi-Page Demo
   Designsystem: Plus Jakarta Sans + Inter + JetBrains Mono
   Palette: Marineblau · Sonnen-Gelb · Frische-Grün · kühles Weiß
   ============================================================ */

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

:root {
  /* Hintergrund-Töne: bewusst kühl-weiß, kein Beige-Stich */
  --paper: #f5f7fa;
  --paper-soft: #ebeff5;
  --paper-deep: #dfe5ee;
  --white: #ffffff;

  /* Tinten-Töne: Marineblau-Hierarchie */
  --ink: #0d2240;
  --ink-soft: #2a3f5f;
  --ink-mute: #6b7d96;

  /* Akzent-Farben — wie Schaltschrank-Codes */
  --energy: #f5b800;       /* PV / Spannung / Highlight */
  --energy-deep: #c89400;
  --pv: #3a8f5a;           /* Nachhaltigkeit / Status grün */
  --pv-deep: #2a6d44;
  --steel: #6b7785;        /* Neutral-Akzent */
  --alert: #c8262e;        /* Notdienst */

  /* Linien */
  --rule: #c5cbd4;
  --rule-strong: #a6aebb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.mono { font-family: 'JetBrains Mono', monospace; font-weight: 500; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   Header / Navigation (auf jeder Seite identisch)
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 250, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--ink);
  color: var(--energy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  right: -3px; bottom: -3px;
  width: 10px; height: 10px;
  background: var(--energy);
  border-radius: 2px;
}
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  border-bottom-color: var(--energy);
}
.nav-emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--alert);
  color: var(--white) !important;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.nav-emergency:hover {
  background: #951e24;
  color: var(--white) !important;
  border-bottom-color: transparent;
}
.nav-emergency .dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================================
   Sektionen
   ============================================================ */
section { padding: 100px 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin: 0 auto 64px; text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--energy-deep);
  margin-bottom: 24px;
  font-weight: 500;
}
.section-tag::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--energy);
}
.section-head.center .section-tag::after {
  content: '';
  width: 28px; height: 2px;
  background: var(--energy);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 22px;
}
.section-title em {
  color: var(--energy-deep);
  font-style: normal;
}
.section-title .pv-accent {
  color: var(--pv-deep);
  font-style: normal;
}
.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 620px;
}
.section-head.center .section-lead { margin: 0 auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 16px 26px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--energy-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  padding: 16px 26px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--ink);
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-energy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--energy);
  color: var(--ink);
  padding: 16px 26px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-energy:hover { background: var(--energy-deep); transform: translateY(-1px); }

/* ============================================================
   Page Hero (für Unterseiten)
   ============================================================ */
.page-hero {
  padding: 130px 0 80px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}
.page-hero h1 em { color: var(--energy-deep); font-style: normal; }
.page-hero h1 .pv-accent { color: var(--pv-deep); font-style: normal; }
.page-hero-lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.7;
}
.page-hero-breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.page-hero-breadcrumb a {
  color: var(--ink-soft);
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: var(--energy-deep); }

/* ============================================================
   Trust-Strip
   ============================================================ */
.trust-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 0;
  border-top: 4px solid var(--energy);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-cell {
  text-align: center;
  border-right: 1px solid rgba(245, 247, 250, 0.15);
  padding: 0 16px;
}
.trust-cell:last-child { border-right: none; }
.trust-cell strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--energy);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.trust-cell span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 247, 250, 0.7);
}

/* ============================================================
   Leistungs-Cards
   ============================================================ */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.leistung-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.leistung-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.leistung-card.energy::before { background: var(--energy); }
.leistung-card.pv::before { background: var(--pv); }
.leistung-card.steel::before { background: var(--steel); }
.leistung-card.alert::before { background: var(--alert); }
.leistung-card.ink::before { background: var(--ink); }

.leistung-card:hover {
  transform: translateY(-4px);
  border-color: var(--rule-strong);
  box-shadow: 0 14px 36px rgba(13, 34, 64, 0.08);
}
.leistung-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  font-weight: 500;
}
.leistung-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}
.leistung-card .lead {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 22px;
  line-height: 1.65;
  flex: 1;
}
.leistung-list {
  list-style: none;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.leistung-list li {
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: center;
}
.leistung-list li::before {
  content: '+';
  color: var(--energy-deep);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

/* ============================================================
   Badge / Tag-Pills (für Normen)
   ============================================================ */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  background: var(--paper);
  color: var(--ink-soft);
  padding: 4px 9px;
  border-radius: 4px;
  border: 1px solid var(--rule);
  letter-spacing: 0.04em;
}
.badge.energy { background: #fff8e6; color: var(--energy-deep); border-color: #f5d97a; }
.badge.pv { background: #e8f4ec; color: var(--pv-deep); border-color: #94c4a4; }

/* ============================================================
   Projekt-Cards (Referenzen)
   ============================================================ */
.projekt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.projekt-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.projekt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(13, 34, 64, 0.10);
}
.projekt-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-deep);
}
.projekt-body { padding: 22px 24px; }
.projekt-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--energy-deep);
  margin-bottom: 12px;
  font-weight: 500;
}
.projekt-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.projekt-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.projekt-specs {
  list-style: none;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}
.projekt-specs li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.projekt-specs li span:first-child { color: var(--ink-mute); }
.projekt-specs li span:last-child { color: var(--ink); font-weight: 500; }

.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  background: var(--white);
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-pill.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.filter-pill:hover { border-color: var(--ink); }

/* ============================================================
   Stelle / Karriere-Card
   ============================================================ */
.stelle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stelle-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: border-color 0.2s, transform 0.2s;
}
.stelle-card:hover { border-color: var(--ink); transform: translateX(4px); }
.stelle-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 600;
}
.stelle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.stelle-meta span { display: flex; align-items: center; gap: 6px; }
.stelle-meta span::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--energy);
  border-radius: 50%;
}
.stelle-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.stelle-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: var(--pv);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.stelle-status.initiativ { background: var(--steel); }

/* ============================================================
   Formulare
   ============================================================ */
form {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
form h3 {
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 600;
}
form .form-intro {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form input,
form select,
form textarea {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  border-radius: 8px;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--energy);
  background: var(--white);
}
form textarea { min-height: 110px; resize: vertical; }
form label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  display: block;
}
form .form-group { display: flex; flex-direction: column; gap: 6px; }
.form-file-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.form-consent {
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.6;
}
.form-consent a { color: var(--energy-deep); border-bottom: 1px solid var(--rule); }

/* ============================================================
   Info-Boxen / Kontakt-Block / Notdienst-Banner
   ============================================================ */
.info-block {
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.info-block h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 600;
}
.info-block p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin-bottom: 8px; }
.info-block strong { color: var(--ink); font-weight: 500; }
.info-block a {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.info-block a:hover { color: var(--energy-deep); border-color: var(--energy); }
.info-block-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--energy-deep);
  margin-bottom: 8px;
  font-weight: 500;
}

.notdienst-banner {
  background: var(--alert);
  color: var(--white);
  padding: 36px 40px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.notdienst-banner h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 600;
}
.notdienst-banner p { color: rgba(255,255,255,0.88); font-size: 15px; line-height: 1.6; }
.notdienst-phone {
  text-align: right;
}
.notdienst-phone a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.notdienst-phone small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
}

/* ============================================================
   Pillar — PV / Wallbox / Smart Home Highlight
   ============================================================ */
.themen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.themen-card {
  position: relative;
  padding: 36px 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.themen-card .themen-icon {
  width: 48px; height: 48px;
  background: var(--paper);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--rule);
}
.themen-card .themen-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke-width: 1.6;
}
.themen-card.energy .themen-icon svg { stroke: var(--energy-deep); }
.themen-card.pv .themen-icon svg { stroke: var(--pv-deep); }
.themen-card.steel .themen-icon svg { stroke: var(--ink); }
.themen-card h3 { font-size: 22px; margin-bottom: 12px; font-weight: 600; }
.themen-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.themen-card .themen-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s, color 0.25s, border-color 0.25s;
}
.themen-card .themen-link:hover { gap: 14px; color: var(--energy-deep); border-color: var(--energy); }

/* ============================================================
   Team / Personen
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.person {
  text-align: left;
}
.person-image {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-deep);
  border-radius: 10px;
  margin-bottom: 16px;
}
.person h4 { font-size: 18px; margin-bottom: 4px; font-weight: 600; }
.person .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--energy-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: var(--energy-deep);
  font-weight: 500;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 760px;
}

/* ============================================================
   Footer (auf jeder Seite identisch)
   ============================================================ */
footer {
  background: var(--ink);
  color: rgba(245, 247, 250, 0.65);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand .logo-text { color: var(--paper); }
.footer-brand .logo-text small { color: rgba(245, 247, 250, 0.45); }
.footer-brand p {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 13px; }
.footer-col a { color: rgba(245, 247, 250, 0.65); transition: color 0.2s; }
.footer-col a:hover { color: var(--energy); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(245, 247, 250, 0.10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: rgba(245, 247, 250, 0.45);
}
.footer-bottom a { color: rgba(245, 247, 250, 0.65); }
.footer-bottom a:hover { color: var(--energy); }

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 980px) {
  .container, .container-narrow { padding: 0 22px; }
  .nav { padding: 12px 22px; gap: 14px; }
  .nav-links a:not(.nav-emergency) { display: none; }
  .nav-emergency span.label { display: none; }
  section { padding: 70px 0; }
  .page-hero { padding: 100px 0 60px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-cell { border-right: none; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .projekt-grid { grid-template-columns: 1fr; }
  .themen-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stelle-card { grid-template-columns: 1fr; gap: 14px; }
  .notdienst-banner { grid-template-columns: 1fr; text-align: center; }
  .notdienst-phone { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  header { display: none; }
  .page-hero { padding-top: 30px; }
  section { padding: 50px 0; page-break-inside: avoid; }
  .leistung-card, .projekt-card, .stelle-card, .themen-card, form, .info-block, .notdienst-banner { page-break-inside: avoid; }
  .nav-emergency, .btn-primary, .btn-ghost, .btn-energy { display: none; }
  a { color: inherit; text-decoration: none; }
}
