/* Sielhorst GmbH – Entwurf 4: Klassisch mit Teal-Hero-Band */

:root {
  --teal:      #00566b;
  --teal-deep: #003c4d;
  --ink:       #1c2327;
  --body:      #4b5563;
  --line:      #e4e7ea;
  --band:      #f6f7f8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--body);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { color: var(--ink); font-weight: 600; line-height: 1.25; }

a { color: var(--teal); text-decoration: none; }

/* ── Header ─────────────────────────────────────────── */

header { background: #fff; border-bottom: 1px solid var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img { height: 38px; width: auto; display: block; }

nav { display: flex; gap: 26px; }

nav a { color: var(--ink); font-size: 15px; white-space: nowrap; }

nav a:hover { color: var(--teal); }

/* ── Hero-Band ──────────────────────────────────────── */

.hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #cfe0e5;
  padding: 76px 0 84px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 40px);
  max-width: 620px;
  margin-bottom: 14px;
}

.hero p { max-width: 560px; font-size: 17px; margin-bottom: 36px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 30px;
  border-radius: 6px;
  transition: transform .15s ease, background .15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn strong { font-size: 17px; }

.btn span { font-size: 13.5px; }

.btn-primary { background: #fff; }
.btn-primary strong { color: var(--teal-deep); }
.btn-primary span { color: var(--body); }
.btn-primary:hover { background: #eef4f6; }

.btn-outline { border: 1.5px solid rgba(255, 255, 255, .65); }
.btn-outline strong { color: #fff; }
.btn-outline span { color: #cfe0e5; }
.btn-outline:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }

/* ── Leistungen ─────────────────────────────────────── */

.services { padding: 60px 0; }

.section-title { text-align: center; font-size: 25px; margin-bottom: 36px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service {
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: 6px;
  padding: 20px 18px;
}

.service h3 { font-size: 16px; margin-bottom: 6px; }

.service p { font-size: 14px; }

/* ── Über uns ───────────────────────────────────────── */

.about { background: var(--band); padding: 56px 0; }

.about .container { max-width: 720px; text-align: center; }

.about h2 { font-size: 24px; margin-bottom: 16px; }

.about p { margin-bottom: 14px; }

.about .more { font-weight: 600; }

/* ── Footer ─────────────────────────────────────────── */

footer { border-top: 1px solid var(--line); padding: 44px 0 36px; font-size: 14px; }

.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }

.footer-grid h3 { font-size: 14px; margin-bottom: 10px; }

.footer-grid a { color: var(--body); display: block; padding: 2px 0; }

.footer-grid a:hover { color: var(--teal); }

address { font-style: normal; }

.footer-note {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #9aa1a8;
  font-size: 13px;
  text-align: center;
}

/* ── Mobil ──────────────────────────────────────────── */

@media (max-width: 720px) {
  .nav-inner { height: 58px; }
  .logo img { height: 25px; }
  nav { gap: 14px; }
  nav a { font-size: 13px; }
  .hero { padding: 52px 0 60px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Aktiver Nav-Link ───────────────────────────────── */

nav a.active { color: var(--teal); font-weight: 600; }

/* ── Unterseiten ────────────────────────────────────── */

.page-head {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  padding: 48px 0 52px;
}

.page-head h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 8px;
}

.page-head p { color: #cfe0e5; max-width: 620px; font-size: 16.5px; }

.content { padding: 56px 0 72px; }

.container.narrow { max-width: 780px; }

/* Fließtext */

.prose h2 { font-size: 21px; margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin: 24px 0 8px; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 22px; }
.prose li { margin-bottom: 6px; }
.prose .footnote {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

/* Kennzahlen (Über uns) */

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
  text-align: center;
}

.fact {
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: 6px;
  padding: 22px 12px;
}

.fact-num { font-size: 30px; font-weight: 600; color: var(--teal); }

.fact-label { font-size: 14px; margin-top: 4px; }

/* ── Karriere-Seite ─────────────────────────────────── */

/* Abschnitte mit gleichmäßigem Rhythmus */

.section-block + .section-block { margin-top: 64px; }

.block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.block-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0, 86, 107, .08);
  border-radius: 20px;
  padding: 2px 10px;
  line-height: 1.5;
}

/* Was wir bieten */

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px;
  background: var(--band);
}

.benefit svg { width: 22px; height: 22px; color: var(--teal); margin-bottom: 10px; }

.benefit h3 { font-size: 15px; margin-bottom: 4px; }

.benefit p { font-size: 14px; }

/* Stellenanzeigen */

.job-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: 6px;
  padding: 28px;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.job-card + .job-card { margin-top: 24px; }

.job-card:hover { box-shadow: 0 4px 18px rgba(28, 35, 39, .07); }

.job-head h2 { font-size: 21px; }

/* Eckdaten: gleiche vier Felder je Anzeige – klare Tabelle statt loser Bubbles */

.job-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 20px;
  margin: 18px 0 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.job-meta dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8a939b;
  margin-bottom: 3px;
}

.job-meta dd { font-size: 14.5px; color: var(--ink); }

.job-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.job-body h3 { font-size: 15px; margin-bottom: 10px; }

.job-body ul { margin: 0; padding: 0; list-style: none; }

.job-body li {
  position: relative;
  font-size: 14.5px;
  padding-left: 20px;
  margin-bottom: 8px;
}

.job-body li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .55;
}

.job-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.job-foot-note { font-size: 14px; }

/* Abschluss-Box */

.cta-box .cta-note { margin: 16px 0 0; font-size: 14px; }

/* Kontakt-Raster */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: 6px;
  padding: 24px 26px;
  text-align: center;
}

.contact-item svg { width: 28px; height: 28px; color: var(--teal); margin-bottom: 10px; }

.contact-item h2 { font-size: 15px; margin-bottom: 6px; }

.contact-item p, .contact-item a { font-size: 16px; }

/* Aufruf-Box + Button */

.cta-box {
  background: var(--band);
  border-radius: 6px;
  padding: 36px 32px;
  text-align: center;
  margin-top: 44px;
}

.cta-box h2 { font-size: 21px; margin-bottom: 8px; }

.cta-box p { margin-bottom: 20px; }

.btn-solid {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
}

.btn-solid:hover { background: var(--teal-deep); }

/* Bühne für das Antragsformular */

.form-stage { padding: 40px 24px 72px; }

@media (max-width: 720px) {
  .fact-row { gap: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-stage { padding: 24px 12px 56px; }
  .page-head { padding: 36px 0 40px; }

  .section-block + .section-block { margin-top: 48px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .job-card { padding: 22px 20px; }
  .job-meta { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .job-body { grid-template-columns: 1fr; }
  .job-foot { flex-direction: column; align-items: stretch; text-align: center; }
  .job-foot .btn-solid { text-align: center; }
}

/* Sehr schmale Geräte: Leistungen einspaltig, lange Wörter trennen */

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .service h3, .fact-label { hyphens: auto; overflow-wrap: break-word; }
}

/* Klickbare Leistungskarten */

a.service { display: flex; flex-direction: column; color: var(--body); transition: border-color .15s ease, transform .15s ease; }
a.service:hover { border-color: var(--teal); transform: translateY(-2px); }
a.service p { flex-grow: 1; margin-bottom: 12px; }
a.service .go { font-size: 13.5px; font-weight: 600; color: var(--teal); }
