/* =============================================
   SHK-Team Schmikowski – Haupt-CSS
   Design-System: dunkel Header/Footer, heller Body
   Farben: Cyan #11bff4 · Rot #ff3939 · Tinte #102338
   ============================================= */

:root {
  --bg:          #f4f8fb;
  --surface:     #ffffff;
  --surface-alt: #f0f6fa;
  --ink:         #102338;
  --ink-soft:    #4e6a82;
  --line:        #d4e4ef;
  --header:      #0b1826;
  --footer:      #07111d;
  --cyan:        #11bff4;
  --cyan-dark:   #0a8db8;
  --cyan-soft:   #dbf6ff;
  --red:         #ff3939;
  --red-soft:    #ffe2e2;
  --shadow-sm:   0 4px 20px rgba(16,35,56,.07);
  --shadow-md:   0 12px 40px rgba(16,35,56,.10);
  --shadow-lg:   0 24px 64px rgba(16,35,56,.13);
  --r-xl: 20px;
  --r-lg: 14px;
  --r-md: 10px;
  --r-sm: 6px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }
ul { list-style: none; padding: 0; }

/* ── Layout ── */
.wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── Typography ── */
h1, h2, h3, .fact-num {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.0;
}
h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

.section-label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-dark);
}
.eyebrow {
  display: block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-dark);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: opacity .18s, transform .18s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), #e8442a);
  color: #fff;
}
.btn-secondary {
  background: linear-gradient(135deg, #fff, #eef6fb);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:visited,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  color: var(--ink);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(11,24,38,.97), rgba(11,24,38,.90));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  width: auto;
  height: 40px;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-copy strong {
  color: #01aced;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-copy small {
  color: #fd0101;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 0.92rem;
  transition: color .15s, background .15s;
}
.main-nav a:hover,
.main-nav a.active { color: #fff; background: rgba(255,255,255,.07); }
.main-nav a.active { color: var(--cyan); }
.nav-cta {
  margin-left: 10px;
  padding: 10px 20px !important;
  background: linear-gradient(135deg, rgba(255,57,57,.22), rgba(17,191,244,.22)) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: #fff !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: linear-gradient(135deg, rgba(255,57,57,.34), rgba(17,191,244,.34)) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   PAGE HERO (Unterseiten)
   ============================================ */
.page-hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at 2% 0%, rgba(255,57,57,.07) 0%, transparent 40%),
    radial-gradient(circle at 98% 0%, rgba(17,191,244,.09) 0%, transparent 40%),
    linear-gradient(180deg, #f8fbfd 0%, #f0f5f9 100%);
}
.page-hero-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(circle at 8% 8%, rgba(255,57,57,.06) 0%, transparent 20%),
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
  max-width: 760px;
}
.page-hero-inner h1 { margin: 12px 0 20px; }
.page-hero-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.75;
}

/* ============================================
   HERO (Startseite)
   ============================================ */
.hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at 2% 0%, rgba(255,57,57,.07) 0%, transparent 40%),
    radial-gradient(circle at 98% 0%, rgba(17,191,244,.09) 0%, transparent 40%),
    linear-gradient(180deg, #f8fbfd 0%, #f0f5f9 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}
.hero-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(circle at 8% 8%, rgba(255,57,57,.06) 0%, transparent 20%),
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
}
.hero-copy h1 { margin: 12px 0 20px; max-width: 14ch; }
.hero-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 28px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.hc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hc-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0b1826, #162a40);
  border-color: rgba(17,191,244,.25);
}
.hc-wide .hc-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(17,191,244,.8);
}
.hc-wide .hc-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.hc-wide .hc-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}
.hc-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.hc strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hc span { font-size: 0.82rem; color: var(--ink-soft); }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 160px;
  text-align: center;
}
.trust-item strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-item span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.trust-sep {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 80px 0;
}
.section-head {
  margin-bottom: 40px;
}
.section-head h2 { margin: 10px 0 14px; }
.section-head p {
  color: var(--ink-soft);
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card-featured {
  background:
    radial-gradient(circle at 90% 8%, rgba(255,57,57,.07), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  border-color: rgba(255,57,57,.18);
  box-shadow: var(--shadow-md);
}
.sc-kicker {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  width: fit-content;
}
.sc-kicker svg { width: 16px !important; height: 16px !important; flex-shrink: 0; }
.sc-kicker-cyan { background: var(--cyan-soft); color: #085e76; }
.sc-kicker-red  { background: var(--red-soft); color: #8b2222; }
.sc-kicker-mix  {
  background: linear-gradient(135deg, #e3f8ff, #ffeaea);
  color: #284a73;
}
.service-card h3 { font-size: 1.35rem; }
.service-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.7;
}
.sc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.sc-list li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.sc-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.sc-link {
  margin-top: auto;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--cyan-dark);
  transition: color .15s;
}
.sc-link:hover { color: var(--red); }

/* ── Leistungsdetail-Layout ── */
.service-detail-section {
  padding: 80px 0;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.service-detail-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.sd-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.sd-icon-svg {
  display: flex;
  align-items: center;
  color: var(--cyan-dark);
}
.sd-icon-svg svg { width: 40px !important; height: 40px !important; display: block; flex-shrink: 0; }
.sd-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.sd-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.sd-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}
.sd-list li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.sd-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-dark);
  font-weight: 800;
}

/* ── Leistungs-CTA ── */
.leistung-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, #0b1826, #162a40);
  border: 1px solid rgba(17,191,244,.2);
  border-radius: var(--r-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.leistung-cta-copy h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.leistung-cta-copy p {
  color: rgba(255,255,255,.55);
  font-size: 0.95rem;
  max-width: 50ch;
  line-height: 1.7;
}

/* ============================================
   ÜBER UNS
   ============================================ */
.about {
  padding: 80px 0;
  background:
    radial-gradient(circle at 96% 50%, rgba(17,191,244,.07) 0%, transparent 40%),
    linear-gradient(180deg, #f0f6fa 0%, #f5f9fc 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.about-copy h2 { margin: 10px 0 20px; }
.about-copy p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 56ch;
}
.about-copy .btn { margin-top: 8px; }

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fact-card-accent {
  background: linear-gradient(135deg, #e3f8ff, #f0fbff);
  border-color: rgba(17,191,244,.3);
}
.fact-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.fact-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Über-uns Vollseite */
.about-full {
  padding: 80px 0;
}
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-text p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}
.about-text h3 {
  margin: 32px 0 16px;
  font-size: 1.3rem;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 24px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--cyan-soft);
  color: #085e76;
}
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.about-sidebar-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
}
.about-einsatz-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-einsatz-list li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.about-einsatz-list li::before {
  content: "📍";
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* ============================================
   REFERENZEN
   ============================================ */
.references {
  padding: 80px 0;
}
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  align-items: stretch;
}
.ref-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}
.ref-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ref-placeholder {
  background: linear-gradient(160deg, #e3f4fa, #d8eeee);
  min-height: 120px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ref-placeholder-sm { padding: 28px 24px; }
.ref-placeholder-icon { font-size: 2.4rem; line-height: 1; }
.ref-placeholder-svg  { display: flex; align-items: center; justify-content: center; color: var(--cyan-dark); }
.ref-placeholder-svg svg { width: 48px !important; height: 48px !important; display: block; flex-shrink: 0; }
.ref-info { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.ref-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 4px 0 10px;
}
.ref-tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--cyan-soft);
  color: #085e76;
}
.ref-tag-red { background: var(--red-soft); color: #8b2222; }
.ref-tag-mix { background: linear-gradient(135deg, #e3f8ff, #ffeaea); color: #284a73; }
.ref-info h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.ref-info p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Referenzen Vollseite – gleichmäßiges Grid */
.ref-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

/* ============================================
   KARRIERE
   ============================================ */
.career {
  padding: 80px 0;
  background:
    radial-gradient(circle at 4% 60%, rgba(17,191,244,.08) 0%, transparent 35%),
    linear-gradient(180deg, #f0f6fa 0%, #f5f9fc 100%);
}
.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.career-copy h2 { margin: 10px 0 20px; }
.career-copy p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 52ch;
}
.career-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.career-list li {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
  padding-left: 22px;
  position: relative;
}
.career-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-dark);
  font-weight: 800;
}
.career-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(17,191,244,.1), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f4f9fc 100%);
}
.career-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.career-badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  background: var(--cyan-soft);
  color: #075e77;
}
.career-badge-alt {
  background: linear-gradient(135deg, #e3f8ff, #f0fbff);
  color: #094d62;
  border: 1px solid rgba(17,191,244,.3);
}
.career-quote {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--cyan);
  padding-left: 18px;
  margin: 0;
}
.career-card cite {
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
}

/* Stellenanzeigen */
.job-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.job-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: box-shadow .2s, transform .2s;
}
.job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job-card-info { display: flex; flex-direction: column; gap: 8px; }
.job-card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}
.job-card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.job-tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  background: var(--cyan-soft);
  color: #085e76;
}
.job-tag-red { background: var(--red-soft); color: #8b2222; }
.job-card-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
}

/* ============================================
   KONTAKT
   ============================================ */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-copy h2 { margin: 10px 0 16px; }
.contact-copy p {
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 48ch;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .18s, transform .18s;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card-phone {
  background: linear-gradient(135deg, #fff, #f3fafc);
  border-color: rgba(17,191,244,.25);
}
.cc-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.contact-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.contact-card span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.contact-card small {
  font-size: 0.76rem;
  color: var(--ink-soft);
}

/* Kontaktformular */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color .18s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-notice {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 8px;
  margin-bottom: 20px;
}
.form-submit { width: 100%; }

/* Alert boxes */
.alert {
  padding: 16px 20px;
  border-radius: var(--r-md);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.alert-success {
  background: #e6f9f0;
  color: #1a7a4a;
  border: 1px solid #a3e6c4;
}
.alert-error {
  background: var(--red-soft);
  color: #8b2222;
  border: 1px solid #ffb3b3;
}

/* ============================================
   STATISCHE SEITEN (Impressum / Datenschutz)
   ============================================ */
.static-section {
  padding: 60px 0 80px;
}
.static-content {
  max-width: 820px;
}
.static-content h2 {
  font-size: 1.6rem;
  margin: 36px 0 14px;
  color: var(--ink);
}
.static-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
  color: var(--ink);
}
.static-content p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.static-content a {
  color: var(--cyan-dark);
  text-decoration: underline;
}
.static-content a:hover { color: var(--red); }
.static-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.static-content ul li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, var(--footer), #040c16);
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-brand strong {
  color: #01aced;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-brand small {
  color: #fd0101;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 34ch;
}
.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.9;
}
.footer-address a {
  color: rgba(17,191,244,.75);
  transition: color .15s;
}
.footer-address a:hover { color: var(--cyan); }
.footer-nav-col { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.footer-nav-col nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  transition: color .15s;
}
.footer-nav-col a:hover { color: #fff; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-row > span {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  transition: color .15s;
}
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ============================================
   RESPONSIVE – Tablet 1024px
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner,
  .about-grid,
  .about-full-grid,
  .career-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 { max-width: 100%; }
  .hero-lead { max-width: 100%; }

  .service-grid,
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ref-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ref-full-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ref-card:first-child { grid-column: 1 / -1; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand-col { grid-column: 1 / -1; }

  .trust-sep { display: none; }
  .trust-grid { justify-content: flex-start; gap: 24px; }
  .trust-item { text-align: left; min-width: 180px; }
}

/* ============================================
   RESPONSIVE – Mobile 768px
   ============================================ */
@media (max-width: 768px) {

  /* Header / Nav */
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7,17,29,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 8px 16px 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .main-nav.is-open {
    max-height: 400px;
    padding: 8px 16px 16px;
  }
  .main-nav a {
    padding: 14px 12px;
    border-radius: var(--r-md);
    font-size: 1rem;
  }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center;
    border-radius: var(--r-md) !important;
  }

  /* Sections */
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .hero { padding: 40px 0 36px; }
  .hero-copy { padding: 32px; }
  .hero-cards { grid-template-columns: 1fr 1fr; }

  .services, .about, .references, .career, .contact-section,
  .service-detail-section, .about-full {
    padding: 56px 0;
  }

  .service-grid,
  .service-detail-grid,
  .ref-grid,
  .ref-full-grid,
  .contact-cards,
  .about-facts,
  .form-row {
    grid-template-columns: 1fr;
  }
  .ref-card:first-child { grid-column: auto; }
  .service-card-featured { order: -1; }

  .page-hero-inner { padding: 32px 24px; }
  .contact-form-wrap { padding: 28px 24px; }
  .leistung-cta { padding: 32px 24px; flex-direction: column; align-items: flex-start; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .wrap { width: calc(100% - 32px); }
  .hero-cards { grid-template-columns: 1fr; }
  .hero-copy { padding: 24px; }
  .service-card, .career-card { padding: 24px; }
}

/* ============================================
   PARTNER & THEMEN
   ============================================ */
.partner-overview {
  padding: 80px 0;
}
.partner-group + .partner-group {
  margin-top: 68px;
}
.partner-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.partner-grid-wichtig { grid-template-columns: repeat(2, 1fr); }
.partner-grid-partner { grid-template-columns: repeat(3, 1fr); }
.partner-grid-marke_thema { grid-template-columns: repeat(3, 1fr); }
.partner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.partner-card-wichtig {
  background:
    radial-gradient(circle at 96% 8%, rgba(17,191,244,.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f5fbff 100%);
}
.partner-card-marke_thema {
  background:
    radial-gradient(circle at 96% 8%, rgba(255,57,57,.06), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff9f9 100%);
}
.partner-card-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partner-card-top h3 {
  font-size: 1.3rem;
}
.partner-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--cyan-soft);
  color: #085e76;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.partner-card p,
.partner-detail-main p,
.partner-empty {
  color: var(--ink-soft);
  line-height: 1.75;
}
.cms-content h2 { font-size: 1.25rem; font-weight: 700; margin: 28px 0 10px; color: var(--ink); }
.cms-content h3 { font-size: 1.05rem; font-weight: 700; margin: 22px 0 8px; color: var(--ink); }
.cms-content p  { color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; }
.cms-content ul, .cms-content ol { padding-left: 1.4em; margin-bottom: 14px; color: var(--ink-soft); line-height: 1.75; }
.cms-content li { margin-bottom: 4px; }
.cms-content strong { color: var(--ink); font-weight: 700; }
.cms-content a { color: var(--cyan-dark); text-decoration: underline; }
.partner-intro { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 24px; }
.partner-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.partner-card-meta span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.partner-topics-block {
  margin-top: 72px;
}
.topic-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.topic-chip-grid-side {
  display: grid;
  grid-template-columns: 1fr;
}
.topic-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.topic-chip strong {
  font-size: 0.92rem;
  font-family: "Space Grotesk", sans-serif;
}
.topic-chip span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.partner-detail-section {
  padding: 80px 0;
}
.partner-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
}
.partner-detail-main {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partner-detail-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partner-external-box {
  margin-top: 12px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #0b1826, #162a40);
  border: 1px solid rgba(17,191,244,.2);
}
.partner-external-box h3 {
  color: #fff;
  margin-bottom: 10px;
}
.partner-external-box p {
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.partner-related-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partner-related-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface-alt);
}
.partner-related-item strong {
  font-size: 0.95rem;
  font-family: "Space Grotesk", sans-serif;
}
.partner-related-item span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .partner-grid-wichtig,
  .partner-grid-partner,
  .partner-grid-marke_thema,
  .partner-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .partner-grid-wichtig,
  .partner-grid-partner,
  .partner-grid-marke_thema,
  .partner-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CMS RENDERER – Hilfsklassen
   ============================================ */

/* Hintergrundfarbvarianten */
.rs-bg-light  { background: linear-gradient(180deg, #f0f6fa 0%, #f5f9fc 100%); }
.rs-bg-dark   { background: linear-gradient(180deg, #0f1e2e 0%, #162a40 100%); color: #e8f0f8; }
.rs-bg-black  { background: linear-gradient(180deg, #07101a 0%, #0b1826 100%); color: #d4e3ef; }
.rs-bg-brand  { background: linear-gradient(135deg, #0099c8 0%, #11bff4 100%); color: #fff; }

.rs-bg-dark  .section-head h2,
.rs-bg-black .section-head h2,
.rs-bg-brand .section-head h2 { color: inherit; }

.rs-bg-dark  .section-head p,
.rs-bg-black .section-head p,
.rs-bg-brand .section-head p { color: rgba(255,255,255,.65); }

/* Inline-SVG Icon-Wrapper für Karten */
.rs-card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--cyan-dark);
  margin-bottom: 4px;
}
.rs-card-icon svg { width: 32px; height: 32px; flex-shrink: 0; }

/* Inline-Icon in Texten */
.rs-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: var(--cyan-dark);
  flex-shrink: 0;
}
.rs-icon svg { width: 100%; height: 100%; }

/* CTA-Sektion */
.rs-cta-section { padding: 60px 0; }
.rs-cta-label {
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: var(--ink);
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cyan-dark);
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid var(--line);
}
.faq-answer p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: .95rem;
  margin-top: 14px;
  margin-bottom: 0;
}
.faq-answer .sc-link { display: inline-block; margin-top: 10px; }

/* WYSIWYG-Body */
.rs-wysiwyg { max-width: 820px; }
.rs-wysiwyg p  { color: var(--ink-soft); line-height: 1.8; margin-bottom: 14px; font-size: .95rem; }
.rs-wysiwyg h2 { font-size: 1.6rem; margin: 36px 0 14px; }
.rs-wysiwyg h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.rs-wysiwyg ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.rs-wysiwyg li { color: var(--ink-soft); font-size: .95rem; line-height: 1.8; }
.rs-wysiwyg a  { color: var(--cyan-dark); text-decoration: underline; }
.rs-wysiwyg a:hover { color: var(--red); }
