/* ══════════════════════════════════════════════════════════════════════
   secomply — GEMEINSAMES STYLESHEET (Landing Page + Kontaktseite)
   Eine Datei, beide Seiten. Änderungen wirken überall.

   Aufbau:
   1 Tokens · 2 Reset · 3 Typo & Sektions-System · 4 Buttons
   5 Nav · 6 Hero · 7 Segment-Router · 8 Content-Sektionen
   9 Gründer · 10 Kontakt-Block · 11 Sticky-CTA · 12 Footer
   13 Modals · 14 Motion · 15 Responsive
   ══════════════════════════════════════════════════════════════════════ */

/* ═══ 1 · TOKENS ═══════════════════════════════════════════════════ */
:root {
  /* Flächen-Ebenen: der eigentliche Fix gegen die "endlose Fläche".
     Jede Sektion sitzt auf einer dieser drei Ebenen, im Wechsel.      */
  --s0:      #04131F;   /* Basis, tiefste Ebene                       */
  --s1:      #071E2E;   /* eine Stufe heller                          */
  --s2:      #0A2537;   /* erhöhte Flächen / Karten-Hintergrund       */

  --navy:    #04131F;
  --navy2:   #071E2E;
  --navy3:   #0A2A3E;
  --card:    #0D2F44;

  --cyan:    #36E2C4;
  --cyan2:   #1FC8AC;
  --cyan-dim:#12463E;
  --white:   #FFFFFF;
  --muted:   #9CC4D2;   /* AA-konform auf allen drei Flächen          */
  --muted2:  #8AAEBC;   /* AA-konform auch bei 11px Kleintext */
  --border:  rgba(54,226,196,.18);
  --border2: rgba(148,196,210,.10);
  --warn:    #F5A623;
  --red:     #E74C3C;
  --green:   #2ECC71;

  /* Abstands-Skala — konsistenter Rhythmus statt Zufallswerte */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 48px; --sp-6: 64px; --sp-7: 88px; --sp-8: 120px;

  --sec-y: 112px;        /* vertikaler Sektionsabstand desktop */
  --r: 10px; --r2: 14px; --r3: 20px;
  --maxw: 1140px;

  --shadow-1: 0 8px 28px rgba(0,0,0,.28);
  --shadow-2: 0 24px 64px rgba(0,0,0,.42);
  --ease: cubic-bezier(.16,1,.3,1);
}

/* ═══ 2 · RESET ════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--s0); color: var(--white);
  font-size: 16px; line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* ═══ 3 · TYPO & SEKTIONS-SYSTEM ═══════════════════════════════════ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Jede Sektion bekommt eine Flächen-Ebene. Der Wechsel erzeugt den
   sichtbaren Schnitt — zusätzlich markiert ein Licht-Saum die Kante. */
.sec            { padding: var(--sec-y) 0; position: relative; }
.sec--0         { background: var(--s0); }
.sec--1         { background: var(--s1); }
.sec--2         { background: var(--s2); }

/* Licht-Saum an der Oberkante: hell in der Mitte, aussen verlaufend.
   Macht den Übergang bewusst sichtbar, ohne harte Linie.             */
.sec--1::before, .sec--2::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54,226,196,.35), transparent);
}
/* Weicher Farbverlauf am oberen Rand — der eigentliche Tiefen-Effekt */
.sec--1::after, .sec--2::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(820px, 90%); height: 220px; pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(54,226,196,.07), transparent 70%);
}

.sec-head { max-width: 680px; margin-bottom: var(--sp-5); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); background: rgba(54,226,196,.07);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 5px 14px; margin-bottom: var(--sp-2);
}
.tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }

.section-title {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800; letter-spacing: -.035em;
  line-height: 1.12; margin-bottom: var(--sp-2);
  text-wrap: balance;
}
.section-sub {
  font-size: 17px; color: var(--muted);
  max-width: 620px; line-height: 1.7;
}
.sec-head.center .section-sub { margin-left: auto; margin-right: auto; }
.cyan { color: var(--cyan); }
em.cyan, .section-title em { font-style: normal; color: var(--cyan); }
.muted { color: var(--muted); }

/* ═══ 4 · BUTTONS ══════════════════════════════════════════════════ */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  padding: 15px 28px; border-radius: var(--r);
  cursor: pointer; border: 1px solid transparent;
  transition: background .2s, transform .18s var(--ease), box-shadow .25s, border-color .2s;
  text-align: center;
}
.btn-primary { background: var(--cyan); color: var(--navy); box-shadow: 0 4px 16px rgba(54,226,196,.18); }
.btn-primary:hover { background: var(--cyan2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(54,226,196,.30); }
.btn-ghost { background: rgba(255,255,255,.03); color: var(--white); border-color: var(--border); font-weight: 600; }
.btn-ghost:hover { border-color: var(--cyan); background: rgba(54,226,196,.08); transform: translateY(-1px); }

/* Risiko-Umkehr: die Zeile direkt unter jedem CTA */
.risk-reversal {
  font-size: 12.5px; color: var(--muted2); margin-top: 14px;
  line-height: 1.55; max-width: 520px;
}
.risk-reversal::before { content: '🔒 '; font-size: 12px; }
.sec-head.center .risk-reversal, .vs-cta .risk-reversal { margin-left: auto; margin-right: auto; text-align: center; }

/* ═══ 5 · NAV ══════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(4,19,31,.72); backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  height: 68px; display: flex; align-items: center;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
nav.scrolled { background: rgba(4,19,31,.94); border-bottom-color: var(--border2); box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.logo { font-size: 21px; font-weight: 800; letter-spacing: -.035em; }
.logo span { color: var(--cyan); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links > a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links > a:hover { color: var(--white); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--white) !important;
  padding: 8px 12px; border-radius: 8px; border: 1px solid var(--border2);
  transition: border-color .2s, background .2s;
}
.nav-phone svg { width: 14px; height: 14px; fill: var(--cyan); }
.nav-phone:hover { border-color: var(--cyan); background: rgba(54,226,196,.07); }
.nav-cta {
  background: var(--cyan); color: var(--navy) !important;
  font-weight: 700 !important; font-size: 14px !important;
  padding: 10px 20px; border-radius: 8px;
  transition: background .2s, transform .18s, box-shadow .2s;
}
.nav-cta:hover { background: var(--cyan2); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(54,226,196,.28); }
.nav-progress { position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--cyan); transition: width .1s linear; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px 6px; width: 40px; }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.hamburger span + span { margin-top: 5px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ 6 · HERO ═════════════════════════════════════════════════════ */
.hero-sec {
  position: relative; background: var(--s0);
  padding: 148px 0 var(--sp-7);
  overflow: hidden;
}
.hero-sec::before {   /* Lichtquelle oben links — gibt dem Hero Tiefe */
  content: ''; position: absolute; top: -180px; left: -120px;
  width: 720px; height: 620px; pointer-events: none;
  background: radial-gradient(circle, rgba(54,226,196,.10) 0%, transparent 62%);
}
.hero { display: grid; grid-template-columns: 1.14fr .86fr; gap: var(--sp-6); align-items: center; position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: var(--sp-3);
  background: rgba(54,226,196,.07); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 14px;
}
.hero-eyebrow .live-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }
.hero-h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 900; letter-spacing: -.045em; line-height: 1.03;
  margin-bottom: var(--sp-3); text-wrap: balance;
}
.hero-h1 em { font-style: normal; color: var(--cyan); }
.hero-sub { font-size: 18.5px; color: var(--muted); line-height: 1.68; max-width: 520px; margin-bottom: var(--sp-4); }
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 20px; margin-top: var(--sp-4); flex-wrap: wrap; }
.hero-proof-item { font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.hero-proof-item::before {
  content: '✓'; color: var(--cyan); font-weight: 800; font-size: 11px;
  width: 18px; height: 18px; border-radius: 50%; background: rgba(54,226,196,.12);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Status-Panel */
.status-panel {
  background: linear-gradient(165deg, var(--s1) 0%, var(--s2) 100%);
  border: 1px solid var(--border); border-radius: var(--r3);
  padding: 28px; position: relative; overflow: hidden; box-shadow: var(--shadow-2);
}
.status-panel::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(54,226,196,.10) 0%, transparent 70%); pointer-events: none;
}
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-3); }
.panel-title { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.panel-live { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--cyan); }
.live-dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }

.status-card {
  background: rgba(4,19,31,.5); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 15px 17px; margin-bottom: 10px; transition: border-color .3s;
}
.status-card:hover { border-color: var(--border); }
.sc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.sc-name { font-size: 14px; font-weight: 700; }
.sc-score { font-size: 22px; font-weight: 900; letter-spacing: -.03em; color: var(--cyan); font-variant-numeric: tabular-nums; }
.sc-score.warn { color: var(--warn); } .sc-score.red { color: var(--red); }
.progress-track { height: 5px; background: rgba(255,255,255,.08); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--cyan2), var(--cyan)); transition: width 1.4s var(--ease); }
.progress-fill.warn { background: linear-gradient(90deg, #d48a10, var(--warn)); }
.progress-fill.red { background: linear-gradient(90deg, #b03020, var(--red)); }
.sc-meta { display: flex; justify-content: space-between; gap: 10px; margin-top: 8px; font-size: 11px; color: var(--muted2); }

.panel-cta {
  margin-top: var(--sp-2); background: rgba(54,226,196,.09);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.panel-cta p { font-size: 13.5px; color: var(--white); font-weight: 600; }
.panel-cta p small { display: block; font-size: 11.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.panel-cta-btn {
  background: var(--cyan); color: var(--navy); font-size: 12.5px; font-weight: 700;
  padding: 10px 16px; border-radius: 8px; white-space: nowrap; flex-shrink: 0;
  cursor: pointer; border: none; transition: background .2s, transform .18s;
}
.panel-cta-btn:hover { background: var(--cyan2); transform: translateY(-1px); }

/* Trust-Leiste */
.proof-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; gap: 12px; }
.proof-stat {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 14px 16px; transition: border-color .25s, transform .25s var(--ease);
}
.proof-stat:hover { border-color: var(--border); transform: translateY(-2px); }
.proof-stat .p-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--cyan-dim);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.proof-stat .val { font-size: 15px; font-weight: 800; letter-spacing: -.02em; color: var(--white); line-height: 1.25; }
.proof-stat .lbl { font-size: 11.5px; color: var(--muted2); margin-top: 2px; line-height: 1.4; }

/* ═══ 7 · SEGMENT-ROUTER ═══════════════════════════════════════════ */
.router-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: var(--sp-4); }
.router-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(170deg, var(--s2) 0%, rgba(10,37,55,.55) 100%);
  border: 1px solid var(--border2); border-radius: var(--r3);
  padding: 28px 26px 24px; overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.router-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: var(--shadow-2); }
.router-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .25s;
}
.router-card:hover::before { opacity: 1; }
.rc-quote { font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.5; margin-bottom: 12px; }
.rc-quote::before { content: '„'; color: var(--cyan); font-size: 26px; line-height: 0; vertical-align: -6px; margin-right: 2px; }
.rc-quote::after  { content: '\201C'; color: var(--cyan); font-size: 26px; line-height: 0; vertical-align: -6px; margin-left: 2px; }
.rc-body { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.rc-link { font-size: 13.5px; font-weight: 700; color: var(--cyan); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.router-card:hover .rc-link { gap: 10px; }
.rc-link { transition: gap .2s; }
.rc-badge {
  align-self: flex-start; font-size: 10.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--cyan); background: rgba(54,226,196,.1); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 11px; margin-bottom: 14px;
}

/* ═══ 8 · CONTENT-SEKTIONEN ════════════════════════════════════════ */
/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  position: relative; background: linear-gradient(180deg, var(--s2) 0%, rgba(10,37,55,.5) 100%);
  border: 1px solid var(--border2); border-radius: var(--r3);
  padding: 30px 28px; display: flex; flex-direction: column; overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .25s;
}
.service-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-2); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px; background: var(--cyan-dim); border: 1px solid var(--border);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.service-card h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em; line-height: 1.3; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.68; margin-bottom: 20px; flex: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.stag {
  font-size: 11px; font-weight: 600; color: var(--cyan);
  background: rgba(54,226,196,.08); border: 1px solid rgba(54,226,196,.2);
  border-radius: 100px; padding: 4px 10px;
}

/* Frameworks */
.fw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fw-card {
  background: rgba(4,19,31,.42); border: 1px solid var(--border2); border-radius: var(--r2);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 11px;
  transition: border-color .25s, transform .22s var(--ease);
}
.fw-card:hover { border-color: var(--border); transform: translateY(-3px); }
.fw-label { font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--cyan); }
.fw-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -.025em; }
.fw-card p { font-size: 13.5px; color: var(--muted); line-height: 1.62; flex: 1; }
.fw-badge {
  display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: 100px;
  background: rgba(46,204,113,.12); color: #4FE08A; border: 1px solid rgba(46,204,113,.25); align-self: flex-start;
}
.fw-badge.urgent { background: rgba(245,166,35,.12); color: var(--warn); border-color: rgba(245,166,35,.3); }

/* Pakete */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.pricing-card {
  background: rgba(4,19,31,.42); border: 1px solid var(--border2); border-radius: var(--r3);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
  transition: border-color .25s, transform .22s var(--ease);
}
.pricing-card:hover { border-color: var(--border); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--cyan); background: linear-gradient(165deg, var(--s1) 0%, var(--card) 100%);
  box-shadow: 0 0 0 1px rgba(54,226,196,.16), var(--shadow-2);
}
.pricing-card.featured::before {
  content: 'Am häufigsten gewählt'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--navy); font-size: 11px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 15px; border-radius: 100px; white-space: nowrap;
}
.pricing-tier { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted2); margin-bottom: 8px; }
.pricing-name { font-size: 23px; font-weight: 800; letter-spacing: -.035em; margin-bottom: 10px; }
.pricing-fit {
  font-size: 13px; color: var(--cyan); font-weight: 600; line-height: 1.55;
  background: rgba(54,226,196,.07); border-left: 2px solid var(--cyan);
  padding: 10px 13px; border-radius: 0 8px 8px 0; margin-bottom: 18px;
}
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 22px; line-height: 1.65; }
.pricing-features { list-style: none; margin-bottom: 26px; flex: 1; }
.pricing-features li {
  font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border2);
  display: flex; gap: 10px; align-items: flex-start; color: var(--muted);
}
.pricing-features li::before { content: '✓'; color: var(--cyan); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.pricing-features li strong { color: var(--white); }
.pricing-btn {
  width: 100%; padding: 14px; border-radius: var(--r); font-size: 14.5px; font-weight: 700;
  cursor: pointer; background: rgba(255,255,255,.04); color: var(--white);
  border: 1px solid var(--border); transition: background .2s, border-color .2s, transform .18s;
  text-align: center; display: block;
}
.pricing-btn:hover { background: rgba(54,226,196,.1); border-color: var(--cyan); transform: translateY(-1px); }
.pricing-card.featured .pricing-btn { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.pricing-card.featured .pricing-btn:hover { background: var(--cyan2); }
.pricing-note {
  margin-top: var(--sp-4); text-align: center; font-size: 14px; color: var(--muted);
  background: rgba(255,255,255,.03); border: 1px solid var(--border2); border-radius: var(--r2);
  padding: 18px 24px; max-width: 720px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.pricing-note strong { color: var(--white); }

/* Ablauf */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 30px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px; background: linear-gradient(90deg, var(--border2), var(--border), var(--border2)); pointer-events: none;
}
.process-step { text-align: center; padding: 0 16px; }
.step-circle {
  width: 60px; height: 60px; background: var(--s2); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 20px; position: relative; z-index: 1;
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.process-step:hover .step-circle { border-color: var(--cyan); background: rgba(54,226,196,.1); transform: scale(1.06); }
.step-num {
  position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan); color: var(--navy); font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.015em; }
.process-step p { font-size: 13.5px; color: var(--muted); line-height: 1.62; }
.process-when { display: block; font-size: 11.5px; color: var(--cyan); font-weight: 700; margin-top: 8px; }

/* Nutzen */
.ben-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-6); align-items: center; }
.ben-list { display: flex; flex-direction: column; gap: 18px; margin-top: var(--sp-3); }
.ben-item { display: flex; gap: 15px; align-items: flex-start; }
.ben-item .ben-ic {
  width: 38px; height: 38px; border-radius: 11px; background: var(--cyan-dim);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.ben-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; letter-spacing: -.015em; }
.ben-item span { font-size: 13.5px; color: var(--muted); line-height: 1.62; }
.dl-cta {
  position: relative; background: linear-gradient(165deg, var(--s1) 0%, var(--card) 100%);
  border: 1px solid var(--border); border-radius: var(--r3); padding: 34px 30px;
  text-align: center; overflow: hidden; box-shadow: var(--shadow-2);
}
.dl-cta::before {
  content: ''; position: absolute; top: -70px; right: -70px; width: 230px; height: 230px;
  background: radial-gradient(circle, rgba(54,226,196,.15) 0%, transparent 65%); pointer-events: none;
}
.dl-cta .dlc-icon {
  width: 60px; height: 60px; border-radius: 16px; background: var(--cyan-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px;
}
.dl-cta h3 { font-size: 21px; font-weight: 800; letter-spacing: -.025em; margin-bottom: 8px; }
.dl-cta p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 22px; }
.dl-cta button {
  background: var(--cyan); color: var(--navy); border: none; cursor: pointer; width: 100%;
  font-size: 15px; font-weight: 800; padding: 15px 26px; border-radius: var(--r);
  transition: background .2s, transform .2s;
}
.dl-cta button:hover { background: var(--cyan2); transform: translateY(-2px); }
.dl-cta .dlc-note { font-size: 11.5px; color: var(--muted2); margin: 12px 0 0; }

/* Versus */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vs-card { border-radius: var(--r3); overflow: hidden; border: 1px solid var(--border2); background: rgba(4,19,31,.42); }
.vs-card.win { border-color: var(--border); box-shadow: 0 0 0 1px rgba(54,226,196,.14), var(--shadow-2); }
.vs-head { padding: 17px 24px; font-size: 15.5px; font-weight: 800; letter-spacing: -.015em; text-align: center; }
.vs-card.lose .vs-head { background: rgba(255,255,255,.04); color: var(--muted); }
.vs-card.win .vs-head { background: var(--cyan); color: var(--navy); }
.vs-body { padding: 24px; display: flex; flex-direction: column; gap: 15px; }
.vs-row { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.58; }
.vs-row .vs-ic {
  width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; flex-shrink: 0; margin-top: 2px;
}
.vs-card.lose .vs-row { color: var(--muted); }
.vs-card.lose .vs-ic { background: rgba(231,76,60,.15); color: #FF7B6B; }
.vs-card.win .vs-row { color: var(--white); }
.vs-card.win .vs-ic { background: var(--cyan); color: var(--navy); }
.vs-cta { text-align: center; margin-top: var(--sp-5); }
.vs-cta .risk-reversal { justify-content: center; }

/* Kunden & Bewertungen */
.client-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: var(--sp-3); }
.client-logo {
  background: rgba(255,255,255,.03); border: 1px solid var(--border2); border-radius: var(--r2);
  min-height: 80px; padding: 16px 20px; display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.client-logo:hover { border-color: var(--border); background: rgba(255,255,255,.05); transform: translateY(-3px); }
.client-logo img { height: 30px; width: auto; max-width: 100%; filter: brightness(0) invert(1); opacity: .72; transition: opacity .25s; }
.client-logo:hover img { opacity: 1; }
.client-logo.cl-more { flex-direction: column; gap: 2px; }
.client-logo.cl-more strong { font-size: 18px; font-weight: 900; color: var(--cyan); letter-spacing: -.02em; }
.client-logo.cl-more span { font-size: 11px; color: var(--muted2); font-weight: 600; text-align: center; }

.rating-row {
  display: flex; align-items: center; gap: 11px; flex-wrap: wrap;
  background: rgba(255,255,255,.03); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 13px 18px; margin-bottom: var(--sp-4); width: fit-content;
}
.rating-row .stars { color: #FFD24A; font-size: 17px; letter-spacing: 2px; }
.rating-row p { font-size: 13.5px; color: var(--muted); }
.rating-row p strong { color: var(--white); }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-card {
  background: rgba(4,19,31,.42); border: 1px solid var(--border2); border-radius: var(--r3);
  padding: 28px; display: flex; flex-direction: column;
  transition: border-color .25s, transform .22s var(--ease);
}
.trust-card:hover { border-color: var(--border); transform: translateY(-3px); }
.trust-quote { font-size: 14px; color: var(--muted); line-height: 1.72; margin-bottom: 20px; flex: 1; }
.trust-quote::before { content: '„'; color: var(--cyan); font-size: 26px; line-height: 0; vertical-align: -8px; margin-right: 3px; }
.trust-author { display: flex; align-items: center; gap: 12px; }
.trust-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--cyan-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--cyan); flex-shrink: 0;
}
.trust-name { font-size: 13.5px; font-weight: 700; }
.trust-role { font-size: 11.5px; color: var(--muted2); }
.trust-more { text-align: center; margin-top: var(--sp-3); }
.trust-more a { font-size: 13.5px; color: var(--cyan); font-weight: 600; }

/* Software-Sektion */
.sw-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  grid-template-areas: "head mock" "mods mock"; column-gap: var(--sp-6); align-items: center;
}
.sw-head { grid-area: head; } .sw-modwrap { grid-area: mods; } .sw-mock { grid-area: mock; }
.sw-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: var(--sp-3); }
.sw-module {
  background: rgba(4,19,31,.45); border: 1px solid var(--border2); border-radius: 12px;
  padding: 13px 14px; display: flex; align-items: center; gap: 11px; cursor: pointer; user-select: none;
  transition: border-color .2s, transform .2s var(--ease), background .2s;
}
.sw-module:hover { border-color: var(--cyan); transform: translateY(-2px); }
.sw-module.active { border-color: var(--cyan); background: var(--cyan-dim); }
.sw-module.active strong { color: var(--cyan); }
.sw-module .swm-icon { font-size: 19px; flex-shrink: 0; }
.sw-module strong { font-size: 13px; font-weight: 700; letter-spacing: -.01em; }
.sw-detail {
  grid-column: 1 / -1; margin-top: 4px; background: var(--card);
  border: 1px solid var(--border); border-left: 3px solid var(--cyan); border-radius: 12px;
  padding: 16px 18px; display: flex; gap: 14px; align-items: flex-start; min-height: 88px;
}
.sw-detail .swd-icon { font-size: 24px; line-height: 1; margin-top: 2px; }
.sw-detail strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 4px; letter-spacing: -.01em; }
.sw-detail p { font-size: 13px; color: var(--muted); line-height: 1.62; }
.sw-mock { background: var(--s1); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-2); }
.sw-mock-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: var(--navy3); border-bottom: 1px solid var(--border2); }
.sw-mock-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--muted2); opacity: .5; }
.sw-mock-bar span:first-child { background: var(--red); opacity: .8; }
.sw-mock-bar span:nth-child(2) { background: var(--warn); opacity: .8; }
.sw-mock-bar span:nth-child(3) { background: var(--green); opacity: .8; }
.sw-mock-bar .sw-url { flex: 1; text-align: center; font-size: 10.5px; color: var(--muted2); letter-spacing: .04em; }
.sw-mock-body { display: grid; grid-template-columns: 136px 1fr; }
.sw-side { background: rgba(4,19,31,.5); border-right: 1px solid var(--border2); padding: 14px 0; }
.sw-side a { display: block; font-size: 11px; font-weight: 600; color: var(--muted); padding: 8px 16px; border-left: 2px solid transparent; }
.sw-side a.on { color: var(--cyan); border-left-color: var(--cyan); background: var(--cyan-dim); }
.sw-main { padding: 18px; }
.sw-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.sw-kpi { background: var(--card); border: 1px solid var(--border2); border-radius: 10px; padding: 12px; }
.sw-kpi .k-val { font-size: 19px; font-weight: 900; letter-spacing: -.03em; }
.sw-kpi .k-val.c { color: var(--cyan); } .sw-kpi .k-val.w { color: var(--warn); } .sw-kpi .k-val.g { color: var(--green); }
.sw-kpi .k-lbl { font-size: 9.5px; color: var(--muted2); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }
.sw-rows { display: flex; flex-direction: column; gap: 9px; }
.sw-row { display: grid; grid-template-columns: 92px 1fr 36px; gap: 10px; align-items: center; }
.sw-row .r-lbl { font-size: 11px; color: var(--muted); font-weight: 600; }
.sw-row .r-track { height: 6px; background: rgba(255,255,255,.06); border-radius: 100px; overflow: hidden; }
.sw-row .r-fill { height: 100%; border-radius: 100px; background: var(--cyan); }
.sw-row .r-fill.w { background: var(--warn); } .sw-row .r-fill.g { background: var(--green); }
.sw-row .r-pct { font-size: 11px; font-weight: 700; color: var(--muted); text-align: right; font-variant-numeric: tabular-nums; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: 1.25fr .75fr; gap: var(--sp-5); align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: rgba(4,19,31,.42); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 4px 20px; transition: border-color .2s, background .2s;
}
.faq-item:hover, .faq-item.open { border-color: var(--border); }
.faq-item.open { background: var(--card); }
.faq-q {
  font-size: 16px; font-weight: 600; cursor: pointer; padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  letter-spacing: -.012em; user-select: none;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--cyan); transition: transform .25s; line-height: 1; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.72; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 340px; padding: 0 0 18px; }
.faq-graphic { position: sticky; top: 100px; }
.cl-card {
  position: relative; background: linear-gradient(180deg, var(--s1) 0%, var(--card) 100%);
  border: 1px solid var(--border); border-radius: var(--r3); padding: 26px;
  box-shadow: var(--shadow-2); overflow: hidden;
}
.cl-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.cl-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.cl-head strong { font-size: 15px; font-weight: 800; letter-spacing: -.01em; display: block; margin-bottom: 3px; }
.cl-head span { font-size: 11.5px; color: var(--muted2); }
.cl-ring { position: relative; width: 62px; height: 62px; flex-shrink: 0; }
.cl-ring svg { transform: rotate(-90deg); }
.cl-ring .ring-bg { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 6; }
.cl-ring .ring-fg { fill: none; stroke: var(--cyan); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 163; stroke-dashoffset: 54; filter: drop-shadow(0 0 6px rgba(54,226,196,.5)); }
.cl-ring .ring-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: var(--cyan); letter-spacing: -.02em; }
.cl-items { display: flex; flex-direction: column; gap: 9px; }
.cl-item {
  display: flex; align-items: center; gap: 11px; background: rgba(4,19,31,.45);
  border: 1px solid var(--border2); border-radius: 10px; padding: 11px 13px;
  font-size: 13px; color: var(--white); font-weight: 500; transition: border-color .2s, transform .2s;
}
.cl-item:hover { border-color: var(--border); transform: translateX(3px); }
.cl-item .cl-emoji { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.cl-item .cl-check {
  margin-left: auto; width: 20px; height: 20px; border-radius: 50%; background: var(--cyan);
  color: var(--navy); font-size: 11px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cl-item.pending { color: var(--muted2); }
.cl-item.pending .cl-check { background: transparent; border: 1.5px dashed var(--muted2); color: transparent; }

/* ═══ 9 · GRÜNDER ══════════════════════════════════════════════════ */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--sp-6); align-items: center; }
.founder-media { position: relative; }
.founder-photo {
  position: relative; border-radius: var(--r3); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-2); aspect-ratio: 4 / 5;
  background: linear-gradient(165deg, var(--s2), var(--card));
}
.founder-photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.founder-initials {
  position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center;
  font-size: 68px; font-weight: 900; color: var(--cyan); letter-spacing: -.04em;
}
.founder-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.fb-chip {
  font-size: 11.5px; font-weight: 700; color: var(--cyan); background: rgba(54,226,196,.09);
  border: 1px solid var(--border); border-radius: 100px; padding: 5px 12px;
}
.founder-quote {
  font-size: 17px; color: var(--white); line-height: 1.72; margin: var(--sp-2) 0 var(--sp-3);
  padding-left: 20px; border-left: 3px solid var(--cyan);
}
.founder-sign {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2);
  margin-bottom: var(--sp-3);
}
.founder-sign strong { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.02em; }
.founder-sign span { font-size: 13px; color: var(--muted2); }
.founder-li {
  width: 38px; height: 38px; border-radius: 10px; background: var(--cyan-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .2s;
}
.founder-li svg { width: 16px; height: 16px; fill: var(--cyan); }
.founder-li:hover { background: var(--cyan); transform: translateY(-2px); }
.founder-li:hover svg { fill: var(--navy); }
.founder-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══ 10 · KONTAKT-BLOCK ═══════════════════════════════════════════ */
.contact-ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: var(--sp-5); }
.way {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border2); border-radius: var(--r2);
  padding: 18px 20px; transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.way:hover { border-color: var(--cyan); background: rgba(54,226,196,.06); transform: translateY(-2px); }
.way-ic {
  width: 42px; height: 42px; border-radius: 12px; background: var(--cyan-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.way-ic svg { width: 17px; height: 17px; fill: var(--cyan); }
.way-txt { min-width: 0; }
.way-txt strong { display: block; font-size: 11px; font-weight: 700; color: var(--muted2); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.way-txt > span:not(.way-note) { display: block; font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -.015em; line-height: 1.35; word-break: break-word; }
.way-note { display: block; font-size: 11px; color: var(--muted2); margin-top: 5px; line-height: 1.4; }
.way-call { border-color: var(--border); background: rgba(54,226,196,.05); }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--sp-5); align-items: start; }
.cc-h { font-size: 20px; font-weight: 800; letter-spacing: -.025em; margin-bottom: 4px; }
.cc-p { font-size: 14px; color: var(--muted); margin-bottom: var(--sp-2); }

.cal-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.cal-tab {
  position: relative; text-align: left; cursor: pointer;
  background: rgba(4,19,31,.45); border: 1px solid var(--border2); border-radius: var(--r2);
  padding: 15px 16px 14px; transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.cal-tab:hover { border-color: var(--border); transform: translateY(-1px); }
.cal-tab.active { border-color: var(--cyan); background: rgba(54,226,196,.08); }
.ct-name { display: block; font-size: 15px; font-weight: 800; color: var(--white); letter-spacing: -.02em; margin-bottom: 3px; }
.ct-sub { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.ct-badge {
  position: absolute; top: -9px; right: 12px; font-size: 9.5px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; background: var(--cyan); color: var(--navy);
  padding: 3px 9px; border-radius: 100px; white-space: nowrap;
}
.cal-panel { display: none; }
.cal-panel.active { display: block; }
.cal-brief {
  background: rgba(255,255,255,.03); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 18px 20px; margin-bottom: 14px;
}
.cb-for { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.cb-for strong { color: var(--cyan); font-weight: 700; }
.cb-out { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.cb-out li { font-size: 13.5px; color: var(--white); display: flex; gap: 9px; align-items: flex-start; line-height: 1.5; }
.cb-out li::before { content: '→'; color: var(--cyan); font-weight: 800; flex-shrink: 0; }
.cb-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted2); padding-top: 12px; border-top: 1px solid var(--border2); }
.cb-meta svg { width: 13px; height: 13px; fill: var(--cyan); flex-shrink: 0; }
.cal-embed {
  min-height: 640px; border-radius: var(--r2); overflow: hidden;
  border: 1px solid var(--border2); background: var(--s1);
}
.cal-embed:empty::after {
  content: 'Kalender wird geladen …'; display: flex; align-items: center; justify-content: center;
  height: 640px; color: var(--muted2); font-size: 13px;
}

.contact-form-wrap { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.lead-form {
  background: linear-gradient(165deg, var(--card) 0%, var(--s1) 100%);
  border: 1px solid var(--border); border-radius: var(--r3); padding: 30px; box-shadow: var(--shadow-2);
}
.lead-form h3 { font-size: 21px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 6px; }
.lead-form > p { font-size: 13.5px; color: var(--muted); margin-bottom: var(--sp-3); line-height: 1.6; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11.5px; font-weight: 700; color: var(--muted);
  margin-bottom: 6px; letter-spacing: .05em; text-transform: uppercase;
}
.form-group label .opt { color: var(--muted2); font-weight: 500; text-transform: none; letter-spacing: 0; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; background: rgba(4,19,31,.7);
  border: 1px solid var(--border2); border-radius: var(--r); color: var(--white);
  font-size: 14.5px; transition: border-color .2s, box-shadow .2s; outline: none; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(54,226,196,.14);
}
.form-group input.invalid, .form-group textarea.invalid { border-color: var(--red); box-shadow: 0 0 0 3px rgba(231,76,60,.12); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted2); }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CC4D2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-group select option { background: var(--s1); }
.form-more { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.form-more.show { max-height: 320px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--cyan); color: var(--navy);
  font-size: 15.5px; font-weight: 800; letter-spacing: -.01em; border: none; border-radius: var(--r);
  cursor: pointer; margin-top: 6px; transition: background .2s, transform .18s, box-shadow .2s;
}
.form-submit:hover { background: var(--cyan2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(54,226,196,.28); }
.form-submit:disabled { opacity: .7; cursor: default; transform: none; }
.form-privacy { font-size: 11.5px; color: var(--muted2); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 10px 0; }
.form-success.show { display: block; }
.form-success .ms-icon { font-size: 44px; margin-bottom: 10px; }
.form-success h4 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.form-success a { color: var(--cyan); font-weight: 700; }

.contact-assure { display: flex; flex-direction: column; gap: 11px; }
.contact-assure div { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.55; }
.contact-assure span {
  width: 19px; height: 19px; border-radius: 50%; background: rgba(54,226,196,.13); color: var(--cyan);
  font-size: 10px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}

/* Lead-Magnete */
.lead-downloads { display: flex; flex-direction: column; gap: 10px; margin-top: var(--sp-3); }
.dl-card {
  display: flex; align-items: center; gap: 14px; background: rgba(4,19,31,.45);
  border: 1px solid var(--border2); border-radius: var(--r); padding: 14px 16px;
  cursor: pointer; transition: border-color .2s, transform .2s var(--ease);
}
.dl-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.dl-icon { font-size: 22px; flex-shrink: 0; }
.dl-info { flex: 1; }
.dl-info strong { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 2px; }
.dl-info span { font-size: 11.5px; color: var(--muted2); }
.dl-badge {
  font-size: 11px; font-weight: 700; color: var(--cyan); background: rgba(54,226,196,.09);
  border: 1px solid rgba(54,226,196,.22); border-radius: 100px; padding: 4px 11px; white-space: nowrap;
}

/* ═══ 11 · STICKY MOBILE CTA ═══════════════════════════════════════ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(4,19,31,.94); backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sc-call {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 16px; border-radius: var(--r); border: 1px solid var(--border);
  background: rgba(54,226,196,.08); font-size: 13.5px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.sc-call svg { width: 15px; height: 15px; fill: var(--cyan); }
.sc-main {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 14px 12px; border-radius: var(--r); background: var(--cyan); color: var(--navy);
  font-size: 14.5px; font-weight: 800; letter-spacing: -.01em; text-align: center;
}
@media (max-width: 900px) { .sticky-cta { display: flex; } body { padding-bottom: 0; } }

/* ═══ 12 · FOOTER ══════════════════════════════════════════════════ */
footer { background: var(--s0); border-top: 1px solid var(--border2); padding: var(--sp-6) 0 var(--sp-4); }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: var(--sp-5);
  padding-bottom: var(--sp-4); margin-bottom: var(--sp-3); border-bottom: 1px solid var(--border2);
}
.footer-brand .logo { font-size: 22px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--muted2); line-height: 1.72; max-width: 290px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: var(--sp-2); }
.fc-item { display: inline-flex; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 600; color: var(--muted); transition: color .2s; width: fit-content; }
.fc-item .fc-ic {
  width: 34px; height: 34px; border-radius: 9px; background: var(--cyan-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--cyan); flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.fc-item:hover { color: var(--white); }
.fc-item:hover .fc-ic { background: var(--cyan); color: var(--navy); transform: translateY(-1px); }
.fc-item .fc-ic svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--muted2); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: var(--muted2); }
.fb-links { display: flex; gap: 20px; }
.fb-links a { font-size: 12px; color: var(--muted2); transition: color .2s; }
.fb-links a:hover { color: var(--cyan); }

/* ═══ 13 · MODALS ══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000; background: rgba(4,19,31,.82); backdrop-filter: blur(7px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--s1); border: 1px solid var(--border); border-radius: var(--r3);
  width: 100%; max-width: 460px; box-shadow: 0 24px 80px rgba(0,0,0,.62);
  animation: modalIn .28s var(--ease); max-height: 92vh; overflow-y: auto;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-head { padding: 24px 26px 0; display: flex; align-items: flex-start; gap: 12px; }
.modal-head .m-icon { font-size: 28px; }
.modal-head h3 { font-size: 19px; font-weight: 800; letter-spacing: -.025em; line-height: 1.3; }
.modal-head p { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.modal-close { margin-left: auto; background: none; border: none; color: var(--muted); font-size: 24px; cursor: pointer; line-height: 1; padding: 4px 8px; border-radius: 6px; }
.modal-close:hover { color: var(--white); background: rgba(255,255,255,.06); }
.modal-body { padding: 20px 26px 26px; }
.modal-body .form-group { margin-bottom: 14px; }
.modal-consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 16px; }
.modal-consent input { margin-top: 3px; accent-color: var(--cyan); width: 16px; height: 16px; flex-shrink: 0; }
.modal-consent label { font-size: 12px; color: var(--muted); line-height: 1.55; }
.modal-consent label a { color: var(--cyan); }
.modal-consent.invalid label { color: #FF7B6B; }
.modal-submit {
  width: 100%; background: var(--cyan); color: var(--navy); border: none; border-radius: var(--r);
  padding: 15px; font-size: 15px; font-weight: 800; cursor: pointer; transition: background .2s, transform .18s;
}
.modal-submit:hover { background: var(--cyan2); transform: translateY(-1px); }
.modal-submit:disabled { opacity: .75; cursor: default; transform: none; }
.modal-success { display: none; text-align: center; padding: 14px 0 4px; }
.modal-success.show { display: block; }
.modal-success .ms-icon { font-size: 44px; margin-bottom: 10px; }
.modal-success h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.modal-success p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.modal-success a { color: var(--cyan); font-weight: 700; }

.check-progress { display: flex; gap: 5px; margin: 4px 0 20px; }
.check-progress span { flex: 1; height: 4px; border-radius: 100px; background: rgba(255,255,255,.09); transition: background .3s; }
.check-progress span.done { background: var(--cyan); }
.cq-count { display: block; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.check-q h4 { font-size: 17px; font-weight: 800; letter-spacing: -.025em; margin-bottom: 16px; line-height: 1.35; }
.check-opts { display: flex; flex-direction: column; gap: 8px; }
.check-opt {
  text-align: left; background: var(--card); border: 1px solid var(--border2); border-radius: var(--r);
  padding: 13px 15px; font-size: 14px; color: var(--white); cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
}
.check-opt:hover { border-color: var(--cyan); background: var(--cyan-dim); transform: translateX(3px); }
.check-back { background: none; border: none; color: var(--muted2); font-size: 12.5px; cursor: pointer; margin-top: 14px; padding: 4px; }
.check-back:hover { color: var(--white); }

.check-result { text-align: center; }
.cr-ring { position: relative; width: 92px; height: 92px; margin: 0 auto 14px; }
.cr-ring svg { transform: rotate(-90deg); }
.crr-bg { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 7; }
.crr-fg { fill: none; stroke: var(--green); stroke-width: 7; stroke-linecap: round; transition: stroke .3s; filter: drop-shadow(0 0 8px rgba(54,226,196,.4)); }
.crr-fg.mid { stroke: var(--warn); } .crr-fg.hi { stroke: var(--red); }
.crr-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.crr-label b { font-size: 26px; font-weight: 900; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.crr-label i { font-style: normal; font-size: 8.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted2); }
.cr-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; border-radius: 100px; padding: 6px 16px; margin-bottom: 12px; }
.cr-badge.hi { background: rgba(231,76,60,.13); border: 1px solid rgba(231,76,60,.35); color: #FF7B6B; }
.cr-badge.mid { background: rgba(245,166,35,.13); border: 1px solid rgba(245,166,35,.35); color: var(--warn); }
.cr-badge.lo { background: rgba(46,204,113,.13); border: 1px solid rgba(46,204,113,.35); color: #4FE08A; }
.check-result h4 { font-size: 18px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.025em; line-height: 1.35; }
.cr-chips { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 14px; }
.cr-chip { font-size: 11.5px; font-weight: 700; color: var(--cyan); background: rgba(54,226,196,.1); border: 1px solid var(--border); border-radius: 100px; padding: 4px 11px; }
.cr-chip.neutral { color: var(--muted); background: rgba(255,255,255,.05); border-color: var(--border2); }
.check-result > p { font-size: 13.5px; color: var(--muted); line-height: 1.68; margin-bottom: 18px; }
.cr-actions { margin-bottom: 16px; }
.cr-book {
  display: block; background: var(--cyan); color: var(--navy); border-radius: var(--r);
  padding: 15px; font-size: 15px; font-weight: 800; transition: background .2s, transform .18s;
}
.cr-book:hover { background: var(--cyan2); transform: translateY(-1px); }
.cr-or { display: block; font-size: 12px; color: var(--muted2); margin-top: 14px; position: relative; }
.cr-or::before, .cr-or::after { content: ''; position: absolute; top: 50%; width: 24%; height: 1px; background: var(--border2); }
.cr-or::before { left: 0; } .cr-or::after { right: 0; }

/* ═══ 14 · MOTION ══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; } .reveal.d4 { transition-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══ 15 · RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .proof-bar-inner { grid-template-columns: 1fr 1fr; }
  .contact-ways { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  :root { --sec-y: 80px; }
  .hamburger { display: block; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(4,19,31,.98); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border2); padding: 8px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 15px 4px; font-size: 15px; border-bottom: 1px solid var(--border2); }
  .nav-phone { justify-content: center; margin-top: 12px; border-bottom: none; }
  .nav-links a.nav-cta { margin-top: 10px; text-align: center; justify-content: center; border-bottom: none; }

  .hero { grid-template-columns: 1fr; gap: var(--sp-5); }
  .hero-sec { padding: 116px 0 var(--sp-6); }
  .router-grid, .services-grid, .pricing-grid, .fw-grid, .trust-grid { grid-template-columns: 1fr; }
  .ben-grid, .founder, .contact-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .founder-media { max-width: 340px; }
  .founder-photo { aspect-ratio: 1 / 1; }
  .contact-form-wrap { position: static; }
  .vs-grid { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-graphic { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .process-steps::before { display: none; }
  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .client-logo.cl-more { grid-column: 1 / -1; }
  .sw-grid { grid-template-columns: 1fr; grid-template-areas: "head" "mock" "mods"; row-gap: var(--sp-4); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  /* Platz für die Sticky-Leiste */
  footer { padding-bottom: 96px; }
}
@media (max-width: 620px) {
  :root { --sec-y: 68px; }
  .container { padding: 0 20px; }
  .hero-h1 { font-size: 36px; }
  .hero-sub { font-size: 16.5px; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; }
  .proof-bar-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cal-tabs { grid-template-columns: 1fr; }
  .ct-badge { top: 10px; right: 12px; }
  .lead-form { padding: 24px 20px; }
  .founder-quote { font-size: 15.5px; padding-left: 16px; }
  .founder-actions .btn-primary, .founder-actions .btn-ghost { width: 100%; }
  .sw-modules { grid-template-columns: 1fr; }
  .sw-mock-body { grid-template-columns: 1fr; }
  .sw-side { display: flex; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--border2); padding: 6px; }
  .sw-side a { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; }
  .sw-side a.on { border-bottom-color: var(--cyan); }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-4); }
  .modal { max-width: 100%; }
  /* Touch-Targets */
  .check-opt, .fc-item, .nav-links a, .pricing-btn, .cal-tab, .way { min-height: 46px; }
}

/* ══════════════════════════════════════════════════════════════════════
   16 · REGELWERK-SEITEN  (nis-2.html, iso-27001.html, … )
   Gilt für alle acht Seiten. Struktur und Abstände kommen aus dem
   bestehenden System oben — hier nur die neuen Bausteine.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Nav-Dropdown „Regelwerke" ── */
.nav-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 0; transition: color .2s;
}
.nav-drop-btn:hover, .nav-drop.open .nav-drop-btn { color: var(--white); }
.nav-drop-btn i {
  width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px); transition: transform .25s;
}
.nav-drop.open .nav-drop-btn i { transform: rotate(-135deg) translate(-3px,-3px); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(-6px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  width: 460px; padding: 10px;
  background: rgba(7,30,46,.98); backdrop-filter: blur(18px);
  border: 1px solid var(--border); border-radius: var(--r2);
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s var(--ease), visibility .2s;
}
.nav-drop:hover .nav-drop-menu, .nav-drop.open .nav-drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-drop-menu::before { content: ''; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav-drop-menu a {
  display: block; padding: 11px 13px; border-radius: 9px;
  border-bottom: none !important; transition: background .18s;
}
.nav-drop-menu a:hover, .nav-drop-menu a.on { background: rgba(54,226,196,.09); }
.nav-drop-menu a strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.nav-drop-menu a.on strong { color: var(--cyan); }
.nav-drop-menu a span { font-size: 11.5px; color: var(--muted2); }

/* ── Regelwerk-Karten auf der Landing Page: jetzt verlinkt ── */
.fw-card { text-decoration: none; }
.fw-more {
  font-size: 13px; font-weight: 700; color: var(--cyan);
  display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; transition: gap .2s;
}
.fw-card:hover .fw-more { gap: 10px; }

/* ── Hero der Regelwerk-Seite ── */
.fw-hero { display: grid; grid-template-columns: 1.12fr .88fr; gap: var(--sp-6); align-items: center; }
.fw-hero h1 {
  font-size: clamp(32px, 4.3vw, 50px); font-weight: 900;
  letter-spacing: -.042em; line-height: 1.06; margin-bottom: 20px; text-wrap: balance;
}
.fw-hero h1 em { font-style: normal; color: var(--cyan); }
.fw-hero .lead { font-size: 18.5px; color: var(--muted); line-height: 1.68; margin-bottom: var(--sp-3); max-width: 560px; }
.fw-hero .lead strong { color: var(--white); font-weight: 600; }

/* Faktenkarte rechts */
.fw-facts {
  background: linear-gradient(165deg, var(--s1) 0%, var(--s2) 100%);
  border: 1px solid var(--border); border-radius: var(--r3);
  padding: 26px 28px; box-shadow: var(--shadow-2); position: relative; overflow: hidden;
}
.fw-facts::before {
  content: ''; position: absolute; top: -70px; right: -70px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(54,226,196,.10) 0%, transparent 70%); pointer-events: none;
}
.fw-facts h2 {
  font-size: 12.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.fw-fact { display: flex; gap: 14px; padding: 13px 0; border-top: 1px solid var(--border2); }
.fw-fact:first-of-type { border-top: none; padding-top: 0; }
.fw-fact dt {
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted2); width: 106px; flex-shrink: 0; padding-top: 2px;
  line-height: 1.35; hyphens: auto; overflow-wrap: anywhere;
}
.fw-fact dd { font-size: 14.5px; color: var(--white); font-weight: 600; line-height: 1.5; }
.fw-fact dd small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 3px; }

/* ── Betroffenheit ── */
.fw-applies { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fw-applies-card {
  background: rgba(4,19,31,.42); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 24px 26px;
}
.fw-applies-card.yes { border-color: var(--border); background: rgba(54,226,196,.05); }
.fw-applies-card h3 { font-size: 16px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.fw-applies-card h3::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; background: var(--cyan); color: var(--navy);
}
.fw-applies-card.no h3::before { content: '–'; background: rgba(255,255,255,.1); color: var(--muted); }
.fw-applies-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fw-applies-card li { font-size: 14px; color: var(--muted); line-height: 1.6; padding-left: 16px; position: relative; }
.fw-applies-card li::before { content: '·'; position: absolute; left: 4px; color: var(--cyan); font-weight: 900; }
.fw-applies-note {
  margin-top: 18px; font-size: 14px; color: var(--muted); line-height: 1.7;
  background: rgba(255,255,255,.03); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 18px 22px;
}
.fw-applies-note strong { color: var(--white); }

/* ── Anforderungen: nummerierte Liste ── */
.req-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.req-item {
  display: flex; gap: 16px; background: rgba(4,19,31,.42);
  border: 1px solid var(--border2); border-radius: var(--r2); padding: 22px 24px;
  transition: border-color .25s, transform .22s var(--ease);
}
.req-item:hover { border-color: var(--border); transform: translateY(-2px); }
.req-num {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: var(--cyan-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: var(--cyan);
}
.req-item strong { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 5px; }
.req-item p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── Risiko ── */
.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.risk-card {
  background: rgba(231,76,60,.05); border: 1px solid rgba(231,76,60,.2);
  border-radius: var(--r2); padding: 26px 24px;
}
.risk-card .rk-ic {
  width: 40px; height: 40px; border-radius: 11px; background: rgba(231,76,60,.13);
  border: 1px solid rgba(231,76,60,.25); display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 16px;
}
.risk-card strong { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.risk-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.risk-card .rk-figure { font-size: 22px; font-weight: 900; color: #FF8B7B; letter-spacing: -.03em; margin-bottom: 6px; }

/* ── Vorgehen: Zeitstrahl ── */
.fw-steps { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; }
.fw-step { display: grid; grid-template-columns: 132px 1fr; gap: 26px; position: relative; padding-bottom: 32px; }
.fw-step:last-child { padding-bottom: 0; }
.fw-step::before {
  content: ''; position: absolute; left: 147px; top: 34px; bottom: 0; width: 1px;
  background: linear-gradient(180deg, var(--border), var(--border2));
}
.fw-step:last-child::before { display: none; }
.fw-step-when {
  text-align: right; font-size: 12.5px; font-weight: 700; color: var(--cyan);
  letter-spacing: .04em; text-transform: uppercase; padding-top: 8px;
}
.fw-step-body {
  position: relative; padding-left: 30px;
  background: rgba(4,19,31,.42); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 20px 24px;
}
.fw-step-body::before {
  content: ''; position: absolute; left: -20px; top: 26px;
  width: 11px; height: 11px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 4px var(--s0); z-index: 1;
}
.fw-step-body strong { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.fw-step-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Deliverables ── */
.deliv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.deliv {
  display: flex; align-items: flex-start; gap: 13px;
  background: rgba(4,19,31,.42); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 17px 19px;
  transition: border-color .25s, transform .2s var(--ease);
}
.deliv:hover { border-color: var(--border); transform: translateX(3px); }
.deliv-ic {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(54,226,196,.14); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900;
}
.deliv strong { display: block; font-size: 14.5px; font-weight: 700; letter-spacing: -.015em; margin-bottom: 3px; }
.deliv span { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── „Was wir geleistet haben" ── */
.track-band {
  background: linear-gradient(165deg, var(--s1) 0%, var(--card) 100%);
  border: 1px solid var(--border); border-radius: var(--r3);
  padding: 38px 40px; box-shadow: var(--shadow-2);
}
.track-nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 26px; }
.track-num { text-align: center; padding: 18px 14px; background: rgba(4,19,31,.4); border: 1px solid var(--border2); border-radius: var(--r2); }
.track-num b { display: block; font-size: 30px; font-weight: 900; color: var(--cyan); letter-spacing: -.04em; line-height: 1.1; }
.track-num span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.track-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.track-list li { font-size: 14.5px; color: var(--white); display: flex; gap: 11px; align-items: flex-start; line-height: 1.6; }
.track-list li::before { content: '✓'; color: var(--cyan); font-weight: 900; flex-shrink: 0; }

/* Sichtbare Platzhalter-Markierung — vor dem Livegang ersetzen oder entfernen */
.todo {
  background: rgba(245,166,35,.15); color: var(--warn);
  border-bottom: 1px dashed var(--warn); border-radius: 3px;
  padding: 0 4px; font-style: normal;
}
.todo-note {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 20px;
  font-size: 12.5px; color: var(--warn); line-height: 1.55;
  background: rgba(245,166,35,.08); border: 1px dashed rgba(245,166,35,.35);
  border-radius: var(--r); padding: 12px 15px;
}
.todo-note::before { content: '⚠'; flex-shrink: 0; font-size: 13px; }

/* ── CTA-Band ── */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  background: linear-gradient(120deg, var(--s2) 0%, rgba(13,47,68,.85) 100%);
  border: 1px solid var(--border); border-radius: var(--r3);
  padding: 34px 40px; position: relative; overflow: hidden; box-shadow: var(--shadow-2);
}
.cta-band::before {
  content: ''; position: absolute; top: -90px; left: 12%; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(54,226,196,.13) 0%, transparent 68%); pointer-events: none;
}
.cta-band-txt { position: relative; flex: 1; min-width: 0; }
.cta-band-txt h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 8px; text-wrap: balance; }
.cta-band-txt p { font-size: 14.5px; color: var(--muted); line-height: 1.65; max-width: 560px; }
.cta-band-act { display: flex; gap: 10px; flex-shrink: 0; position: relative; flex-wrap: wrap; }

/* ── Querverweise auf die anderen Regelwerke ── */
.fw-cross { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fwx-card {
  background: rgba(4,19,31,.42); border: 1px solid var(--border2); border-radius: var(--r2);
  padding: 18px 20px; transition: border-color .25s, transform .22s var(--ease), background .25s;
}
.fwx-card:hover { border-color: var(--cyan); background: rgba(54,226,196,.06); transform: translateY(-3px); }
.fwx-card strong { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.025em; margin-bottom: 3px; }
.fwx-card span { font-size: 11.5px; color: var(--muted2); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav-drop { width: 100%; }
  .nav-drop-btn { width: 100%; justify-content: space-between; padding: 15px 4px; font-size: 15px; border-bottom: 1px solid var(--border2); }
  .nav-drop-menu {
    position: static; transform: none; width: 100%; grid-template-columns: 1fr;
    opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none;
    background: transparent; border: none; padding: 0; display: none;
  }
  .nav-drop.open .nav-drop-menu { display: grid; transform: none; }
  .fw-hero, .fw-applies, .req-list, .deliv-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .fw-cross { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px 26px; }
  .track-band { padding: 28px 24px; }
  .track-nums { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .fw-step { grid-template-columns: 1fr; gap: 10px; }
  .fw-step::before { display: none; }
  .fw-step-when { text-align: left; padding-top: 0; }
  .fw-step-body { padding-left: 20px; }
  .fw-step-body::before { display: none; }
  .fw-cross { grid-template-columns: 1fr; }
  .fw-fact { flex-direction: column; gap: 4px; }
  .fw-fact dt { width: auto; }
  .cta-band-act { width: 100%; }
  .cta-band-act .btn-primary, .cta-band-act .btn-ghost { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════════
   17 · BETROFFENHEITS-CHECK, LEAD-GATE, CHECKLISTE
   ══════════════════════════════════════════════════════════════════════ */

/* ── Check je Regelwerk ── */
.fw-check {
  background: linear-gradient(165deg, var(--s2) 0%, rgba(13,47,68,.75) 100%);
  border: 1px solid var(--border); border-radius: var(--r3);
  overflow: hidden; box-shadow: var(--shadow-2); position: relative;
}
.fw-check::before {
  content: ''; position: absolute; top: -90px; right: -60px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(54,226,196,.12) 0%, transparent 68%); pointer-events: none;
}
.fwc-head { padding: 30px 34px 0; position: relative; }
.fwc-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase;
  color: var(--cyan); background: rgba(54,226,196,.1); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 13px; margin-bottom: 14px;
}
.fwc-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }
.fwc-head h3 { font-size: clamp(21px, 2.6vw, 27px); font-weight: 800; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 7px; }
.fwc-head p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.fwc-body { padding: 24px 34px 32px; position: relative; }
.fwc-progress { display: flex; gap: 5px; margin-bottom: 22px; }
.fwc-progress span { flex: 1; height: 4px; border-radius: 100px; background: rgba(255,255,255,.09); transition: background .3s; }
.fwc-progress span.done { background: var(--cyan); }
.fwc-count { display: block; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--cyan); margin-bottom: 9px; }
.fwc-q h4 { font-size: 17.5px; font-weight: 700; letter-spacing: -.02em; line-height: 1.45; margin-bottom: 18px; max-width: 700px; }
.fwc-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.fwc-opt {
  background: rgba(4,19,31,.5); border: 1px solid var(--border2); border-radius: var(--r);
  padding: 13px 26px; font-size: 15px; font-weight: 700; color: var(--white); cursor: pointer;
  min-width: 108px; transition: border-color .15s, background .15s, transform .15s;
}
.fwc-opt:hover { border-color: var(--cyan); background: var(--cyan-dim); transform: translateY(-2px); }
.fwc-opt.weak { font-weight: 500; color: var(--muted); min-width: 0; }
.fwc-back { background: none; border: none; color: var(--muted2); font-size: 12.5px; cursor: pointer; margin-top: 16px; padding: 4px; }
.fwc-back:hover { color: var(--white); }

.fwc-result { max-width: 720px; }
.fwc-badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 100px; padding: 6px 15px; margin-bottom: 14px;
}
.fwc-badge.hi  { background: rgba(231,76,60,.14); border: 1px solid rgba(231,76,60,.38); color: #FF8B7B; }
.fwc-badge.mid { background: rgba(245,166,35,.14); border: 1px solid rgba(245,166,35,.38); color: var(--warn); }
.fwc-badge.lo  { background: rgba(46,204,113,.14); border: 1px solid rgba(46,204,113,.38); color: #4FE08A; }
.fwc-result h4 { font-size: 21px; font-weight: 800; letter-spacing: -.03em; line-height: 1.3; margin-bottom: 10px; }
.fwc-result > p { font-size: 15px; color: var(--muted); line-height: 1.68; margin-bottom: 10px; }
.fwc-disclaim { font-size: 12px !important; color: var(--muted2) !important; margin-bottom: 22px !important; }
.fw-check.compact .fwc-head { padding: 26px 28px 0; }
.fw-check.compact .fwc-body { padding: 20px 28px 28px; }

/* ── Gemeinsames Lead-Formular ── */
.lead-gate { border-top: 1px solid var(--border2); padding-top: 22px; }
.lg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lg-hint { display: block; font-size: 11.5px; color: var(--muted2); margin-top: 5px; line-height: 1.4; }
.lead-gate .form-submit { margin-top: 10px; }
.lead-done, .lead-fail { display: none; text-align: center; padding: 22px 0 6px; }
.lead-done.show, .lead-fail.show { display: block; }
.lead-done .ms-icon, .lead-fail .ms-icon { font-size: 44px; margin-bottom: 10px; }
.lead-done h4, .lead-fail h4 { font-size: 20px; font-weight: 800; letter-spacing: -.025em; margin-bottom: 8px; }
.lead-done p, .lead-fail p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.lead-done a, .lead-fail a { color: var(--cyan); font-weight: 700; }
.lead-done .btn-primary { color: var(--navy); }
.lead-fail { color: var(--warn); }

/* ── Checklisten-Band ── */
.ck-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5);
  background: linear-gradient(150deg, var(--s1) 0%, var(--card) 100%);
  border: 1px solid var(--border); border-radius: var(--r3);
  padding: 40px 44px; box-shadow: var(--shadow-2); position: relative; overflow: hidden;
}
.ck-band::before {
  content: ''; position: absolute; top: -100px; left: -60px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(54,226,196,.12) 0%, transparent 68%); pointer-events: none;
}
.ck-left { position: relative; }
.ck-doc {
  width: 58px; height: 58px; border-radius: 15px; background: var(--cyan-dim);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 27px; margin-bottom: 18px;
}
.ck-left h3 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; line-height: 1.2; }
.ck-left > p { font-size: 14.5px; color: var(--muted); line-height: 1.68; margin-bottom: 18px; }
.ck-points { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.ck-points li { font-size: 14px; color: var(--white); display: flex; gap: 10px; align-items: flex-start; line-height: 1.55; }
.ck-points li::before {
  content: '✓'; color: var(--cyan); font-weight: 900; font-size: 11px; flex-shrink: 0; margin-top: 3px;
  width: 18px; height: 18px; border-radius: 50%; background: rgba(54,226,196,.13);
  display: inline-flex; align-items: center; justify-content: center;
}
.ck-meta { font-size: 12px; color: var(--muted2); }
.ck-right { position: relative; }
.ck-right .lead-gate { border-top: none; padding-top: 0; }

@media (max-width: 960px) {
  .ck-band { grid-template-columns: 1fr; gap: var(--sp-4); padding: 30px 26px; }
  .fwc-head { padding: 26px 24px 0; }
  .fwc-body { padding: 20px 24px 26px; }
}
@media (max-width: 620px) {
  .lg-row { grid-template-columns: 1fr; gap: 0; }
  .fwc-opts { flex-direction: column; }
  .fwc-opt { width: 100%; min-height: 48px; }
  .fwc-q h4 { font-size: 16px; }
}

/* ══════════════════════════════════════════════════════════════════════
   18 · PLATTFORM-SEITE
   ══════════════════════════════════════════════════════════════════════ */

/* Bildplatzhalter — ersetzen Sie das <div> durch ein <img> gleicher Größe */
.shot {
  position: relative; border-radius: var(--r2); overflow: hidden;
  border: 1px solid var(--border); background: linear-gradient(150deg, var(--s2), var(--card));
  aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-2);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 24px; width: 100%; height: 100%;
  border: 1px dashed rgba(245,166,35,.4); background: rgba(245,166,35,.05); border-radius: var(--r2);
}
.shot-ph b { font-size: 13px; font-weight: 800; color: var(--warn); letter-spacing: .02em; }
.shot-ph span { font-size: 12px; color: var(--muted2); line-height: 1.5; max-width: 260px; }
.shot-ph::before { content: '🖼'; font-size: 26px; opacity: .6; }

/* Wer macht was */
.raci { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.raci-col {
  background: rgba(4,19,31,.42); border: 1px solid var(--border2);
  border-radius: var(--r3); padding: 26px 24px;
}
.raci-col.mid { border-color: var(--border); background: rgba(54,226,196,.05); }
.raci-col h3 { font-size: 16px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px; }
.raci-col .rc-sub { font-size: 12px; color: var(--muted2); margin-bottom: 18px; }
.raci-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.raci-col li { font-size: 13.5px; color: var(--muted); line-height: 1.55; display: flex; gap: 9px; align-items: flex-start; }
.raci-col li::before { content: '·'; color: var(--cyan); font-weight: 900; flex-shrink: 0; }
.raci-note {
  margin-top: var(--sp-3); text-align: center; font-size: 14.5px; color: var(--muted);
  background: rgba(255,255,255,.03); border: 1px solid var(--border2); border-radius: var(--r2);
  padding: 18px 24px; max-width: 720px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.raci-note strong { color: var(--white); }

/* Modul-Umschalter mit Screenshot */
.mod-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--sp-5); align-items: start; }
.mod-list { display: flex; flex-direction: column; gap: 8px; }
.mod-item {
  display: flex; align-items: center; gap: 13px; text-align: left; cursor: pointer;
  background: rgba(4,19,31,.42); border: 1px solid var(--border2); border-radius: var(--r2);
  padding: 15px 17px; transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.mod-item:hover { border-color: var(--cyan); transform: translateX(3px); }
.mod-item.active { border-color: var(--cyan); background: rgba(54,226,196,.08); }
.mod-item .mi-ic { font-size: 19px; flex-shrink: 0; }
.mod-item strong { display: block; font-size: 14.5px; font-weight: 700; letter-spacing: -.015em; }
.mod-item span { font-size: 12.5px; color: var(--muted2); line-height: 1.4; }
.mod-item.active strong { color: var(--cyan); }
.mod-view { position: sticky; top: 100px; }
.mod-caption {
  margin-top: 16px; background: rgba(4,19,31,.42); border: 1px solid var(--border2);
  border-left: 3px solid var(--cyan); border-radius: var(--r2); padding: 18px 22px;
}
.mod-caption strong { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.mod-caption p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.mod-caption .mc-use { display: block; margin-top: 10px; font-size: 13px; color: var(--cyan); font-weight: 600; }

/* Matrix Regelwerke × Module */
.matrix-scroll { overflow-x: auto; border: 1px solid var(--border2); border-radius: var(--r2); }
table.matrix { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 13px; }
table.matrix th, table.matrix td { padding: 11px 12px; text-align: center; border-bottom: 1px solid var(--border2); }
table.matrix thead th { background: rgba(4,19,31,.6); font-size: 11.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; position: sticky; top: 0; }
table.matrix tbody th { text-align: left; font-weight: 700; color: var(--white); white-space: nowrap; background: rgba(4,19,31,.4); }
table.matrix td.on { color: var(--cyan); font-weight: 900; }
table.matrix td.off { color: rgba(148,196,210,.22); }
table.matrix tbody tr:hover { background: rgba(54,226,196,.04); }
.matrix-note { font-size: 13px; color: var(--muted2); margin-top: 12px; text-align: center; }

/* Ersparnis-Vergleich */
.save-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.save-card { border-radius: var(--r3); border: 1px solid var(--border2); background: rgba(4,19,31,.42); overflow: hidden; }
.save-card.good { border-color: var(--border); box-shadow: 0 0 0 1px rgba(54,226,196,.13), var(--shadow-2); }
.save-head { padding: 16px 24px; font-size: 15px; font-weight: 800; letter-spacing: -.015em; }
.save-card.bad .save-head { background: rgba(255,255,255,.04); color: var(--muted); }
.save-card.good .save-head { background: var(--cyan); color: var(--navy); }
.save-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 13px; }
.save-body div { font-size: 14px; line-height: 1.55; display: flex; gap: 11px; align-items: flex-start; }
.save-card.bad .save-body div { color: var(--muted); }
.save-card.bad .save-body div::before { content: '✕'; color: #FF8B7B; font-weight: 900; font-size: 11px; flex-shrink: 0; margin-top: 3px; }
.save-card.good .save-body div { color: var(--white); }
.save-card.good .save-body div::before { content: '✓'; color: var(--cyan); font-weight: 900; font-size: 11px; flex-shrink: 0; margin-top: 3px; }

/* Plattform-Sicherheit */
.sec-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sec-fact {
  background: rgba(4,19,31,.42); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 22px 24px;
}
.sec-fact .sf-ic {
  width: 38px; height: 38px; border-radius: 11px; background: var(--cyan-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 14px;
}
.sec-fact strong { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.sec-fact p { font-size: 13.5px; color: var(--muted); line-height: 1.62; }

@media (max-width: 960px) {
  .raci, .sec-facts { grid-template-columns: 1fr; }
  .mod-wrap { grid-template-columns: 1fr; gap: var(--sp-4); }
  .mod-view { position: static; }
  .save-grid { grid-template-columns: 1fr; }
}
.dl-hint { font-size: 12.5px !important; color: var(--warn) !important; margin-top: 10px !important; }

/* ══════════════════════════════════════════════════════════════════════
   19 · v17 — Login, Footer, Rechtsseiten, Freebie, Design-Politur
   ══════════════════════════════════════════════════════════════════════ */

/* ── Portal-Login in der Navigation ── */
.nav-login {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--muted) !important;
  padding: 8px 12px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-login svg { width: 13px; height: 13px; fill: currentColor; opacity: .8; }
.nav-login:hover { color: var(--white) !important; background: rgba(255,255,255,.05); }

/* ── Footer: Abschluss-CTA ── */
.footer-cta {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  background: linear-gradient(120deg, var(--s2) 0%, rgba(13,47,68,.8) 100%);
  border: 1px solid var(--border); border-radius: var(--r3);
  padding: 32px 38px; margin-bottom: var(--sp-6);
  position: relative; overflow: hidden;
}
.footer-cta::before {
  content: ''; position: absolute; top: -80px; left: 10%; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(54,226,196,.12) 0%, transparent 68%); pointer-events: none;
}
.footer-cta h3 { font-size: clamp(19px, 2.2vw, 24px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 6px; position: relative; }
.footer-cta p { font-size: 14px; color: var(--muted); position: relative; }
.footer-cta-act { display: flex; gap: 10px; flex-shrink: 0; position: relative; flex-wrap: wrap; }

footer .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
.footer-hours { font-size: 12px; color: var(--muted2); margin-top: 14px; line-height: 1.6; }
.footer-login {
  display: inline-flex; align-items: center; gap: 11px; margin-top: 18px;
  background: rgba(54,226,196,.07); border: 1px solid var(--border);
  border-radius: var(--r); padding: 11px 14px; transition: background .2s, transform .2s;
}
.footer-login:hover { background: rgba(54,226,196,.13); transform: translateY(-1px); }
.footer-login svg { width: 15px; height: 15px; fill: var(--cyan); flex-shrink: 0; }
.footer-login span { font-size: 11.5px; color: var(--muted2); line-height: 1.35; }
.footer-login strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); }

/* ── Freebie-Band: Kopfzeile ── */
.ck-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase;
  color: var(--cyan); background: rgba(54,226,196,.1); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 13px; margin-bottom: 14px;
}
.ck-tag::before { content: '↓'; font-weight: 900; }

/* ── Rechtsseiten ── */
.legal-hero { padding-bottom: 0; }
.legal { max-width: 780px; }
.legal h2 {
  font-size: 20px; font-weight: 800; letter-spacing: -.025em;
  margin: var(--sp-5) 0 var(--sp-2); padding-top: var(--sp-3);
  border-top: 1px solid var(--border2);
}
.legal h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.legal p strong { color: var(--white); font-weight: 600; }
.legal a { color: var(--cyan); font-weight: 600; }
.legal a:hover { text-decoration: underline; }

.legal-dl { display: flex; flex-direction: column; gap: 2px; margin-bottom: var(--sp-3); }
.legal-dl > div {
  display: grid; grid-template-columns: 190px 1fr; gap: 20px;
  padding: 13px 0; border-bottom: 1px solid var(--border2);
}
.legal-dl dt { font-size: 13px; font-weight: 700; color: var(--muted2); text-transform: uppercase; letter-spacing: .05em; line-height: 1.4; }
.legal-dl dd { font-size: 15px; color: var(--white); line-height: 1.6; }
.legal-dl .lg-note { display: block; font-size: 13px; color: var(--muted); font-weight: 400; margin-top: 3px; }

.legal-updated { font-size: 13px !important; color: var(--muted2) !important; margin-top: var(--sp-5) !important; padding-top: var(--sp-3); border-top: 1px solid var(--border2); }
.legal-todo, .legal-todo-inline {
  background: rgba(245,166,35,.1); color: var(--warn) !important;
  border-left: 3px solid var(--warn); border-radius: 0 8px 8px 0;
  padding: 12px 16px; font-size: 13.5px !important;
}
.legal-todo-inline { display: inline-block; border-left: none; border-radius: 6px; padding: 2px 8px; font-size: 12px !important; }
.legal-note {
  margin-top: var(--sp-5); background: rgba(245,166,35,.08);
  border: 1px dashed rgba(245,166,35,.4); border-radius: var(--r2);
  padding: 20px 24px; font-size: 13.5px; color: var(--warn); line-height: 1.7;
}
.legal-note strong { color: var(--warn); }

@media (max-width: 720px) {
  .legal-dl > div { grid-template-columns: 1fr; gap: 4px; }
  .footer-cta { flex-direction: column; align-items: flex-start; padding: 26px 24px; }
  .footer-cta-act { width: 100%; }
  .footer-cta-act .btn-primary, .footer-cta-act .btn-ghost { flex: 1; }
}
@media (max-width: 960px) {
  footer .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-login { justify-content: center; border-bottom: none !important; }
}

/* ══ Design-Politur ═══════════════════════════════════════════════════ */

/* Ruhigerer Rhythmus: großzügigere Sektionsköpfe */
.sec-head { margin-bottom: var(--sp-6); }
.section-title { line-height: 1.1; }

/* Karten fassen sich einheitlicher an */
.service-card, .fw-card, .pricing-card, .trust-card, .router-card,
.req-item, .risk-card, .deliv, .fw-applies-card, .raci-col, .sec-fact {
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

/* Der Check ist der wichtigste Baustein — er darf auffallen */
.fw-check { box-shadow: 0 0 0 1px rgba(54,226,196,.14), 0 30px 70px rgba(0,0,0,.45); }
.fwc-head h3 { line-height: 1.15; }

/* Primärknopf: klarer Fokus, sattere Tiefe */
.btn-primary { box-shadow: 0 6px 20px rgba(54,226,196,.22); }
.btn-primary:hover { box-shadow: 0 14px 38px rgba(54,226,196,.34); }

/* Formularfelder etwas ruhiger */
.form-group input, .form-group select, .form-group textarea { padding: 13px 15px; font-size: 15px; }
.lead-gate .lg-row { gap: 14px; }

/* Zahlen einheitlich in Tabellenziffern */
.sc-score, .track-num b, .crr-label b, .sw-kpi .k-val, .sw-row .r-pct { font-variant-numeric: tabular-nums; }

/* Trennlinie zwischen Hero und erster Sektion weicher */
.hero-sec { border-bottom: 1px solid var(--border2); }
