/* ============================================
   CORVEC – STYLES.CSS · v2 UPGRADE
   Typo-System + veredelte Navy/Cyan/Kupfer-Palette
   Original-Struktur erhalten, gezielt aufgewertet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Veredelte Palette: tieferes Navy, präziser Cyan, Kupfer als Signatur */
  --bg-dark: #070A18;
  --bg-base: #060914;
  --bg-section: #0A0F1F;
  --bg-deep: #04060F;

  --accent: #38BDF8;          /* präziser, kühler Cyan */
  --accent-bright: #5CCDFA;
  --accent-dim: rgba(56,189,248,0.5);
  --accent-ghost: rgba(56,189,248,0.08);

  --copper: #C97B4A;          /* Signatur-Akzent: Messtechnik-Wärme */
  --copper-soft: rgba(201,123,74,0.5);
  --copper-ghost: rgba(201,123,74,0.1);

  --accent-soft: #C97B4A;     /* Alias für Legacy-Referenzen */

  --text-light: #F5F7FB;
  --text-mid: #B4BECA;
  --text-muted: #828D9E;
  --border-soft: #1A2334;

  --max-width: 1120px;
  --radius: 10px;

  /* Type-Rollen */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ============================================
   GLOBAL TYPO-UPGRADE
   ============================================ */
html, body {
  font-family: var(--font-body) !important;
  background-color: var(--bg-base) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.006em;
}

h1, h2, h3, h4,
.hero-title, .section-title, .lp-hero-title, .lp-phase-title,
.kostenschock-title, .cta-title, .ueber3-title, .vorteil-title,
.branchen-title, .kontakt-form-title, .card-title, .workflow-title,
.ziel-title, .entscheider-title {
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em;
  font-feature-settings: "ss01" 1;
}

.hero-title, .lp-hero-title, .ueber3-title {
  font-weight: 600 !important;
  letter-spacing: -0.035em;
}

/* Kicker, Badges, Daten = Mono → "Messinstrument"-Sprache */
.section-kicker, .hero-kicker, .badge, .split-list-label,
.split-visual-divider, .workflow-number, .lang-btn,
.phase-nav-number, .compare2-col-header-them, .compare2-col-header-us,
.compare2-col-header-label, .kontakt-step-num, .vorteil-fact-label {
  font-family: var(--font-mono) !important;
  letter-spacing: 0.16em !important;
}

/* Mess-Zahlen bekommen Mono für Präzisions-Anmutung */
.number-value, .kostenschock-zahl, .ueber3-zahl-value,
.vorteil-fact-value, .credential-zahl-value {
  font-family: var(--font-mono) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
}

/* ============================================
   ACCENT-REKALIBRIERUNG (alt-cyan → neu)
   Original nutzt überall rgba(0,185,255). Wir
   überschreiben die generische Hauptfläche unten,
   die SVG-Inlines bleiben (subtiler Tiefen-Layer).
   ============================================ */

/* ============================================
   CORVEC – STYLES.CSS
   Sauber strukturiert, keine Duplikate
   ============================================ */

/* ============================================
   1. CSS VARIABLEN
   ============================================ */
:root {
  --bg-dark: #080b2f;
  --bg-section: #0b1220;
  --accent: #2bb3ff;
  --accent-soft: #bb6828;
  --text-light: #f9fafb;
  --text-muted: #9ca3af;
  --border-soft: #1f2937;
  --max-width: 1120px;
  --radius: 8px;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-base);
  color: var(--text-light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

main {
  min-height: 100vh;
}

/* ============================================
   3. NAVIGATION
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5, 8, 22, 0.9);
  border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text-light);
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1.4rem;
  background: none;
  border: none;
  padding: 0.25rem;
  z-index: 200;
  position: relative;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

/* SPRACHSCHALTER */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(56,189,248,0.15);
}

.lang-btn {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
}

.lang-btn:hover {
  color: var(--accent);
}

.lang-btn.active {
  color: var(--accent);
}

/* ============================================
   4. ALLGEMEINE LAYOUT-KLASSEN
   ============================================ */
.section {
  padding: 3.5rem 1.5rem;
  background: var(--bg-section);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.section-alt {
  background: #020617;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
}

.section-text {
  color: var(--text-muted);
  max-width: 40rem;
  font-size: 0.95rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
margin-top: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top, #020617, #020617);
  padding: 1.25rem;
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #020617;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--accent);
}

/* ============================================
   6. FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: #020617;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* ============================================
   7. HERO (STARTSEITE)
   ============================================ */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 3rem;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-badge {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.8);
}

/* ============================================
   8. WORKFLOW BAR
   ============================================ */
.workflow-bar {
  background: #070f1f;
  border-top: 1px solid rgba(56,189,248,0.12);
  border-bottom: 1px solid rgba(56,189,248,0.12);
  padding: 3rem 2rem;
}

.workflow-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
}

.workflow-step {
  flex: 1;
}

.workflow-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.workflow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin-bottom: 1rem;
}

.workflow-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.workflow-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.workflow-arrow {
  color: var(--accent);
  font-size: 1.5rem;
  padding-top: 2.5rem;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================
   9. STATEMENT
   ============================================ */
.statement-section {
  background: #020810;
  padding: 6rem 2rem;
  text-align: center;
}

.statement-inner {
  max-width: 800px;
  margin: 0 auto;
}

.statement-text {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.statement-text span {
  color: var(--text-light);
}

.lp-statement {
  padding: 2rem 2rem;
  text-align: center;
  background: #020810;
  border-top: 1px solid rgba(56,189,248,0.06);
  border-bottom: 1px solid rgba(56,189,248,0.06);
}

.lp-statement p {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.25);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* ============================================
   10. SPLIT SECTION (PROBLEM)
   ============================================ */
.split-section {
  padding: 5rem 2rem;
}

.split-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 2px solid rgba(56,189,248,0.3);
  line-height: 1.5;
}

.split-list-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.split-visual-box {
  background: rgba(56,189,248,0.03);
  border: 1px solid rgba(56,189,248,0.1);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split-visual-label-row {
  margin-bottom: 0.5rem;
}

.split-visual-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.split-visual-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.split-bar {
  height: 4px;
  border-radius: 2px;
}

.split-visual-item.red .split-bar {
  background: rgba(255,80,80,0.5);
}

.split-visual-item.green .split-bar {
  background: var(--accent);
}

.split-visual-divider {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(56,189,248,0.15);
}

/* ============================================
   11. ZAHLENLEISTE
   ============================================ */
.numbers-section {
  background: var(--accent);
  padding: 3.5rem 2rem;
}

.numbers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.number-item {
  text-align: center;
  flex: 1;
}

.number-value {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #020810;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.number-label {
  font-size: 0.8rem;
  color: rgba(2,8,16,0.7);
  font-weight: 500;
}

.number-divider {
  width: 1px;
  height: 3rem;
  background: rgba(2,8,16,0.2);
  flex-shrink: 0;
}

/* ============================================
   12. KOSTEN-SCHOCK
   ============================================ */
.kostenschock-section {
  padding: 5rem 2rem;
  background: #070f1f;
  border-top: 1px solid rgba(56,189,248,0.08);
  border-bottom: 1px solid rgba(56,189,248,0.08);
}

.kostenschock-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.kostenschock-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--text-light);
  margin: 0.4rem 0 1rem;
  line-height: 1.25;
}

.kostenschock-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

.kostenschock-card {
  background: rgba(255,40,40,0.03);
  border: 1px solid rgba(255,80,80,0.12);
  border-top: 2px solid rgba(255,80,80,0.35);
  border-radius: 12px;
  padding: 2rem;
}

.kostenschock-zahl {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,80,80,0.8);
  font-family: monospace;
  line-height: 1;
}

.kostenschock-zahl-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
  margin-bottom: 1.25rem;
}

.kostenschock-divider {
  height: 1px;
  background: rgba(56,189,248,0.08);
  margin: 1.25rem 0;
}

.kostenschock-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.kostenschock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.kostenschock-dot.red { background: rgba(255,80,80,0.7); }
.kostenschock-dot.green { background: var(--accent); }

/* ============================================
   13. VERGLEICH V2 – TAB SYSTEM
   ============================================ */
.compare-section {
  padding: 5rem 2rem;
}

.compare2-wrap {
  margin-top: 2.5rem;
}

.compare2-tabs {
  display: flex;
  padding: 0 0 0 0;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(56,189,248,0.1);
  margin-bottom: 0;
}

.compare2-tab {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
  font-family: inherit;
  margin-bottom: -1px;
}

.compare2-tab:hover {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(56,189,248,0.3);
}

.compare2-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.compare2-col-header {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  border: 1px solid rgba(56,189,248,0.1);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: rgba(56,189,248,0.02);
  overflow: hidden;
}

.compare2-col-header-label {
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: transparent;
}

.compare2-col-header-them {
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border-left: 1px solid rgba(56,189,248,0.08);
}

.compare2-col-header-us {
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-left: 1px solid rgba(56,189,248,0.08);
  background: rgba(56,189,248,0.03);
}

.compare2-content {
  border: 1px solid rgba(56,189,248,0.1);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.compare2-panel {
  display: none;
}

.compare2-panel.active {
  display: block;
}

.compare2-row {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  border-bottom: 1px solid rgba(56,189,248,0.07);
  transition: background 0.2s ease;
}

.compare2-row:last-child {
  border-bottom: none;
}

.compare2-row:hover {
  background: rgba(56,189,248,0.02);
}

.compare2-label {
  padding: 1.1rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(56,189,248,0.07);
}

.compare2-them {
  padding: 1.1rem 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(56,189,248,0.07);
}

.compare2-us {
  padding: 1.1rem 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  display: flex;
  align-items: center;
  background: rgba(56,189,248,0.02);
}

.compare2-no {
  color: rgba(255,90,90,0.85) !important;
}

.compare2-yes {
  color: rgba(56,189,248,0.95) !important;
  font-weight: 500;
}

/* ============================================
   14. FÜR DEN ENTSCHEIDER
   ============================================ */
.entscheider-section {
  padding: 5rem 2rem;
  background: var(--bg-deep);
}

.entscheider-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.entscheider-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.entscheider-item {
  padding: 2rem;
  border: 1px solid rgba(56,189,248,0.08);
  border-radius: 10px;
  background: rgba(56,189,248,0.02);
  transition: border-color 0.3s ease;
}

.entscheider-item:hover {
  border-color: rgba(56,189,248,0.2);
}

.entscheider-icon {
  margin-bottom: 1rem;
}

.entscheider-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.entscheider-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

/* ============================================
   15. ZIELGRUPPEN
   ============================================ */
.ziel-section {
  padding: 5rem 2rem;
  background: var(--bg-deep);
}

.ziel-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.ziel-left {
  position: sticky;
  top: 120px;
}

.ziel-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ziel-item {
  border-top: 1px solid rgba(56,189,248,0.08);
  padding: 1.5rem 0;
  cursor: default;
  transition: padding 0.3s ease;
  overflow: hidden;
}

.ziel-item:last-child {
  border-bottom: 1px solid rgba(56,189,248,0.08);
}

.ziel-item-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ziel-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  font-family: monospace;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.ziel-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  flex: 1;
  transition: color 0.3s ease;
}

.ziel-arrow {
  color: var(--accent);
  opacity: 0;
  font-size: 1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: rotate(0deg);
}

.ziel-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.ziel-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.3s ease;
  margin-top: 0;
}

.ziel-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(56,189,248,0.5);
  border: 1px solid rgba(56,189,248,0.2);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

@media (hover: hover) {
  .ziel-item:hover { padding: 1.5rem 0 1.75rem; }
  .ziel-item:hover .ziel-num { opacity: 1; }
  .ziel-item:hover .ziel-title { color: var(--text-light); }
  .ziel-item:hover .ziel-arrow { opacity: 1; transform: rotate(180deg); }
  .ziel-item:hover .ziel-body { max-height: 120px; opacity: 1; margin-top: 0.75rem; }
  .ziel-item:hover .ziel-tags { max-height: 40px; opacity: 1; margin-top: 0.75rem; }
}

.ziel-item.ziel-open .ziel-num { opacity: 1; }
.ziel-item.ziel-open .ziel-title { color: var(--text-light); }
.ziel-item.ziel-open .ziel-arrow { opacity: 1; transform: rotate(180deg); }
.ziel-item.ziel-open .ziel-body { max-height: 120px; opacity: 1; margin-top: 0.75rem; }
.ziel-item.ziel-open .ziel-tags { max-height: 40px; opacity: 1; margin-top: 0.75rem; }

.ziel-hint {
  font-size: 0.72rem;
  color: rgba(56,189,248,0.35);
  margin-top: 1rem;
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.04em;
}

.ziel-hint::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: rgba(56,189,248,0.35);
}

/* ============================================
   16. CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(56,189,248,0.02));
  border-top: 1px solid rgba(56,189,248,0.15);
  padding: 6rem 2rem;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cta-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-vertrauen {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cta-vertrauen span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   17. TECH BAR
   ============================================ */
.tech-bar {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tech-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.tech-divider {
  width: 1px;
  height: 1rem;
  background: rgba(56,189,248,0.2);
}

/* ============================================
   18. SVG ANIMATIONEN
   ============================================ */
.scan-dot {
  animation: scan-blink 3s ease-in-out infinite;
}

@keyframes scan-blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.scanner-pulse {
  animation: scanner-glow 2s ease-in-out infinite;
}

@keyframes scanner-glow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; filter: drop-shadow(0 0 6px rgba(56,189,248,0.8)); }
}

.collision-pulse {
  animation: collision-ring 1.5s ease-in-out infinite;
}

@keyframes collision-ring {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.ref-pulse {
  animation: ref-glow 2.5s ease-in-out infinite;
}

@keyframes ref-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.ueber2-scanline {
  animation: scanline-move 4s ease-in-out infinite;
}

@keyframes scanline-move {
  0% { transform: translateY(-100px); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(100px); opacity: 0; }
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   19. LEISTUNGEN PAGE
   ============================================ */
.lp-hero {
  padding: 5rem 2rem 2rem;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.lp-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lp-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.lp-hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.lp-hero-svg,
.lp-hero-visual {
  width: 100%;
  opacity: 0.9;
}

.phase-nav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(5,13,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(56,189,248,0.1);
  padding: 0 2rem;
}

.phase-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  height: 52px;
}

.phase-nav-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.5rem;
  height: 100%;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.phase-nav-item.active {
  border-bottom-color: var(--accent);
}

.phase-nav-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  font-family: monospace;
  transition: opacity 0.3s;
}

.phase-nav-item.active .phase-nav-number {
  opacity: 1;
}

.phase-nav-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.phase-nav-item.active .phase-nav-label {
  color: var(--text-light);
}

.phase-nav-line {
  flex: 1;
  height: 1px;
  background: rgba(56,189,248,0.12);
  max-width: 60px;
}

.lp-phase {
  padding: 3.5rem 2rem;
  background: var(--bg-deep);
}

.lp-phase-alt {
  background: #070f1f;
}

.lp-phase-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lp-phase-inner-flip {
  direction: rtl;
}

.lp-phase-inner-flip > * {
  direction: ltr;
}

.lp-phase-number {
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -1rem;
  font-family: monospace;
}

.lp-phase-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-light);
  margin: 0.3rem 0 1rem;
}

.lp-phase-desc {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.lp-phase-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid rgba(56,189,248,0.15);
  padding-left: 1.5rem;
}

.lp-fact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lp-fact-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  font-family: monospace;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.lp-fact-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.lp-phase-svg {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* ============================================
   20. BRANCHEN ACCORDION
   ============================================ */
.branchen-section {
  background: var(--bg-deep);
  padding: 4rem 2rem;
}

.branchen-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.branchen-item {
  border-top: 1px solid rgba(56,189,248,0.1);
  overflow: hidden;
}

.branchen-item:last-child {
  border-bottom: 1px solid rgba(56,189,248,0.1);
}

.branchen-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
}

.branchen-header:hover .branchen-title {
  color: var(--accent);
}

.branchen-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.branchen-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  font-family: monospace;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.branchen-item.open .branchen-num {
  opacity: 1;
}

.branchen-title {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.3s ease;
  margin: 0;
}

.branchen-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.branchen-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(56,189,248,0.5);
  border: 1px solid rgba(56,189,248,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.branchen-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
  transition: transform 0.35s ease, opacity 0.3s ease;
  width: 24px;
  text-align: center;
  line-height: 1;
}

.branchen-item.open .branchen-arrow {
  transform: rotate(45deg);
  opacity: 1;
}

.branchen-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.branchen-item.open .branchen-body {
  max-height: 500px;
}

.branchen-body-inner {
  padding: 0 0 2.5rem 3.5rem;
}

.branchen-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.branchen-facts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.branchen-fact {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  padding-left: 1rem;
  border-left: 2px solid rgba(56,189,248,0.3);
  line-height: 1.5;
}

.branchen-cta {
  display: inline-block;
}

/* ============================================
   21. VORTEILE PAGE
   ============================================ */
.vorteil-section {
  background: var(--bg-deep);
  padding: 5rem 2rem;
}

.vorteil-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.vorteil-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
}

.vorteil-item-flip {
  direction: rtl;
}

.vorteil-item-flip > * {
  direction: ltr;
}

.vorteil-divider {
  height: 1px;
  background: rgba(56,189,248,0.08);
  width: 100%;
}

.vorteil-left {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.vorteil-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.07;
  line-height: 1;
  flex-shrink: 0;
  font-family: monospace;
  margin-top: -0.5rem;
}

.vorteil-content {
  flex: 1;
}

.vorteil-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-light);
  margin: 0.3rem 0 1rem;
  line-height: 1.25;
}

.vorteil-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.vorteil-facts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.vorteil-fact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.vorteil-fact-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-family: monospace;
}

.vorteil-fact-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: 140px;
  line-height: 1.4;
}

.vorteil-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vorteil-svg {
  width: 100%;
  max-width: 360px;
  opacity: 1;
  filter: brightness(1.6) contrast(1.2);
}

/* ============================================
   22. ÜBER UNS V3
   ============================================ */
.ueber3-hero {
  background: var(--bg-deep);
  padding: 0;
}

.ueber3-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  min-height: 80vh;
}

.ueber3-left {
  display: flex;
  align-items: center;
  padding: 6rem 3rem 4rem 2rem;
  min-width: 0;
}

.ueber3-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ueber3-content.revealed {
  opacity: 1;
  transform: translateX(0);
}

.ueber3-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
  margin: 0.5rem 0 1.25rem;
}

.ueber3-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
  margin: 0 0 2rem;
  font-style: italic;
}

.ueber3-zahlen {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(56,189,248,0.1);
}

.ueber3-zahl {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ueber3-zahl-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: monospace;
  line-height: 1;
}

.ueber3-zahl-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.3;
}

.ueber3-zahl-div {
  width: 1px;
  height: 1.8rem;
  background: rgba(56,189,248,0.15);
  flex-shrink: 0;
}

.ueber3-ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.ueber3-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  animation: ticker-scroll 18s linear infinite;
}

.ueber3-ticker span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.ueber3-dot {
  color: var(--accent) !important;
  opacity: 0.4;
}

.ueber3-ticker-wrap:hover .ueber3-ticker {
  animation-play-state: paused;
}

.ueber3-right {
  background: rgba(56,189,248,0.02);
  border-left: 1px solid rgba(56,189,248,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.ueber3-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.ueber3-portrait-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ueber3-portrait-img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  display: block;
  filter: grayscale(15%);
  border: 1px solid rgba(56,189,248,0.15);
}

.ueber3-portrait-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 100%;
  pointer-events: none;
}

.ueber3-scan-svg {
  width: 100%;
  height: 100%;
}

.ueber3-portrait-label {
  margin-top: 0.75rem;
  text-align: center;
}

.ueber3-portrait-name {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.ueber3-portrait-role {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  margin-top: 0.15rem;
}

/* ============================================
   23. EXPERTISE KARUSSELL
   ============================================ */
.ueber2-expertise {
  padding: 5rem 0 5rem 2rem;
  overflow: hidden;
}

.ueber2-expertise-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-right: 0;
}

.ueber2-expertise-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-right: 2rem;
  margin-bottom: 2.5rem;
}

.ueber2-carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.ueber2-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(56,189,248,0.3);
  background: transparent;
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ueber2-nav-btn:hover {
  background: rgba(56,189,248,0.1);
  border-color: var(--accent);
}

.ueber2-carousel-track-wrap {
  overflow: hidden;
}

.ueber2-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 0.5rem;
}

.ueber2-card {
  flex-shrink: 0;
  width: 280px;
  background: rgba(56,189,248,0.02);
  border: 1px solid rgba(56,189,248,0.1);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.ueber2-card:hover {
  border-color: rgba(56,189,248,0.3);
  transform: translateY(-4px);
}

.ueber2-card-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  font-family: monospace;
  margin-bottom: 1rem;
}

.ueber2-card-icon {
  margin-bottom: 1.25rem;
}

.ueber2-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.ueber2-card-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.ueber2-carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-right: 2rem;
}

.ueber2-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(56,189,248,0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ueber2-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================
   24. ÜBER UNS BOTTOM BLOCKS
   ============================================ */
.ueber2-bottom {
  padding: 5rem 2rem;
  background: #070f1f;
  border-top: 1px solid rgba(56,189,248,0.08);
}

.ueber2-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
}

.ueber2-bottom-block {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#bottomLeft { transform: translateX(-40px); }
#bottomMid { transform: translateY(30px); }
#bottomRight { transform: translateX(40px); }

.ueber2-bottom-block.revealed {
  opacity: 1;
  transform: none;
}

.ueber2-bottom-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0.4rem 0 0.8rem;
  line-height: 1.3;
}

.ueber2-bottom-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

.ueber2-bottom-divider {
  width: 1px;
  background: rgba(56,189,248,0.1);
  align-self: stretch;
}

.ueber2-detail-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ueber2-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ueber2-detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ueber2-detail-value {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}

.ueber2-wf {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.ueber2-wf-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ueber2-wf-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  font-family: monospace;
  width: 20px;
  flex-shrink: 0;
}

.ueber2-wf-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
}

.ueber2-wf-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.ueber2-wf-connector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 20px;
}

.ueber2-wf-line {
  width: 1px;
  height: 12px;
  background: rgba(56,189,248,0.2);
  margin-left: 9px;
}

/* ============================================
   25. CREDENTIAL STRIP (ÜBER UNS)
   ============================================ */
.credential-strip {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(56,189,248,0.1);
  max-width: 100%;
}

.credential-zahlen {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.credential-zahl {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.credential-zahl-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  font-family: monospace;
  line-height: 1;
}

.credential-zahl-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.3;
}

.credential-zahl-divider {
  width: 1px;
  height: 2rem;
  background: rgba(56,189,248,0.15);
  flex-shrink: 0;
}

.credential-ticker-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.credential-ticker {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: ticker-scroll 20s linear infinite;
}

.credential-ticker span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.credential-dot {
  color: var(--accent) !important;
  opacity: 0.4;
}

.credential-ticker-wrap:hover .credential-ticker {
  animation-play-state: paused;
}

/* ============================================
   26. KONTAKT PAGE
   ============================================ */
.kontakt-hero {
  padding: 7rem 2rem 4rem;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(56,189,248,0.08);
}

.kontakt-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.kontakt-hero-text {
  max-width: 560px;
}

.kontakt-vertrauen {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.kontakt-vertrauen-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.kontakt-vertrauen-icon {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.kontakt-hero-deco {
  opacity: 1;
}

.kontakt-deco-svg {
  width: 300px;
  height: auto;
}

.kontakt-main {
  padding: 4rem 2rem 5rem;
  background: var(--bg-deep);
}

.kontakt-main-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.kontakt-form-wrap {
  opacity: 1;
}

.kontakt-form-header {
  margin-bottom: 2rem;
}

.kontakt-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0.3rem 0 0.5rem;
}

.kontakt-form-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.kontakt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.kontakt-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.kontakt-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.kontakt-required {
  color: var(--accent);
}

.kontakt-input {
  background: rgba(56,189,248,0.03);
  border: 1px solid rgba(56,189,248,0.12);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-family: inherit;
  outline: none;
  appearance: none;
}

.kontakt-input:focus {
  border-color: var(--accent);
  background: rgba(56,189,248,0.06);
}

.kontakt-input::placeholder {
  color: rgba(255,255,255,0.2);
}

.kontakt-textarea {
  min-height: 140px;
  resize: vertical;
}

.kontakt-select-wrap {
  position: relative;
}

.kontakt-select {
  cursor: pointer;
  padding-right: 2.5rem;
}

.kontakt-select option {
  background: #0a1628;
  color: var(--text-light);
}

.kontakt-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 0.75rem;
  pointer-events: none;
}

.kontakt-form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.kontakt-submit {
  flex-shrink: 0;
}

.kontakt-hinweis {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.5;
  max-width: 280px;
}

.kontakt-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 1;
}

.kontakt-sidebar-block {
  background: rgba(56,189,248,0.02);
  border: 1px solid rgba(56,189,248,0.09);
  border-radius: 10px;
  padding: 1.5rem;
}

.kontakt-adresse {
  margin: 0.75rem 0 1rem;
}

.kontakt-adresse-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.kontakt-adresse-line {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.kontakt-map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(56,189,248,0.1);
}

.kontakt-sidebar-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin: 0.5rem 0 1rem;
}

.kontakt-direct-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kontakt-direct-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(56,189,248,0.08);
  transition: color 0.2s ease;
}

.kontakt-direct-item:hover {
  color: #fff;
}

.kontakt-direct-icon {
  font-size: 0.9rem;
  opacity: 0.6;
}

.kontakt-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.kontakt-step-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  font-family: monospace;
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 20px;
}

.kontakt-step-text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
}

/* ============================================
   27. TIMELINE (LEGACY)
   ============================================ */
.timeline-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   28. RESPONSIVE – TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .entscheider-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ueber3-inner {
    grid-template-columns: 1fr 220px;
  }

  .compare2-row,
  .compare2-col-header {
    grid-template-columns: 0.8fr 1fr 1fr;
  }

  .lp-phase-inner {
    gap: 3rem;
  }

  .ueber2-bottom-inner {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
  }
}

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

  /* NAV */
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5,13,26,0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.2rem;
  }

  .nav-links.open a {
    color: var(--text-light);
    font-size: 1.1rem;
  }

  .nav-links.open .nav-cta {
    padding: 0.75rem 2rem;
  }

  /* HERO */
  .hero {
    min-height: 100svh;
    padding: 6rem 1.5rem 3rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    text-align: center;
    width: 100%;
  }

  .hero-badges {
    gap: 0.4rem;
    font-size: 0.72rem;
  }

  /* WORKFLOW */
  .workflow-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .workflow-arrow {
    display: none;
  }

  .workflow-step {
    width: 100%;
  }

  /* STATEMENTS */
  .statement-text {
    font-size: 1.2rem;
  }

  .lp-statement p {
    font-size: 1rem;
  }

  /* GRIDS */
  .split-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .entscheider-grid {
    grid-template-columns: 1fr;
  }

  .kostenschock-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vorteil-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
  }

  .vorteil-item-flip {
    direction: ltr;
  }

  /* NUMBERS */
  .numbers-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .number-divider {
    width: 60px;
    height: 1px;
  }

  /* VERGLEICH */
  .compare-section {
    padding: 3rem 1rem;
  }

  .compare2-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .compare2-tab {
    font-size: 0.72rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(56,189,248,0.2);
    border-radius: 999px;
  }

  .compare2-tab.active {
    background: var(--accent);
    color: #020810;
    border-color: var(--accent);
  }

  .compare2-row,
  .compare2-col-header {
    grid-template-columns: 1fr;
  }

  .compare2-col-header-label {
    display: none;
  }

  .compare2-col-header-them,
  .compare2-col-header-us {
    border-left: none;
    padding: 0.5rem 1rem;
  }

  .compare2-label {
    background: rgba(56,189,248,0.05);
    border-right: none;
    font-size: 0.72rem;
    padding: 0.75rem 1rem;
  }

  .compare2-them {
    border-right: none;
    padding: 0.5rem 1rem 0.75rem;
    font-size: 0.78rem;
  }

  .compare2-us {
    padding: 0.5rem 1rem 1rem;
    font-size: 0.78rem;
  }

  /* ZIELGRUPPEN */
  .ziel-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ziel-left {
    position: static;
  }

  /* CTA */
  .cta-vertrauen {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* LEISTUNGEN */
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-phase-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-phase-inner-flip {
    direction: ltr;
  }

  .lp-hero-svg,
  .lp-phase-svg {
    max-width: 280px;
    margin: 0 auto;
  }

  .phase-nav-inner {
    overflow-x: auto;
    gap: 0;
  }

  .phase-nav-line {
    display: none;
  }

  /* BRANCHEN */
  .branchen-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .branchen-tags {
    display: none;
  }

  .branchen-body-inner {
    padding: 0 0 2rem 0;
  }

  /* ÜBER UNS V3 */
  .ueber3-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ueber3-left {
    padding: 5rem 1.5rem 2rem;
  }

  .ueber3-right {
    border-left: none;
    border-top: 1px solid rgba(56,189,248,0.08);
    padding: 2rem 1.5rem 3rem;
  }

  .ueber3-portrait-img {
    max-width: 160px;
  }

  .ueber3-zahlen {
    gap: 1rem;
  }

  .ueber3-zahl-value {
    font-size: 1.2rem;
  }

  /* KARUSSELL */
  .ueber2-expertise {
    padding: 3rem 0 3rem 1.5rem;
  }

  .ueber2-card {
    width: 240px;
  }

  /* BOTTOM BLOCKS */
  .ueber2-bottom-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ueber2-bottom-divider {
    width: 100%;
    height: 1px;
  }

  /* KONTAKT */
  .kontakt-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kontakt-hero-deco {
    display: none;
  }

  .kontakt-main-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .kontakt-form-row {
    grid-template-columns: 1fr;
  }

  .kontakt-sidebar {
    order: -1;
  }

  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  /* SECTION PADDING */
  .section,
  .vorteil-section,
  .branchen-section,
  .compare-section,
  .entscheider-section,
  .kostenschock-section,
  .ziel-section,
  .cta-section,
  .ueber2-bottom,
  .ueber2-expertise {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ============================================================
   ════════════  V2 VEREDELUNGS-LAYER  ════════════
   Überschreibt gezielt generische Stellen. Am Ende geladen,
   gewinnt also bei gleicher Spezifität.
   ============================================================ */

/* ---- NAVIGATION: präziser, mit Mess-Tick unter aktivem Link ---- */
header {
  background: rgba(6,9,20,0.72) !important;
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(56,189,248,0.1) !important;
}
.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -22px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a.active:not(.nav-cta)::after,
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--accent) !important;
  color: #04121E !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  box-shadow: 0 0 0 0 rgba(56,189,248,0.4);
  transition: box-shadow 0.4s ease, transform 0.2s ease;
}
.nav-cta:hover {
  box-shadow: 0 6px 24px -6px rgba(56,189,248,0.6);
  transform: translateY(-1px);
}

/* ---- HERO: tiefere Atmosphäre, Koordinaten-Raster (Signatur) ---- */
.hero {
  background:
    radial-gradient(120% 90% at 75% 15%, rgba(56,189,248,0.10), transparent 55%),
    radial-gradient(100% 80% at 10% 90%, rgba(201,123,74,0.07), transparent 50%),
    var(--bg-deep) !important;
  position: relative;
}
/* Feines Messraster über dem Hero – das wiederkehrende Signatur-Motiv */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 80% at 70% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 80% at 70% 30%, #000 0%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner { z-index: 2; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  font-size: 0.7rem;
}
.hero-kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--copper), var(--accent));
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
}
.hero-subtitle { color: var(--text-mid) !important; font-size: 1.05rem !important; }
.hero-badge {
  background: rgba(10,15,31,0.6) !important;
  border: 1px solid rgba(56,189,248,0.18) !important;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--text-mid) !important;
}

/* ---- BUTTONS: präziser, mit Kupfer-Sekundär ---- */
.btn-primary {
  background: var(--accent) !important;
  color: #04121E !important;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.8rem 1.6rem;
  box-shadow: 0 4px 20px -8px rgba(56,189,248,0.5);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  opacity: 1 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(56,189,248,0.65);
}
.btn-secondary {
  border: 1px solid rgba(180,190,202,0.28) !important;
  font-family: var(--font-body);
  font-weight: 500;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.btn-secondary:hover {
  border-color: var(--copper) !important;
  color: var(--copper) !important;
  background: rgba(201,123,74,0.05);
}

/* ---- SECTION-KICKER: Mess-Tick davor ---- */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  color: var(--accent);
}
.section-kicker::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--copper);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  line-height: 1.15 !important;
}
.section-text { color: var(--text-mid) !important; }

/* ---- CARDS: subtiler Hover, Kupfer-Top-Linie bei Phasen ---- */
.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)) !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.3) !important;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.6);
}
.card .badge {
  color: var(--copper);
  font-size: 0.66rem;
}
.card-title { font-size: 1.15rem; }

/* ---- WORKFLOW BAR: nummerierte Phasen, klarere Hierarchie ---- */
.workflow-bar {
  background: var(--bg-deep) !important;
  border-color: rgba(56,189,248,0.1) !important;
}
.workflow-number { color: var(--copper); font-size: 0.7rem; }
.workflow-line { background: linear-gradient(90deg, var(--accent), transparent) !important; }
.workflow-title { font-size: 1.2rem; }
.workflow-arrow { color: var(--accent); }

/* ---- ZAHLENLEISTE: vom grellen Cyan-Block zu edlem Dark-Band ---- */
.numbers-section {
  background:
    linear-gradient(180deg, rgba(56,189,248,0.04), transparent),
    var(--bg-deep) !important;
  border-top: 1px solid rgba(56,189,248,0.12);
  border-bottom: 1px solid rgba(56,189,248,0.12);
  position: relative;
}
.numbers-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(90deg, rgba(56,189,248,0.05) 1px, transparent 1px);
  background-size: 40px 100%;
  opacity: 0.5;
  pointer-events: none;
}
.number-value { color: var(--accent) !important; }
.number-label { color: var(--text-muted) !important; }
.number-divider { background: rgba(56,189,248,0.18) !important; }

/* ---- STATEMENT: edler ---- */
.statement-section { background: var(--bg-deep) !important; }
.statement-text { color: rgba(245,247,251,0.32) !important; font-family: var(--font-display); font-weight: 500; }
.statement-text span { color: var(--text-light) !important; }

/* ---- TECH-BAR: Trimble-Tech als Chips ---- */
.tech-item {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* ---- VERGLEICHSTABELLE: CorVec-Spalte hervorheben ---- */
.compare2-col-header-us { color: var(--accent) !important; }
.compare2-us {
  background: linear-gradient(90deg, rgba(56,189,248,0.04), transparent);
  border-left: 2px solid rgba(56,189,248,0.25);
}
.compare2-yes { position: relative; }

/* ---- KOSTENSCHOCK: Kupfer statt Rot-Schock wirkt seriöser ---- */
.kostenschock-zahl { font-family: var(--font-mono) !important; }

/* ============================================================
   NEUE BAUSTEINE
   ============================================================ */

/* ---- TRUST-/CREDENTIAL-STRIP (unter Hero) ---- */
.trust-strip {
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(56,189,248,0.08);
  padding: 1.4rem 1.5rem;
}
.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.trust-item svg { flex-shrink: 0; }
.trust-item strong { color: var(--text-light); font-weight: 600; }
.trust-sep { width: 1px; height: 22px; background: rgba(56,189,248,0.15); }
@media (max-width: 768px) {
  .trust-sep { display: none; }
  .trust-strip-inner { gap: 1rem 1.6rem; }
}

/* ---- FAQ (Conversion: Einwände entkräften) ---- */
.faq-section { padding: 5rem 1.5rem; background: var(--bg-section); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 2.5rem; }
.faq-head .section-kicker { justify-content: center; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--border-soft);
  transition: border-color 0.3s ease;
}
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-item.open { border-color: rgba(56,189,248,0.3); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.faq-icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-icon::after  { left: 10px; top: 0; width: 2px; height: 22px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-a-inner {
  padding: 0 0 1.5rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 90%;
}

/* ---- FORMULAR: präzisere Felder ---- */
.kontakt-input {
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.kontakt-input:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
  background: rgba(56,189,248,0.02);
}
.kontakt-label { font-family: var(--font-body); font-weight: 500; }

/* ---- RECHTSTEXT-SEITEN (Impressum/Datenschutz) ---- */
.legal-section { padding: 3.5rem 1.5rem 5rem; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-light);
  margin: 2.2rem 0 0.6rem;
}
.legal-inner h2:first-child { margin-top: 0; }
.legal-inner p, .legal-inner li {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.75;
}
.legal-inner a { color: var(--accent); }
.legal-inner strong { color: var(--text-light); font-weight: 600; }
.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   ACCESSIBILITY & MOTION FLOOR
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
html { scroll-behavior: smooth; }
::selection { background: rgba(56,189,248,0.3); color: #fff; }

/* ============================================================
   USE-CASE LEDGER (ersetzt generische Anwendungsfall-Karten)
   Mess-Zeilen statt Boxen: nummeriert, Hover-Tick, Add-on abgesetzt
   ============================================================ */
.usecase-ledger {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-soft);
}
.usecase-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 8px;
  gap: 1.75rem;
  align-items: start;
  padding: 1.9rem 1.5rem 1.9rem 0.25rem;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.usecase-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: -1px;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.usecase-row:hover {
  background: linear-gradient(90deg, rgba(56,189,248,0.045), transparent 60%);
  padding-left: 1.25rem;
}
.usecase-row:hover::before { transform: scaleY(1); }

.usecase-index {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.3;
  opacity: 0.85;
}
.usecase-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
}
.usecase-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-light);
  margin: 0;
}
.usecase-tag {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 3px;
  white-space: nowrap;
}
.usecase-tag-copper {
  color: var(--copper);
  border-color: rgba(201,123,74,0.4);
}
.usecase-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
  max-width: 60ch;
}
.usecase-marker {
  align-self: center;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.usecase-row:hover .usecase-marker { opacity: 1; transform: scale(1); }
.usecase-marker-copper { background: var(--copper); }

/* Optional-Zeile (Montage) visuell abgesetzt */
.usecase-row-optional {
  background: rgba(201,123,74,0.025);
  border-bottom: 1px solid rgba(201,123,74,0.15);
}
.usecase-row-optional .usecase-index { color: var(--copper); font-size: 1.6rem; line-height: 1.05; }
.usecase-row-optional::before { background: var(--copper); }
.usecase-row-optional:hover {
  background: linear-gradient(90deg, rgba(201,123,74,0.06), transparent 60%);
}

@media (max-width: 768px) {
  .usecase-row {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .usecase-row:hover { padding-left: 0.75rem; }
  .usecase-marker { display: none; }
  .usecase-index { font-size: 1.1rem; }
  .usecase-title { font-size: 1.15rem; }
}

/* ============================================================
   ENTSCHEIDER-RASTER (verbundene Zellen statt schwebende Boxen)
   ============================================================ */
.entscheider-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.012);
}
.entscheider-item {
  position: relative;
  padding: 2.25rem 2rem !important;
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: none !important;
  border-radius: 0 !important;
  transition: background 0.3s ease;
}
.entscheider-item:nth-child(2n) { border-right: none; }
.entscheider-item:nth-child(3),
.entscheider-item:nth-child(4) { border-bottom: none; }
.entscheider-item::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.entscheider-item:hover { background: rgba(56,189,248,0.03); }
.entscheider-item:hover::after { transform: scaleX(1); }
.entscheider-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,123,74,0.3);
  border-radius: 8px;
  background: rgba(201,123,74,0.05);
  margin-bottom: 1.1rem;
}
.entscheider-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.entscheider-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .entscheider-grid { grid-template-columns: 1fr; }
  .entscheider-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-soft) !important;
  }
  .entscheider-item:last-child { border-bottom: none !important; }
}

/* ============================================================
   PROZESS-LEDGER (Ablauf-Seite) – vertikale Mess-Timeline
   ============================================================ */
.process-ledger {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}
.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
}
.process-rail {
  position: relative;
  display: flex;
  justify-content: center;
}
/* durchgehende Linie */
.process-rail::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border-soft);
  transform: translateX(-50%);
}
.process-step:first-child .process-rail::before { top: 28px; }
.process-step:last-child .process-rail::before { bottom: calc(100% - 28px); }
.process-num {
  position: relative;
  z-index: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--bg-section);
  border: 1px solid rgba(56,189,248,0.35);
  border-radius: 50%;
  margin-top: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.process-step:hover .process-num {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.1);
  transform: scale(1.05);
}
.process-card {
  padding: 0.3rem 0 2.6rem;
}
.process-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.process-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-light);
  margin: 0;
}
.process-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  white-space: nowrap;
}
.process-desc {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 1rem;
  max-width: 62ch;
}
.process-io {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.6rem 0.9rem;
  background: rgba(56,189,248,0.03);
  border-left: 2px solid rgba(56,189,248,0.3);
  border-radius: 0 6px 6px 0;
}
.process-io-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 0.15rem;
}
.process-io-sep { color: var(--border-soft); margin: 0 0.4rem; }

/* Optional-Schritt (Montage) in Kupfer */
.process-step-optional .process-num {
  color: var(--copper);
  border-color: rgba(201,123,74,0.4);
  font-size: 1.3rem;
}
.process-step-optional:hover .process-num {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(201,123,74,0.1);
}
.process-step-optional .process-io {
  background: rgba(201,123,74,0.04);
  border-left-color: rgba(201,123,74,0.35);
}
.process-step-optional .process-io-label { color: var(--copper); }
.process-optional-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(201,123,74,0.4);
  border-radius: 3px;
  padding: 0.12rem 0.45rem;
  vertical-align: middle;
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .process-step { grid-template-columns: 48px 1fr; gap: 1rem; }
  .process-num { width: 36px; height: 36px; font-size: 0.8rem; }
  .process-head { flex-direction: column; gap: 0.3rem; }
  .process-meta { white-space: normal; }
  .process-title { font-size: 1.15rem; }
}

/* ============================================================
   TRUST-PILLARS + KLARTEXT (Warum-CorVec-Seite)
   ============================================================ */
.trust-pillars {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-pillar {
  position: relative;
  padding: 2.25rem 1.9rem;
  border-right: 1px solid var(--border-soft);
  transition: background 0.3s ease;
}
.trust-pillar:last-child { border-right: none; }
.trust-pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.trust-pillar:last-child::before { background: var(--copper); }
.trust-pillar:hover { background: rgba(56,189,248,0.03); }
.trust-pillar:last-child:hover { background: rgba(201,123,74,0.04); }
.trust-pillar:hover::before { transform: scaleX(1); }
.trust-pillar-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.trust-pillar:last-child .trust-pillar-num { color: var(--copper); }
.trust-pillar-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.trust-pillar-desc {
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.68;
  margin: 0 0 1.25rem;
}
.trust-pillar-link {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  transition: gap 0.2s ease, color 0.2s ease;
}
.trust-pillar:last-child .trust-pillar-link { color: var(--copper); }
.trust-pillar-link:hover { color: var(--text-light); }

/* Klartext-Block */
.honesty-block { max-width: 760px; }
.honesty-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 1.1rem 0 0;
}
.honesty-text:first-of-type { margin-top: 1.5rem; }
.honesty-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.honesty-sig-line {
  width: 40px; height: 1px;
  background: var(--copper);
}
.honesty-sig-text {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .trust-pillars { grid-template-columns: 1fr; }
  .trust-pillar {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }
  .trust-pillar:last-child { border-bottom: none; }
  .honesty-text { font-size: 0.98rem; }
}

/* ============================================================
   GLOSSAR (SEO-Wissensseite)
   ============================================================ */
.glossar-search-wrap {
  position: relative;
  margin-bottom: 2.5rem;
}
.glossar-search {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.8rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.glossar-search::placeholder { color: var(--text-muted); }
.glossar-search:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
  background: rgba(56,189,248,0.02);
}
.glossar-search-icon {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  pointer-events: none;
}
.glossar-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-soft);
}
.glossar-entry {
  padding: 1.6rem 0 1.6rem 1.25rem;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  transition: padding-left 0.3s ease, background 0.3s ease;
}
.glossar-entry::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: -1px;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.glossar-entry:hover {
  padding-left: 1.75rem;
  background: linear-gradient(90deg, rgba(56,189,248,0.03), transparent 55%);
}
.glossar-entry:hover::before { transform: scaleY(1); }
.glossar-term {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin: 0 0 0.5rem;
}
.glossar-def {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
  max-width: 68ch;
}
.glossar-def strong { color: var(--text-light); font-weight: 600; }
.glossar-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 2.5rem 0;
}
.glossar-empty a { color: var(--accent); }

/* ============================================================
   VERTRAUENS-BANNER (Startseite, vor finaler CTA)
   ============================================================ */
.trustbanner-section {
  padding: 5rem 1.5rem;
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(201,123,74,0.06), transparent 55%),
    var(--bg-deep);
  border-top: 1px solid rgba(56,189,248,0.1);
  border-bottom: 1px solid rgba(56,189,248,0.1);
}
.trustbanner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.trustbanner-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-light);
  margin: 0.4rem 0 1rem;
}
.trustbanner-desc {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 52ch;
}
.trustbanner-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.trustbanner-pill {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  transition: background 0.3s ease;
}
.trustbanner-pill:last-child { border-bottom: none; }
.trustbanner-pill::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.trustbanner-pill:last-child::before { background: var(--copper); }
.trustbanner-pill:hover { background: rgba(56,189,248,0.03); }
.trustbanner-pill:last-child:hover { background: rgba(201,123,74,0.04); }
.trustbanner-pill:hover::before { transform: scaleY(1); }
.trustbanner-pill-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.trustbanner-pill:last-child .trustbanner-pill-value { color: var(--copper); }
.trustbanner-pill-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .trustbanner-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   WORKFLOW-INTRO (übernimmt Rolle der gestrichenen Lösungs-Section)
   ============================================================ */
.workflow-intro {
  max-width: var(--max-width);
  margin: 0 auto 2.75rem;
  text-align: center;
}
.workflow-intro .section-kicker { justify-content: center; }
.workflow-intro .section-text { max-width: 58ch; }

/* ============================================================
   TELEFON IM HEADER (Vertriebs-CTA)
   ============================================================ */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid) !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-phone::after { display: none !important; }
.nav-phone:hover { color: var(--accent) !important; }
.nav-phone-icon { color: var(--accent); font-size: 0.95rem; }
@media (max-width: 1024px) {
  .nav-phone { display: none; }
}
/* im Mobile-Menü wieder sichtbar */
@media (max-width: 768px) {
  .nav-links.open .nav-phone {
    display: inline-flex;
    font-size: 1rem;
  }
}

/* ============================================================
   LEAD-MAGNET (Checkliste-Download)
   ============================================================ */
.leadmagnet-section {
  padding: 5rem 1.5rem;
  background:
    radial-gradient(80% 120% at 15% 0%, rgba(56,189,248,0.06), transparent 55%),
    var(--bg-section);
  border-top: 1px solid var(--border-soft);
}
.leadmagnet-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
/* Dokument-Mockup */
.leadmagnet-visual { display: flex; justify-content: center; }
.leadmagnet-doc {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 280px;
  padding: 1.75rem;
  background: linear-gradient(160deg, #0E1424, #0A0F1F);
  border: 1px solid var(--border-soft);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.leadmagnet-section:hover .leadmagnet-doc { transform: rotate(0deg); }
.leadmagnet-doc-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}
.leadmagnet-doc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}
.leadmagnet-doc-line {
  height: 5px; border-radius: 3px;
  background: var(--border-soft);
  width: 100%;
}
.leadmagnet-doc-line.short { width: 70%; margin-bottom: 0.5rem; }
.leadmagnet-doc-check {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.leadmagnet-doc-more {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 0.25rem;
}
/* Formular */
.leadmagnet-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.leadmagnet-input {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.leadmagnet-input::placeholder { color: var(--text-muted); }
.leadmagnet-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
}
.leadmagnet-form .btn-primary { white-space: nowrap; }
.leadmagnet-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
}
@media (max-width: 768px) {
  .leadmagnet-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .leadmagnet-visual { order: 2; }
  .leadmagnet-doc { transform: rotate(0deg); max-width: 240px; }
}

/* ============================================================
   DETAIL-FIXES: Statement-Kontrast anheben (Lesbarkeit/A11y)
   ============================================================ */
.statement-text { color: rgba(245,247,251,0.5) !important; }
.statement-text span { color: var(--text-light) !important; }
.lp-statement p { color: rgba(245,247,251,0.45) !important; }
.lp-statement p span { color: rgba(245,247,251,0.8) !important; }

/* ============================================================
   POLITUR-SCHICHT (Stand: dezent, B2B-seriös)
   Leitplanken: langsame, kleine Bewegungen · nur einmal ·
   reduced-motion respektiert · Effekte unter Wahrnehmungsschwelle
   ============================================================ */

/* ---- 1. SCROLL-CHOREOGRAFIE: sanftes Einblenden ---- */
.fx-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.fx-reveal.fx-in {
  opacity: 1;
  transform: translateY(0);
}
/* gestaffelte Kinder (z.B. Karten in einer Reihe) */
.fx-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fx-stagger.fx-in > * { opacity: 1; transform: translateY(0); }
.fx-stagger.fx-in > *:nth-child(2) { transition-delay: 0.08s; }
.fx-stagger.fx-in > *:nth-child(3) { transition-delay: 0.16s; }
.fx-stagger.fx-in > *:nth-child(4) { transition-delay: 0.24s; }

/* ---- 2. VERGLEICHSTABELLE: Icons, Glow, Tab-Übergang ---- */
/* CorVec-Spalte: etwas deutlicherer (aber ruhiger) Glow */
.compare2-us {
  background: linear-gradient(90deg, rgba(56,189,248,0.06), rgba(56,189,248,0.01)) !important;
  border-left: 2px solid rgba(56,189,248,0.35) !important;
}
.compare2-col-header-us {
  position: relative;
}
.compare2-col-header-us::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.6;
}
/* ✓/✕ Icons vor den Zellen – nur in der Sicherheit/Effizienz-Logik dezent */
.compare2-them.compare2-no::before,
.compare2-us.compare2-yes::before {
  font-family: var(--font-mono);
  font-weight: 700;
  margin-right: 0.6rem;
  flex-shrink: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.compare2-them.compare2-no::before {
  content: "✕";
  color: rgba(214,120,120,0.9);
}
.compare2-us.compare2-yes::before {
  content: "✓";
  color: var(--accent);
}
/* sanfter Panel-Übergang beim Tab-Wechsel */
.compare2-panel {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.compare2-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ---- 3. TIEFE & ATMOSPHÄRE ---- */
/* sehr dezentes Korn über dem ganzen Body (Materialität) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Karten: einen Hauch mehr Erhebung beim Hover (ruhig) */
.card, .entscheider-card, .usecase-row {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s ease;
}
.card:hover, .entscheider-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.6);
}

/* ---- 4. MIKROINTERAKTIONEN ---- */
/* Telefon im Header: klarer, ruhiger Hover */
.nav-phone { transition: color 0.25s ease; }
.nav-phone:hover .nav-phone-icon { color: var(--accent); }
/* Zahlen-Countup: stabile Breite, damit nichts springt */
.fx-count { font-variant-numeric: tabular-nums; }

/* ---- reduced-motion: alles ruhigstellen ---- */
@media (prefers-reduced-motion: reduce) {
  .fx-reveal, .fx-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .compare2-panel { transition: none; }
  .card:hover, .entscheider-card:hover { transform: none; }
  body::after { display: none; }
}

/* ============================================================
   MOBILE OVERFLOW FIX  (sticky-sicher)
   KEIN overflow-x auf html/body – das würde position:sticky
   und damit die Scroll-Sequenz zerstoeren.
   ============================================================ */
@media (max-width: 768px) {

  /* ÜBER UNS – Bottom-Blöcke sauber stapeln */
  .ueber2-bottom {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow-x: clip;
  }

  .ueber2-bottom-inner {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    width: 100%;
    max-width: 100%;
  }

  .ueber2-bottom-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    transform: none !important;
  }

  .ueber2-bottom-divider {
    width: 100% !important;
    height: 1px !important;
    align-self: stretch;
  }

  .ueber2-bottom-title {
    font-size: 1.15rem;
    word-break: break-word;
  }

  .ueber2-detail-list,
  .ueber2-detail-item,
  .ueber2-detail-value,
  .ueber2-wf,
  .ueber2-wf-step,
  .ueber2-wf-info {
    min-width: 0;
    max-width: 100%;
    word-break: break-word;
  }

  /* Reveal-Transforms auf Mobile deaktivieren:
     sie schoben die Blöcke seitlich aus dem Viewport */
  #bottomLeft, #bottomMid, #bottomRight {
    transform: none !important;
  }
}