/* ============================================================
   strauss IT — Website Stylesheet
   Basiert verbindlich auf dem Corporate Design Manual v1.0
   ------------------------------------------------------------
   Inhalt:
   01  Design-Tokens (Farben, Typo, Abstände, Radien)
   02  Basis & Reset
   03  Typografie
   04  Buttons, Tags, Links (Web-Bausteine aus dem CD)
   05  Header & Navigation
   06  Hero (dunkle Sektion + Neural Mesh)
   07  Sektionen & Cards
   08  Arbeitsweise / Erfahrung / Über uns
   09  Kontakt & Formular
   10  Footer (dunkel, Negativ-Logo)
   11  Unterseiten (Impressum/Datenschutz)
   12  Animationen & Reduced Motion
   ============================================================ */

/* ============================================================
   00 SCHRIFT — Manrope lokal (self-hosted, keine Google-Verbindung)
   ------------------------------------------------------------
   Variable Font, Gewicht 400–800, je Subset eine Datei. Ersetzt
   die frühere Einbindung über Google Fonts — DSGVO-sauber, es
   wird keine Besucher-IP an Dritte übertragen.
   ============================================================ */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============================================================
   01 DESIGN-TOKENS — direkt aus dem CD-Manual v1.0
   ============================================================ */
:root {
  /* --- Markenfarben (CD Kapitel 02) --- */
  --c-primary:  #17915A;  /* Primary Green — trägt die Marke */
  --c-deep:     #0C6B45;  /* Deep Green — Tiefe/Kontrast auf hellen Flächen */
  --c-accent:   #2FBF7D;  /* Bright Accent — nur sparsam: aktiv, Fokus, 1 Akzent/Sektion */
  --c-ink:      #0E1A14;  /* Ink — Text */
  --c-muted:    #5C6D64;  /* Muted — Sekundärtext */
  --c-mist:     #EEF1EE;  /* Mist — helle Fläche */
  --c-offwhite: #F4F7F4;  /* Off-White — Sektionshintergrund */
  --c-paper:    #FFFFFF;  /* Paper */

  /* --- Abgeleitete Töne (aus den Web-Bausteinen des CD-Manuals) --- */
  --c-dark:        #0C1F16;  /* dunkle Sektionen: Hero, Footer */
  --c-accent-dark: #34C281;  /* Logo/Akzent auf dunklem Grund */
  --c-text-dark:   #A8BCB0;  /* Fließtext auf dunklem Grund */
  --c-body:        #4F5F56;  /* Fließtext auf hellem Grund (CD-Bausteine) */
  --c-muted-2:     #8A978F;  /* dezente Labels */
  --c-tint:        #E6F2EA;  /* grüne Tint-Fläche (Sekundär-Button, Tags) */
  --c-tint-deep:   #D6EBDE;  /* Tint hover */
  --c-border:      #E0E7E2;  /* Input-Rahmen */
  --c-border-2:    #CFE0D6;  /* Ghost-Button-Rahmen */

  /* --- Abstands-Skala, 8-px-Basis (CD Kapitel 06) --- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 32px;
  --sp-6: 48px;
  --sp-7: 64px;

  /* --- Eckradien (CD Kapitel 06) --- */
  --r-input: 8px;
  --r-btn:   10px;
  --r-card:  16px;
  --r-pill:  999px;

  /* --- Layout --- */
  --content-max: 1140px;              /* max. Inhaltsbreite 1080–1200 px */
  --pad-x: 24px;                      /* Außenrand mobil */
  --header-h: 72px;

  /* --- Schatten (aus den CD-Cards) --- */
  --shadow-card: 0 1px 3px rgba(14, 26, 20, 0.05);
  --shadow-lift: 0 14px 34px -18px rgba(14, 26, 20, 0.28);
}

@media (min-width: 760px) {
  :root { --pad-x: 40px; }
}
@media (min-width: 1100px) {
  :root { --pad-x: 56px; }             /* Außenrand Desktop */
}

/* ============================================================
   02 BASIS & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}

/* Sanftes Scrollen nur, wenn der Nutzer Bewegung erlaubt */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

/* Anker-Ziele unter dem Sticky-Header freistellen */
section[id], footer[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* Sichtbarer Fokus für Tastatur-Nutzer — Bright Accent laut CD */
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip-Link: erst bei Fokus sichtbar */
.skip-link {
  position: absolute;
  left: var(--sp-3);
  top: -100px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-btn);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: var(--sp-3); }

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ============================================================
   03 TYPOGRAFIE — Manrope (CD Kapitel 03)
   ============================================================ */
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: inherit;
  overflow-wrap: break-word;
}

/* Display · 800 · -3 % Laufweite (Hero) */
.display {
  font-size: clamp(2.375rem, 2.5vw + 1.75rem, 3.625rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

/* H2 · 700 (Sektionsüberschriften) */
h2 {
  font-size: clamp(1.75rem, 1.6vw + 1.25rem, 2.375rem);
  font-weight: 700;
}

h3 { font-size: 1.125rem; font-weight: 800; }

p { margin: 0 0 var(--sp-3); }
p:last-child { margin-bottom: 0; }

/* Lead · 500 (Intro-Texte) */
.lead {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--c-body);
}

/* Label · 800 · Versalien (Eyebrow) */
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--sp-3);
}

.muted { color: var(--c-muted); }

/* ============================================================
   04 WEB-BAUSTEINE — Buttons, Tags, Links (CD Kapitel 04)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 12px 22px;
  border: none;
  border-radius: var(--r-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease,
              color 0.15s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }

/* Primär: Kontakt aufnehmen / Projekt starten */
.btn--primary {
  color: #fff;
  background: var(--c-primary);
}
.btn--primary:hover { background: var(--c-deep); }

/* Sekundär: Mehr erfahren */
.btn--secondary {
  color: var(--c-primary);
  background: var(--c-tint);
}
.btn--secondary:hover { background: var(--c-tint-deep); }

/* Ghost */
.btn--ghost {
  color: var(--c-primary);
  background: transparent;
  border: 1.5px solid var(--c-border-2);
  padding: 11px 20px;
}
.btn--ghost:hover { border-color: var(--c-primary); }

/* Buttons auf dunklem Grund (Hero) — wie im CD-Referenzlayout */
.btn--on-dark-primary {
  color: var(--c-dark);
  background: var(--c-accent);
}
.btn--on-dark-primary:hover { background: var(--c-accent-dark); }

.btn--on-dark-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.btn--on-dark-secondary:hover { background: rgba(255, 255, 255, 0.18); }

/* Große CTA-Variante (Hero) */
.btn--lg {
  font-size: 1rem;
  padding: 14px 26px;
}

/* Textlink mit Pfeil — Deep Green für guten Kontrast auf hellen Flächen */
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--c-deep);
  text-decoration: none;
}
.textlink:hover { text-decoration: underline; text-underline-offset: 3px; }
.textlink .arrow { transition: transform 0.15s ease; }
.textlink:hover .arrow { transform: translateX(3px); }

/* Tags & Badges — Pills, voll gerundet */
.tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  color: var(--c-primary);
  background: var(--c-tint);
}
.tag--solid  { color: #fff; background: var(--c-primary); }
.tag--deep   { color: var(--c-deep); background: var(--c-tint-deep); }
.tag--neutral{ color: var(--c-muted); background: var(--c-mist); }

/* Status-Badge mit Punkt (z. B. „Verfügbar für neue Projekte") */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}
.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .status__dot { animation: pulse 2.4s ease-in-out infinite; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 191, 125, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(47, 191, 125, 0); }
}

/* ============================================================
   05 HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
/* Zustand nach dem Scrollen (per JS gesetzt) */
.site-header.is-scrolled {
  border-bottom-color: var(--c-mist);
  box-shadow: 0 4px 18px -12px rgba(14, 26, 20, 0.18);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* Logo-Lockup: Bildmarke + Wortmarke (horizontales Lockup laut CD) */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--c-ink);
  flex: none;
}
.brand__mark { color: var(--c-primary); }
.brand__name {
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.brand__name span { color: var(--c-primary); }

/* Desktop-Navigation */
.site-nav { display: flex; align-items: center; gap: var(--sp-5); }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-body);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav__link:hover { color: var(--c-ink); }
/* Aktiver Abschnitt (per JS gesetzt) */
.site-nav__link.is-active {
  color: var(--c-deep);
  border-bottom-color: var(--c-accent);
}

/* Burger-Button (nur mobil) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  border-radius: var(--r-btn);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--c-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--c-paper);
    border-bottom: 1px solid var(--c-mist);
    box-shadow: 0 24px 40px -24px rgba(14, 26, 20, 0.25);
    padding: var(--sp-2) var(--pad-x) var(--sp-4);
    display: none;
  }
  .site-nav.is-open { display: flex; }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav__link {
    display: block;
    padding: 14px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--c-mist);
  }
  .site-nav__link.is-active { border-bottom-color: var(--c-mist); }
  .site-nav .btn { margin-top: var(--sp-3); width: 100%; }

  /* Burger → X */
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ============================================================
   06 HERO — dunkle Sektion mit Neural-Mesh-Animation
   ============================================================ */
.hero {
  position: relative;
  background: var(--c-dark);
  color: #fff;
  overflow: hidden;
}

/* Canvas für das animierte Mesh (JS); rein dekorativ */
.hero__mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Leichter Verlauf, damit der Text ruhig auf dem Mesh liegt */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
              rgba(12, 31, 22, 0.92) 0%,
              rgba(12, 31, 22, 0.55) 55%,
              rgba(12, 31, 22, 0.15) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  padding-block: clamp(96px, 16vw, 168px);
  max-width: 720px;
}

.hero .eyebrow { color: var(--c-accent-dark); }

.hero__lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--c-text-dark);
  max-width: 560px;
  margin: var(--sp-4) 0 var(--sp-5);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__status {
  margin-top: var(--sp-5);
  color: var(--c-accent-dark);
}

/* ============================================================
   07 SEKTIONEN & CARDS
   ============================================================ */
.section { padding-block: clamp(72px, 9vw, 112px); }
.section--offwhite { background: var(--c-offwhite); }
.section--mist     { background: var(--c-mist); }

/* Sektionskopf: Eyebrow + H2 + Lead */
.section-head { max-width: 720px; margin-bottom: var(--sp-6); }
.section-head .lead { margin-top: var(--sp-3); }

/* Card — Radius 16, Schatten aus dem CD */
.card {
  background: var(--c-paper);
  border: 1px solid var(--c-mist);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
  }
}

/* Icon-Kachel in Cards: Monoline-Icon auf grüner Tint-Fläche */
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-btn);
  background: var(--c-tint);
  color: var(--c-primary);
  margin-bottom: var(--sp-3);
}

.card h3 { margin-bottom: var(--sp-2); }
.card p  { color: var(--c-muted); font-size: 0.9375rem; }

/* Raster: KI-Punkte und Leistungen — bewusst 2×2 (ruhig, viel Weißraum) */
.grid-2,
.grid-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 700px) {
  .grid-2,
  .grid-services { grid-template-columns: 1fr 1fr; }
}

/* Leistungs-Card mit Kopfzeile (Icon + Badge) */
.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
}

/* Hervorhebung der KI-Card (Schwerpunkt) — ruhig, per Primärfarbe */
.service-card--featured { border-top: 3px solid var(--c-primary); }

/* Zitat in der IT-Support-Card */
.service-card__quote {
  margin: 0 0 var(--sp-3);
  padding-left: 14px;
  border-left: 3px solid var(--c-primary);
  font-weight: 700;
  color: var(--c-ink);
  font-size: 1rem;
  line-height: 1.45;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-3);
}

/* ============================================================
   08 ARBEITSWEISE · ERFAHRUNG · ÜBER UNS
   ============================================================ */

/* --- Arbeitsweise: 3 nummerierte Schritte --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--sp-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.step {
  position: relative;
  background: var(--c-paper);
  border: 1px solid var(--c-mist);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  box-shadow: var(--shadow-card);
}
.step__num {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  margin-bottom: var(--sp-3);
}
.step h3 { margin-bottom: var(--sp-2); }
.step p  { color: var(--c-muted); font-size: 0.9375rem; }

/* --- Erfahrung & Branchen --- */
.industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--sp-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.industry {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--c-paper);
  border: 1px solid var(--c-mist);
  border-radius: var(--r-card);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-card);
  font-weight: 700;
}
.industry__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: var(--r-btn);
  background: var(--c-tint);
  color: var(--c-primary);
}

/* --- Über uns: Text + Aside --- */
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-7);
  align-items: start;
}
@media (max-width: 899px) {
  .about { grid-template-columns: 1fr; gap: var(--sp-6); }
}

.about__text p { color: var(--c-body); }
.about__text .lead {
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-4);
}

/* Werte-Chips: Verständlich · Verlässlich · Nahbar */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-4);
  padding: 0;
  list-style: none;
}

/* Porträt-/Foto-Karte (Platzhalter, bis ein echtes Foto vorliegt) */
.about__card {
  background: var(--c-paper);
  border: 1px solid var(--c-mist);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--c-dark);
  overflow: hidden;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__meta { padding: var(--sp-4); }
.about__meta strong { display: block; font-size: 1.0625rem; }
.about__meta span { color: var(--c-muted); font-size: 0.9rem; }

/* ============================================================
   09 KONTAKT & FORMULAR
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-6);
  align-items: start;
}
@media (max-width: 899px) {
  .contact { grid-template-columns: 1fr; }
}

/* Formular — Bausteine laut CD (Input: Radius 8, Fokus Primary Green) */
.form { display: grid; gap: var(--sp-3); }

.form__field { display: grid; gap: 8px; }

.form label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-body);
}

.form input,
.form textarea {
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--c-ink);
  background: var(--c-offwhite);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-input);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.form textarea { resize: vertical; min-height: 140px; }

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  background: var(--c-paper);
}
/* Tastatur-Fokusring zusätzlich zum grünen Rahmen */
.form input:focus-visible,
.form textarea:focus-visible {
  outline: 3px solid rgba(47, 191, 125, 0.35);
  outline-offset: 0;
}

.form__hint { font-size: 0.8125rem; color: var(--c-muted); }

/* Status-Meldung nach dem Absenden */
.form__status {
  display: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: var(--r-input);
}
.form__status.is-ok {
  display: block;
  color: var(--c-deep);
  background: var(--c-tint);
}
.form__status.is-error {
  display: block;
  color: #8a2c22;
  background: #f7e8e5;
}

/* Kontakt-Infokarte */
.contact-info {
  background: var(--c-paper);
  border: 1px solid var(--c-mist);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  box-shadow: var(--shadow-card);
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}
.contact-info li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.contact-info .ci-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: var(--r-btn);
  background: var(--c-tint);
  color: var(--c-primary);
}
.contact-info a { color: var(--c-deep); font-weight: 700; text-decoration: none; }
.contact-info a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-info .ci-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-muted);
}

/* ============================================================
   10 FOOTER — dunkle Fläche, Negativ-Logo
   ============================================================ */
.site-footer {
  background: var(--c-dark);
  color: var(--c-text-dark);
  padding-block: var(--sp-7) var(--sp-4);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 899px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 559px) {
  .site-footer__top { grid-template-columns: 1fr; gap: var(--sp-5); }
}

/* Negativ-Lockup: Mesh + Wortmarke in Weiß/Akzent (laut CD) */
.brand--negative { color: #fff; }
.brand--negative .brand__mark { color: var(--c-accent-dark); }
.brand--negative .brand__name span { color: var(--c-accent-dark); }

.site-footer__claim {
  margin-top: var(--sp-3);
  font-size: 0.9375rem;
  max-width: 300px;
}

.site-footer h4 {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 var(--sp-3);
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.site-footer a {
  color: var(--c-text-dark);
  text-decoration: none;
  font-size: 0.9375rem;
}
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  padding-top: var(--sp-4);
  font-size: 0.8125rem;
  color: #6F8579;
}

/* ============================================================
   11 UNTERSEITEN (Impressum / Datenschutz)
   ============================================================ */
.legal-page { padding-block: var(--sp-7); min-height: 55vh; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-size: clamp(1.9rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: var(--sp-4); }
.legal-page h2 { font-size: 1.25rem; margin: var(--sp-5) 0 var(--sp-2); }
.legal-page p, .legal-page li { color: var(--c-body); }

/* Deutlich sichtbarer Platzhalter-Hinweis */
.placeholder-note {
  background: var(--c-tint);
  border: 1.5px dashed var(--c-primary);
  border-radius: var(--r-card);
  padding: var(--sp-3) var(--sp-4);
  color: var(--c-deep);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: var(--sp-5);
}

/* ============================================================
   12 ANIMATIONEN & REDUCED MOTION
   ------------------------------------------------------------
   Sanftes Einblenden beim Scrollen. Nur aktiv, wenn JS läuft
   (html.js) UND der Nutzer Bewegung erlaubt. Ohne JS oder mit
   prefers-reduced-motion ist alles sofort sichtbar.
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Gestaffelte Verzögerung innerhalb von Rastern */
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
.js .reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   13 · ERWEITERUNGEN — Hero-KI-Button, Zeitstrahl, Formular
   (nachträglich ergänzt; nutzt dieselben Design-Tokens)
   ============================================================ */

/* --- Hero: besonderer „KI im Fokus"-Button (Akzent-Outline) --- */
.btn--on-dark-ki {
  color: var(--c-accent);
  background: transparent;
  border: 1.5px solid var(--c-accent);
  padding: 11px 20px;
}
.btn--on-dark-ki:hover {
  color: var(--c-dark);
  background: var(--c-accent);
}
.btn__spark { flex: none; }

/* --- Hero: dezenter Textlink als ruhiger dritter Weg --- */
.hero__textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-4);
  color: var(--c-text-dark);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
}
.hero__textlink:hover { color: #fff; }
.hero__textlink .arrow { transition: transform 0.15s ease; }
.hero__textlink:hover .arrow { transform: translateX(3px); }

/* --- „So arbeite ich": Zeitstrahl mit 5 Schritten --- */
/* Knoten = Anspielung auf das Neural-Mesh der Marke. Mobil senkrecht,
   ab 760 px waagerecht in fünf gleich breiten Spalten. */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-5);
}
.timeline__step {
  position: relative;
  padding-left: 60px;            /* Platz für Knoten + Linie (mobil) */
}
.timeline__node {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: var(--c-primary);
  box-shadow: 0 0 0 5px var(--c-tint);
  z-index: 1;
}
.timeline__node--accent { background: var(--c-accent); }   /* letzter Schritt */

/* Verbindungslinie zwischen den Knoten */
.timeline__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: calc(-1 * var(--sp-5));
  width: 2px;
  background: var(--c-border);
}
.timeline__step h3 { margin: 6px 0 4px; }
.timeline__step p  { color: var(--c-muted); font-size: 0.9375rem; }

@media (min-width: 760px) {
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--sp-4);
  }
  .timeline__step {
    padding-left: 0;
    padding-top: 60px;
  }
  /* Linie jetzt waagerecht durch die Knotenmitte zum nächsten Schritt */
  .timeline__step:not(:last-child)::before {
    left: 40px;
    top: 19px;
    right: calc(-1 * var(--sp-4));
    bottom: auto;
    width: auto;
    height: 2px;
  }
}

/* --- Formular: Honeypot (für Menschen unsichtbar, Bot-Falle) --- */
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Formular: DSGVO-Einwilligung --- */
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--c-body);
}
.form__consent input {
  width: auto;
  flex: none;
  margin-top: 2px;
  accent-color: var(--c-primary);   /* Häkchen in Markengrün */
}
.form__consent a {
  color: var(--c-deep);
  font-weight: 700;
  text-decoration: none;
}
.form__consent a:hover { text-decoration: underline; text-underline-offset: 3px; }
