/* =============================================================
   datasouveraen.de
   Bildsprache 1:1 von jerocom.de: durchgehend schwarz, Fotografie,
   neongrüne eckige Call-to-Actions, zentrierte Sektionsköpfe.
   ============================================================= */

:root {
  --bg:        #000000;
  --surface:   #0c0c0c;
  --surface-2: #131313;
  --line:      #ffffff1f;
  --line-2:    #ffffff33;

  --text:      #ffffff;
  --soft:      #ffffffb8;   /* 6.9:1 auf Schwarz */
  --mute:      #ffffff8c;   /* 5.4:1 auf Schwarz */

  --green:      #79fa4f;    /* 15.6:1 auf Schwarz – der CTA */
  --green-dark: #5fe034;
  --red:        #ff6b5e;

  /* Helle Flächen (Vertrauensleiste, Zertifikatskacheln) */
  --paper:      #ffffff;
  --paper-2:    #f2f3f4;
  --ink:        #0c0c0c;
  --ink-soft:   #4b5055;
  --ink-mute:   #63696e;
  --ink-line:   #e2e4e6;

  --r-btn:  6px;
  --r-card: 14px;
  --r-img:  18px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);

  --gutter: 28px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .btn, .brand__text, .stat dt, .timeline__no, .path__no,
.faq__item summary, .tool__mark, .pipe__core strong, .proof__lead {
  font-family: 'Manrope', 'Figtree', sans-serif;
  letter-spacing: -0.025em;
}
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.1; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg use { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 100;
  background: var(--green); color: #000; padding: 12px 20px; border-radius: var(--r-btn); font-weight: 700;
}
.skip-link:focus { left: 16px; }

:where(a, button, input, select, textarea, summary, details):focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------------------------------------------------------- NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 12px 0;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}
.nav[data-scrolled='true'] {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 22px;
}

.brand {
  display: inline-flex; align-items: center; gap: 11px; min-height: 44px;
  color: var(--text); text-decoration: none; font-weight: 800; font-size: 17px;
  margin-right: auto;
  transition: transform 160ms var(--ease-out);
}
.brand:active { transform: scale(0.97); }
.brand__mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 8px; background: var(--green); color: #000; flex: none;
}
.brand__mark svg { width: 19px; height: 19px; }
.brand__mark--sm { width: 40px; height: 40px; border-radius: 10px; }
.brand__mark--sm svg { width: 22px; height: 22px; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--text); text-decoration: none;
  font-size: 15px; font-weight: 600;
  position: relative;
  transition: color 180ms ease;
}
.nav__links a[data-current='true'] { color: var(--green); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 8px;
  height: 2px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 200ms var(--ease-out);
}
.nav__links a[data-current='true']::after { transform: scaleX(1); }

.nav__phone {
  color: var(--green); text-decoration: none; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; min-height: 44px;
}

.nav__burger {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: var(--r-btn); background: transparent;
  padding: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: transform 160ms var(--ease-out), border-color 200ms ease;
}
.nav__burger:active { transform: scale(0.96); }
.nav__burger span {
  display: block; width: 18px; height: 2px; background: var(--text);
  transition: transform 220ms var(--ease-out);
}
.nav__burger[aria-expanded='true'] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded='true'] span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

.nav__mobile {
  margin: 12px var(--gutter) 0; padding: 12px;
  border-radius: var(--r-card);
  background: rgba(0, 0, 0, 0.97);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; flex-direction: column; gap: 2px;
  transform-origin: top right;
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.nav__mobile[hidden] { display: none; }
/* Exit schneller als Enter: beim Schliessen hat der Nutzer schon entschieden. */
.nav__mobile[data-enter='false'] { opacity: 0; transform: scale(0.97) translateY(-6px); transition-duration: 130ms; }
.nav__mobile a {
  display: flex; align-items: center; min-height: 48px;
  color: var(--text); text-decoration: none;
  padding: 10px 14px; border-radius: var(--r-btn); font-weight: 600;
}
.nav__mobile .btn { margin-top: 8px; justify-content: center; }
.nav__mobile .btn--primary { color: #000; }

/* ----------------------------------------------------------- BUTTONS
   Wie auf jerocom.de: eckig, grün gefüllt mit schwarzer Schrift,
   sekundär als grüne Kontur – jeweils mit Pfeil nach oben rechts. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 26px;
  border: 1px solid transparent; border-radius: var(--r-btn);
  font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 150ms var(--ease-out), background-color 200ms ease,
              border-color 200ms ease, color 200ms ease;
}
.btn::after { content: '↗'; font-size: 0.95em; line-height: 1; opacity: 0.85; }
.btn--noarrow::after { content: none; }
.btn:active { transform: scale(0.97); }
.btn--sm { min-height: 44px; padding: 11px 20px; font-size: 14.5px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--green); color: #000; }
.btn--ghost   { background: transparent; color: var(--text); border-color: var(--green); }
.btn--light   { background: var(--paper); color: var(--ink); }
.btn[disabled] { opacity: 0.55; cursor: progress; }

.btn__spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.25); border-top-color: #000;
  display: none; animation: spin 620ms linear infinite;
}
.btn[data-loading='true'] .btn__spinner { display: block; }
/* Blur ueberbrueckt den Sprung zwischen zwei Textzustaenden. */
.btn__label { transition: filter 180ms ease, opacity 180ms ease; }
.btn[data-swapping='true'] .btn__label { filter: blur(3px); opacity: 0.45; }
.btn[data-loading='true']::after { content: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ----------------------------------------------------------- HERO
   Vollflächiges Foto, linksbündige Headline – Aufbau wie jerocom.de. */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: flex; align-items: center;
  padding: 150px 0 88px;
  overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.82) 42%, rgba(0,0,0,0.35) 78%, rgba(0,0,0,0.5) 100%),
    linear-gradient(to top, #000 2%, transparent 38%);
}
.hero__inner { display: grid; justify-items: start; gap: 24px; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px;
  border: 1px solid var(--line-2); border-radius: var(--r-btn);
  background: rgba(0, 0, 0, 0.5);
  font-size: 13.5px; font-weight: 600;
}
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.hero__title { font-size: clamp(40px, 6.6vw, 76px); line-height: 1.03; letter-spacing: -0.035em; max-width: 20ch; }
.hero__title .green { color: var(--green); }
.hero__lead { max-width: 620px; color: var(--soft); font-size: clamp(16px, 1.8vw, 18.5px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

/* ----------------------------------------------------------- VERTRAUENSLEISTE
   Weißes Band direkt unter dem Hero – die Proof-Stufe, wie auf jerocom.de. */
.proof { background: var(--paper); color: var(--ink); padding: 40px 0; }
.proof__lead {
  text-align: center; font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em; color: var(--ink-soft); margin-bottom: 26px;
}
.proof__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 36px;
}
.proof__list li { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; }
.proof__list svg { width: 23px; height: 23px; margin-top: 2px; color: var(--ink); }
.proof__list strong { display: block; font-size: 14.5px; font-weight: 700; }
.proof__list span { display: block; margin-top: 2px; font-size: 13.5px; color: var(--ink-mute); line-height: 1.45; }

/* ----------------------------------------------------------- SECTIONS */
.section { padding: 104px 0; }
.section--tight { padding-top: 0; }

/* Zentrierter Kopf – jerocom.de setzt jede Sektion mittig auf. */
.section__head { max-width: 780px; margin: 0 auto 60px; text-align: center; }
.section__head h2 { font-size: clamp(30px, 4.1vw, 50px); margin-bottom: 18px; }
.section__lead { color: var(--soft); font-size: clamp(16px, 1.7vw, 18px); }

.eyebrow {
  margin: 0 0 16px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green);
}
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ----------------------------------------------------------- CARDS */
.grid { display: grid; gap: 14px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  display: flex; flex-direction: column;
  padding: 30px;
  border-radius: var(--r-card);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms var(--ease-out);
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--soft); font-size: 15.5px; }
.card__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; margin-bottom: 20px;
  border-radius: 10px;
  background: rgba(121, 250, 79, 0.12);
  border: 1px solid rgba(121, 250, 79, 0.3);
  color: var(--green);
}
.card__icon svg { width: 21px; height: 21px; }

.card--cta {
  background: var(--green); border-color: var(--green); color: #000;
  justify-content: center; align-items: flex-start; gap: 10px;
}
.card--cta h3, .card--cta p { color: #000; }
.card--cta p { opacity: 0.78; margin-bottom: 6px; }

.note {
  margin-top: 26px; padding: 26px 30px;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  color: var(--soft); font-size: 16px;
}
.note strong { color: var(--text); }

/* ----------------------------------------------------------- VERGLEICH */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 54px; }
.compare__panel {
  margin: 0; padding: 28px;
  border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 22px;
}
.compare__panel--risk { border-color: rgba(255, 107, 94, 0.3); }
.compare__panel--good { border-color: rgba(121, 250, 79, 0.3); }
.compare__panel figcaption { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.compare__panel figcaption strong { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 800; }
.compare__tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.compare__tag--risk { background: rgba(255, 107, 94, 0.17); color: var(--red); }
.compare__tag--good { background: rgba(121, 250, 79, 0.17); color: var(--green); }

.diagram { display: grid; justify-items: center; flex: 1; }
.node--you {
  padding: 10px 20px; border-radius: var(--r-btn);
  background: var(--paper); color: var(--ink);
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 14px;
}
.conn { display: block; width: 100%; }
.conn--single { height: 28px; width: 2px; margin-inline: auto; background: linear-gradient(to bottom, var(--red), rgba(255,107,94,0.2)); }
.conn--fan {
  height: 28px;
  background:
    linear-gradient(to bottom, var(--green), rgba(121,250,79,0.25)) center/2px 100% no-repeat,
    linear-gradient(to right, rgba(121,250,79,0.35), rgba(121,250,79,0.35)) center bottom/86% 2px no-repeat;
}
.vendor {
  width: 100%; padding: 18px; border-radius: 10px;
  border: 1px dashed rgba(255, 107, 94, 0.45); background: rgba(255, 107, 94, 0.05);
  display: grid; gap: 13px; justify-items: center;
}
.vendor__label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }

.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.chips li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: var(--r-btn);
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  font-size: 13.5px; color: var(--soft);
}
.chips li svg { width: 15px; height: 15px; flex: none; }
.chips--split { width: 100%; }
.chips--split li { background: rgba(121, 250, 79, 0.06); border-color: rgba(121, 250, 79, 0.3); color: var(--text); }
.compare__note { font-size: 14.5px; color: var(--mute); }

/* ----------------------------------------------------------- TIMELINE */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; }
.timeline li {
  position: relative;
  display: grid; grid-template-columns: 84px 1fr; gap: 26px;
  padding: 26px 4px;
  border-top: 1px solid var(--line);
  transition: background-color 200ms ease;
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline li::before {
  content: ''; position: absolute; left: 0; top: -1px; height: 1px; width: 72px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 420ms var(--ease-out);
}
.timeline li[data-visible='true']::before { transform: scaleX(1); }
.timeline__no { font-size: 30px; font-weight: 800; color: var(--green); }
.timeline h3 { font-size: 19px; margin-bottom: 7px; }
.timeline p { color: var(--soft); font-size: 15.5px; max-width: 78ch; }

.pullquote {
  margin-top: 42px; padding: 34px 38px;
  border-radius: var(--r-card);
  border-left: 3px solid var(--green);
  background: var(--surface);
  font-size: clamp(17px, 2.1vw, 22px); line-height: 1.5;
}
.pullquote strong { color: var(--green); }

/* ----------------------------------------------------------- TOOL-KARTEN */
.tool {
  display: flex; flex-direction: column; gap: 14px;
  padding: 26px;
  border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color 220ms ease, transform 220ms var(--ease-out);
}
.tool > header { display: flex; align-items: center; gap: 13px; }
.tool h3 { font-size: 18.5px; }
.tool__cat { display: block; margin-top: 2px; font-size: 13px; color: var(--mute); }
.tool__mark {
  flex: none; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: color-mix(in srgb, var(--mark) 20%, #000);
  border: 1px solid color-mix(in srgb, var(--mark) 45%, #000);
  color: color-mix(in srgb, var(--mark) 82%, #fff);
  font-size: 15px; font-weight: 800;
}
.tool p { color: var(--soft); font-size: 15px; }

.replaces {
  display: flex; flex-wrap: wrap; align-content: start; align-items: center; gap: 6px;
  min-height: 66px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.replaces > span {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute); margin-right: 2px;
}
.replaces s {
  text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 1.5px;
  font-size: 13px; font-weight: 600; color: var(--soft);
  padding: 3px 9px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
}

/* ----------------------------------------------------------- MID-CTA */
.midcta {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 20px 28px; text-align: center;
  padding: 36px;
  border-radius: var(--r-card);
  border: 1px solid var(--line-2);
  background: var(--surface);
}
.midcta h3 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 6px; }
.midcta p { color: var(--soft); font-size: 15.5px; }

/* ----------------------------------------------------------- PIPELINE */
.pipe {
  display: grid; grid-template-columns: 1fr auto 1.05fr auto 1fr;
  align-items: center; gap: 18px;
  padding: 28px; margin-bottom: 38px;
  border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--line);
}
.pipe__label {
  display: block; margin-bottom: 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute);
}
.pipe__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.pipe__col li {
  padding: 7px 12px; border-radius: var(--r-btn);
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  font-size: 13.5px; color: var(--soft);
}
.pipe__arrow { color: var(--green); }
.pipe__arrow svg { width: 26px; height: 26px; }
.pipe__core {
  padding: 22px; border-radius: 12px; text-align: center;
  background: rgba(121, 250, 79, 0.1); border: 1px solid rgba(121, 250, 79, 0.42);
}
.pipe__core strong { display: block; font-size: 23px; font-weight: 800; color: var(--green); }
.pipe__core > span:last-child { font-size: 13.5px; color: var(--soft); }

/* ----------------------------------------------------------- VORGEHEN */
.path { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.path li {
  position: relative; padding: 28px;
  border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color 220ms ease, transform 220ms var(--ease-out);
}
.path li:not(:last-child)::after {
  content: ''; position: absolute; right: -14px; top: 50px; width: 14px; height: 1px; background: var(--line-2);
}
.path__no { display: block; margin-bottom: 16px; font-size: 26px; font-weight: 800; color: var(--green); }
.path h3 { font-size: 18px; margin-bottom: 9px; }
.path p { color: var(--soft); font-size: 15px; }

/* ----------------------------------------------------------- FAQ */
.faq { display: grid; gap: 8px; max-width: 900px; margin-inline: auto; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 2px 26px;
  transition: border-color 200ms ease;
}
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 20px 36px 20px 0;
  font-weight: 700; font-size: 17px; position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ''; position: absolute; right: 6px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 200ms var(--ease-out);
}
.faq__item[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq__item p { padding: 0 0 22px; color: var(--soft); font-size: 15.5px; max-width: 72ch; }
.faq__item[open] { border-color: var(--line-2); }

/* Aufklappen animieren – ohne Uebergang wirkt erscheinender Inhalt kaputt.
   Ohne ::details-content-Support klappt das Accordion wie bisher hart auf. */
@media (prefers-reduced-motion: no-preference) {
  :root { interpolate-size: allow-keywords; }
  .faq__item::details-content {
    block-size: 0; overflow: clip;
    transition: block-size 260ms var(--ease-out), content-visibility 260ms allow-discrete;
  }
  .faq__item[open]::details-content { block-size: auto; }
}

/* ----------------------------------------------------------- KONTAKT
   Sektion liegt über einem Foto – identischer Aufbau wie auf jerocom.de. */
.contact { position: relative; padding: 104px 0; overflow: hidden; isolation: isolate; }
.contact__media { position: absolute; inset: 0; z-index: -2; }
.contact__media img { width: 100%; height: 100%; object-fit: cover; object-position: 34% center; }
.contact::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.6) 26%, rgba(0,0,0,0.5) 44%, rgba(0,0,0,0.9) 60%, rgba(0,0,0,0.97) 100%),
    linear-gradient(to bottom, #000 0%, transparent 18%, transparent 84%, #000 100%);
}
.contact__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.contact__intro { text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85); }
.contact__intro h2 { font-size: clamp(30px, 4.1vw, 48px); margin-bottom: 18px; }

.contact__meta { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.contact__meta li { display: grid; gap: 2px; }
.contact__meta span { font-size: 13px; color: var(--mute); }
.contact__meta a {
  display: inline-flex; align-items: center; min-height: 32px;
  color: var(--green); font-weight: 700; font-size: 18px;
  text-decoration: none; font-family: 'Manrope', sans-serif;
}
.contact__usp {
  list-style: none; margin: 28px 0 0; padding: 24px 0 0;
  border-top: 1px solid var(--line); display: grid; gap: 10px;
}
.contact__usp li { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; font-size: 14.5px; color: var(--soft); }
.contact__usp svg { width: 17px; height: 17px; margin-top: 3px; color: var(--green); }

.form {
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 34px;
  display: grid; gap: 12px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--soft); }
.field label span[aria-hidden] { color: var(--green); }

.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  font: inherit; font-size: 16px; color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2);
  border-radius: var(--r-btn);
  transition: border-color 180ms ease, background-color 180ms ease;
}
.field select option { background: #0c0c0c; color: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: rgba(255, 255, 255, 0.08);
}
.field input::placeholder, .field textarea::placeholder { color: var(--mute); }
.field[data-invalid='true'] input,
.field[data-invalid='true'] textarea,
.field[data-invalid='true'] select { border-color: var(--red); }

.field__err {
  height: 17px; font-size: 13px; line-height: 17px; color: var(--red);
  opacity: 0; transform: translateY(-3px);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}
.field__err[data-show='true'] { opacity: 1; transform: translateY(0); }

.field--check { gap: 8px; }
.check {
  display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start;
  font-size: 13.5px; font-weight: 400 !important; color: var(--soft) !important;
  line-height: 1.5; cursor: pointer;
}
.check input { width: 24px; height: 24px; accent-color: var(--green); cursor: pointer; }
.check a { color: var(--green); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status {
  font-size: 15px; font-weight: 600; min-height: 1px;
  opacity: 0; transform: translateY(-4px);
  transition: opacity 200ms ease, transform 200ms var(--ease-out);
}
.form__status[data-show='true'] { opacity: 1; transform: translateY(0); }
.form__status[data-type='ok']    { color: var(--green); }
.form__status[data-type='error'] { color: var(--red); }

/* ----------------------------------------------------------- FOOTER */
.footer { background: var(--bg); padding: 72px 0 40px; border-top: 1px solid var(--line); }
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; align-items: start;
  padding-bottom: 36px; border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; gap: 16px; max-width: 360px; align-items: start; }
.footer__brand strong { font-family: 'Manrope', sans-serif; font-size: 17px; }
.footer__brand p { margin-top: 6px; font-size: 14.5px; color: var(--mute); }

.footer__nav { display: grid; grid-template-columns: repeat(3, minmax(140px, auto)); gap: 40px; }
.footer__nav div { display: grid; gap: 10px; align-content: start; }
.footer__nav h4 {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 2px;
}
.footer__nav a { color: var(--soft); text-decoration: none; font-size: 14.5px; transition: color 180ms ease; }

.footer__legal {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  padding-top: 24px; font-size: 13.5px; color: var(--mute);
}

/* ----------------------------------------------------------- REVEAL */
.js .reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.js .reveal[data-visible='true'] { opacity: 1; transform: none; }

/* ----------------------------------------------------------- HOVER */
@media (hover: hover) and (pointer: fine) {
  .nav__links a:hover { color: var(--green); }
  .nav__links a:hover::after { transform: scaleX(1); }
  .btn--primary:hover { background: var(--green-dark); }
  .btn--ghost:hover { background: rgba(121, 250, 79, 0.12); }
  .btn--light:hover { background: var(--paper-2); }
  .card:hover, .tool:hover, .path li:hover { border-color: var(--line-2); transform: translateY(-3px); }
  .card--cta:hover { background: var(--green-dark); transform: translateY(-3px); }
  .timeline li:hover { background: rgba(255, 255, 255, 0.025); }
  .faq__item:hover { border-color: var(--line-2); }
  .footer__nav a:hover { color: var(--green); }
  .nav__mobile a:hover { background: rgba(255, 255, 255, 0.06); }
  .nav__burger:hover { border-color: var(--line-2); }
}

/* ----------------------------------------------------------- RESPONSIVE */
@media (max-width: 1080px) {
  .path { grid-template-columns: repeat(2, 1fr); }
  .path li:nth-child(2)::after { display: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .pipe { grid-template-columns: 1fr; gap: 16px; }
  .pipe__arrow { justify-self: center; transform: rotate(90deg); }
  .proof__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .nav__links, .nav__cta, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .compare { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 132px 0 72px; }
}

@media (max-width: 680px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }
  .grid--3, .form__row, .path, .proof__list { grid-template-columns: 1fr; }
  .path li::after { display: none !important; }
  .section { padding: 64px 0; }
  .contact { padding: 64px 0; }
  .hero { padding: 116px 0 60px; }
  .hero__actions { width: 100%; flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .card, .tool, .form, .path li, .compare__panel { padding: 22px; }
  .faq__item { padding: 2px 20px; }
  .timeline li { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .pullquote { padding: 24px; }
  .midcta { padding: 26px; }
  .midcta .btn { width: 100%; }
  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}

/* ----------------------------------------------------------- REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Reduced Motion heisst sanfter, nicht gar nichts: Farb- und Deckkraftwechsel
     tragen Bedeutung und bleiben, jede Ortsveraenderung faellt weg. */
  *, *::before, *::after {
    transition-property: opacity, color, background-color, border-color, box-shadow, outline-color, fill, stroke, filter !important;
    transition-duration: 180ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .card:hover, .tool:hover, .path li:hover, .card--cta:hover { transform: none; }
  .btn:active, .brand:active, .nav__burger:active { transform: none; }
  .nav__mobile[data-enter='false'] { transform: none; }
  .timeline li::before { transform: scaleX(1); }
  /* Der Spinner bleibt: er ist Statusanzeige, keine Dekoration. */
}
