/* =====================================================
   EPM RESULTS — Design System
   Brand: Premium Marketing-Agentur
   Approach: Editorial × Modern × Direct
   ===================================================== */

/* ---------- Fonts (lokal einbinden in /assets/fonts) ---------- */
@font-face {
  font-family: 'Fraunces';
  src: local('Fraunces');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: local('Inter');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  line-height: 1.55;
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--c-accent-500); outline-offset: 3px; border-radius: 4px; }

/* ---------- Tokens ---------- */
:root {
  /* Brand-Farben — Navy bleibt Anker, Cyan/Blau bleibt Akzent */
  --c-navy-950: #060F1F;
  --c-navy-900: #0A1729;
  --c-navy-800: #0F2240;
  --c-navy-700: #15305B;
  --c-navy-600: #1E4080;

  --c-accent-700: #1D4ED8;  /* CTA-Blau (Brand) */
  --c-accent-600: #2563EB;
  --c-accent-500: #3B82F6;
  --c-accent-400: #60A5FA;
  --c-accent-300: #93C5FD;
  --c-accent-200: #BFDBFE;
  --c-accent-100: #DBEAFE;
  --c-accent-50:  #EFF6FF;

  /* Highlight-Akzent (für Glow / Subtile Highlights) */
  --c-cyan: #7FA7FF;
  --c-cyan-soft: rgba(127, 167, 255, 0.18);

  /* Neutrals — leicht warmer Bias */
  --c-bg: #FFFFFF;
  --c-bg-soft: #F6F7FA;
  --c-bg-warm: #FAFAF7;
  --c-line: #E5E8EE;
  --c-line-soft: #EEF0F4;
  --c-ink: #0E1525;
  --c-ink-soft: #4A5366;
  --c-muted: #6B7280;

  --grad-navy: linear-gradient(180deg, #0A1729 0%, #15305B 100%);
  --grad-navy-deep: radial-gradient(ellipse at top right, #15305B 0%, #0A1729 60%, #060F1F 100%);
  --grad-cta: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);

  /* Schriften */
  --f-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing — 4pt-Grid */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(14, 21, 37, 0.05);
  --shadow-md: 0 8px 24px -6px rgba(14, 21, 37, 0.08), 0 2px 6px rgba(14, 21, 37, 0.04);
  --shadow-lg: 0 24px 48px -16px rgba(14, 21, 37, 0.18), 0 6px 16px rgba(14, 21, 37, 0.08);
  --shadow-xl: 0 36px 72px -24px rgba(14, 21, 37, 0.22), 0 8px 24px rgba(14, 21, 37, 0.10);
  --shadow-glow: 0 18px 40px -12px rgba(29, 78, 216, 0.55);

  /* Easing & Timing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 180ms;
  --t-base: 280ms;
  --t-slow: 520ms;
  --t-slower: 800ms;
}

/* ---------- Typografie ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}
@media (min-width: 720px) { .container { padding: 0 var(--s-6); } }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
h1 { font-size: clamp(2.4rem, 4.2vw + 0.5rem, 4.4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.85rem, 2.6vw + 0.6rem, 3rem); }
h3 { font-size: clamp(1.2rem, 0.7vw + 0.9rem, 1.45rem); line-height: 1.25; letter-spacing: -0.012em; }
h4 { font-size: 1.05rem; line-height: 1.35; letter-spacing: -0.005em; }

p { color: var(--c-ink-soft); line-height: 1.65; font-size: 1rem; }
strong { font-weight: 600; color: var(--c-ink); }

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent-700);
  margin-bottom: var(--s-4);
}
.eyebrow--dark { color: var(--c-cyan); }

.lede {
  font-size: clamp(1.05rem, 0.4vw + 0.95rem, 1.18rem);
  line-height: 1.6;
  color: var(--c-ink-soft);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
.btn--lg { padding: 16px 32px; font-size: 15.5px; }
.btn svg { width: 16px; height: 16px; transition: transform var(--t-base) var(--ease-out); }

.btn--primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px -14px rgba(29, 78, 216, 0.70);
}
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn--ghost:hover {
  border-color: var(--c-ink);
  background: var(--c-bg-soft);
}
.btn--ghost-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost-dark:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
}

/* ---------- Reveal-Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slower) var(--ease-out), transform var(--t-slower) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 23, 41, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              backdrop-filter var(--t-base) var(--ease-out);
}

/* Startseite: Header liegt transparent über dem Hero und verschmilzt mit
   dem Verlauf. Beim Scrollen wird die solide Variante eingeblendet. */
.home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.home .site-header.is-scrolled {
  background: rgba(10, 23, 41, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--s-5);
}
.site-header__logo img,
.site-header__logo svg {
  height: 46px;
  width: auto;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
}

.nav-primary {
  display: none;
  align-items: center;
  gap: var(--s-6);
}
@media (min-width: 980px) {
  .nav-primary { display: flex; }
}
.nav-primary a {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  font-weight: 500;
  transition: color var(--t-fast) var(--ease-out);
  position: relative;
}
.nav-primary a:hover { color: #fff; }
.nav-primary a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent-500);
  transition: width var(--t-base) var(--ease-out);
}
.nav-primary a:hover::after { width: 100%; }

.site-header__cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.site-header__cta .btn {
  display: none;
}
@media (min-width: 980px) {
  .site-header__cta .btn { display: inline-flex; }
}
.site-header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 14.5px;
  font-variant-numeric: tabular-nums;
  transition: color var(--t-fast) var(--ease-out);
}
.site-header__phone:hover { color: #fff; }
.site-header__phone svg { width: 16px; height: 16px; color: var(--c-cyan); }
@media (min-width: 720px) {
  .site-header__phone { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
}
@media (min-width: 980px) {
  .nav-toggle { display: none; }
}

/* Mobile-Drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 31, 0.97);
  backdrop-filter: blur(20px);
  z-index: 100;
  padding: var(--s-7) var(--s-5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-7);
}
.nav-drawer__top svg { color: #fff; }
.nav-drawer__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.nav-drawer__list a {
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.nav-drawer__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--grad-navy-deep);
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;       /* mobil ohne Adressleisten-Sprung */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* Inhalt vertikal zentriert */
  padding: 96px 0 64px;
  isolation: isolate;
}
@media (min-width: 980px) {
  .hero { padding: 110px 0 80px; }
}

/* Weicher Farbübergang am unteren Hero-Rand in die helle Folgesektion */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(90px, 13vh, 170px);
  background: linear-gradient(to bottom,
              rgba(246, 247, 250, 0)    0%,
              rgba(246, 247, 250, 0.03) 40%,
              rgba(246, 247, 250, 0.10) 60%,
              rgba(246, 247, 250, 0.22) 75%,
              rgba(246, 247, 250, 0.42) 86%,
              rgba(246, 247, 250, 0.70) 94%,
              var(--c-bg-soft)          100%);
  z-index: 1;
  pointer-events: none;
}

/* Hintergrund-Animation: subtile, animierte Gradient-Wolken */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: heroFloat 20s var(--ease-in-out) infinite;
  will-change: transform;
}
.hero__bg-blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.45), transparent 70%);
  top: -80px;
  right: -120px;
  animation-delay: 0s;
}
.hero__bg-blob--2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(127, 167, 255, 0.30), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -7s;
}
.hero__bg-blob--3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.30), transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
  opacity: 0.35;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}
.hero__bg-blob--2 {
  animation: heroFloat2 25s var(--ease-in-out) infinite;
}
@keyframes heroFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 30px) scale(1.1); }
}

/* Hintergrund: feines Grid-Pattern */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: -1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__content {
  max-width: 820px;
}

/* Hero-Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: var(--s-5);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.20);
  animation: dotPulse 2.4s var(--ease-in-out) infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.20); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.05); }
}

/* Hero-Headline */
.hero__title {
  margin-bottom: var(--s-5);
  color: #fff;
}
.hero__title .accent,
.hero__title .hl {
  /* einheitlicher Blauton fuer alle drei Power-Woerter */
  background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-accent-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title .accent { font-style: italic; }

/* Glow-Steigerung der Power-Woerter: sehr dezent -> leicht strahlend */
.hero__title .hl--1 { filter: drop-shadow(0 0 4px rgba(127, 167, 255, 0.16)); }  /* erste Wahl */
.hero__title .hl--2 { filter: drop-shadow(0 0 7px rgba(127, 167, 255, 0.26)); }  /* Ueberzeugend */
.hero__title .accent {
  filter: drop-shadow(0 0 8px rgba(147, 197, 253, 0.34))
          drop-shadow(0 0 16px rgba(127, 167, 255, 0.22));        /* Unvergesslich – staerkster Glow */
}

.hero__lede {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 0.4vw + 0.95rem, 1.2rem);
  line-height: 1.65;
  max-width: 60ch;
  margin: 0 auto var(--s-6);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
  justify-content: center;
}

/* Hero-Trust-Strip */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  color: rgba(255,255,255,0.70);
  font-size: 13.5px;
  justify-content: center;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust svg {
  width: 16px;
  height: 16px;
  color: var(--c-cyan);
  flex-shrink: 0;
}

/* Hero-Visual: animiertes Dashboard-Mockup */
.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 980px) {
  .hero__visual { aspect-ratio: 4 / 5; }
}

.hero__visual-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--r-2xl);
  background: linear-gradient(155deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 40px 80px -24px rgba(6, 15, 31, 0.6);
}

.hero__visual-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 40%, rgba(29, 78, 216, 0.4), transparent 60%);
  filter: blur(48px);
  z-index: -1;
  animation: heroPulse 6s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Stack-Karten im Hero-Visual */
.hero__stack {
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__card {
  background: rgba(255,255,255,0.96);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  color: var(--c-ink);
  box-shadow: 0 12px 32px -8px rgba(6, 15, 31, 0.45);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: cardSlideIn 0.7s var(--ease-out) forwards;
}
.hero__card:nth-child(1) { animation-delay: 0.4s; }
.hero__card:nth-child(2) { animation-delay: 0.8s; }
.hero__card:nth-child(3) { animation-delay: 1.2s; }
.hero__card:nth-child(4) { animation-delay: 1.6s; }

@keyframes cardSlideIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__card-source { display: inline-flex; align-items: center; gap: 6px; }
.hero__card-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.20);
}

.hero__card-body {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-ink);
}
.hero__card-meta {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--c-muted);
  font-weight: 500;
}

/* Stats-Pill schwebt unten */
.hero__stats-pill {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--r-pill);
  padding: 10px 18px 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px -10px rgba(6, 15, 31, 0.55);
  white-space: nowrap;
  opacity: 0;
  animation: cardSlideIn 0.7s var(--ease-out) 2s forwards;
}
.hero__stats-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c-accent-700);
  line-height: 1;
}
.hero__stats-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-ink-soft);
  line-height: 1.3;
}

/* ============================================================
   BRANCHEN-STRIP
   ============================================================ */
.industries {
  background: var(--c-bg);
  padding: var(--s-7) 0;
  border-bottom: 1px solid var(--c-line);
}
.industries__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
}
.industries__label {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-align: center;
}
.industries__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.industries__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-ink);
  transition: all var(--t-base) var(--ease-out);
}
.industries__pill:hover {
  border-color: var(--c-accent-500);
  background: var(--c-accent-50);
  transform: translateY(-2px);
}
.industries__pill svg {
  width: 16px;
  height: 16px;
  color: var(--c-accent-700);
}

/* ============================================================
   SECTION-BASIS
   ============================================================ */
.section {
  padding: var(--s-9) 0;
}
@media (max-width: 720px) {
  .section { padding: var(--s-8) 0; }
}
.section--off { background: var(--c-bg-soft); }
.section--dark { background: var(--c-navy-900); color: #fff; }
.section--dark p { color: rgba(255,255,255,0.72); }
.section--dark h2, .section--dark h3 { color: #fff; }

/* ------------------------------------------------------------
   Sektions-Übergang: feiner Akzent-Knoten am Sektionsanfang.
   Schafft beim Scrollen einen klaren Rhythmus statt leerer Flächen.
   ------------------------------------------------------------ */
.section { position: relative; }
.section::before,
.section::after {
  content: '';
  position: absolute;
  left: 50%;
  top: clamp(34px, 5vw, 52px);
  pointer-events: none;
}
.section::before {
  transform: translate(-50%, -50%);
  width: min(320px, 46%);
  height: 1px;
  background: linear-gradient(to right,
              transparent 0%,
              var(--c-line) 24%,
              var(--c-line) 76%,
              transparent 100%);
}
.section::after {
  width: 6px;
  height: 6px;
  border-radius: 1.5px;
  background: var(--c-accent-600);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.10),
              0 0 12px rgba(37, 99, 235, 0.40);
}
.section--dark::before {
  background: linear-gradient(to right,
              transparent 0%,
              rgba(127, 167, 255, 0.35) 24%,
              rgba(127, 167, 255, 0.35) 76%,
              transparent 100%);
}

.section__head {
  max-width: 760px;
  margin-bottom: var(--s-8);
}
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__title {
  margin-bottom: var(--s-4);
}
.hl-blue { color: var(--c-accent-600); }
.section__lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  max-width: 56ch;
}
.section__head--center .section__lede { margin-left: auto; margin-right: auto; }
.section--dark .section__lede { color: rgba(255,255,255,0.72); }

/* ============================================================
   PROBLEM-SECTION
   ============================================================ */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (min-width: 880px) {
  .problem__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}

.problem__cards {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 540px) and (max-width: 879px) {
  .problem__cards { grid-template-columns: 1fr 1fr; }
}

/* Volle Breite: nur Pain-Points, ohne rechte Box */
.problem__cards--full { grid-template-columns: 1fr; }
@media (min-width: 560px) { .problem__cards--full { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .problem__cards--full { grid-template-columns: repeat(4, 1fr); } }

/* Lösungs-Box als eigenständige, zentrierte Karte */
.problem__cta-card--solo { max-width: 760px; margin: 0 auto; }

/* Abstand zur zweiten Überschrift in der kombinierten Sektion */
.outcomes__head { margin-top: clamp(48px, 7vh, 88px); }
.problem__cta-card--solo { margin-top: clamp(40px, 6vh, 72px); }

/* Pain-Sektion: zweispaltig (Text links, Stichpunkte rechts) */
.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (min-width: 880px) {
  .pain__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
  }
}
.pain__intro { text-align: left; }
.pain__intro .section__lede { max-width: 52ch; margin-bottom: 0; }

.pain__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.pain__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pain__dot {
  flex: none;
  width: 11px;
  height: 11px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--grad-cta);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.pain__item h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.pain__item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--c-ink-soft);
  margin: 0;
}

.problem__card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: all var(--t-base) var(--ease-out);
}
.problem__card:hover {
  border-color: var(--c-accent-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.problem__card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--c-accent-50);
  color: var(--c-accent-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.problem__card-icon svg { width: 18px; height: 18px; }
.problem__card h3 { font-size: 1.05rem; font-family: var(--f-body); font-weight: 700; }
.problem__card p { font-size: 14.5px; line-height: 1.55; color: var(--c-ink-soft); }

.problem__cta-card {
  background: var(--c-navy-900);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-6);
  position: relative;
  overflow: hidden;
}
.problem__cta-card::before {
  content: '';
  position: absolute;
  inset: -50% -50% auto auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.4), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.problem__cta-card h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  margin-bottom: var(--s-3);
  position: relative;
  color: #fff;
}
.problem__cta-card p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  margin-bottom: var(--s-4);
  position: relative;
}
.problem__cta-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--s-5);
  position: relative;
}
.problem__cta-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.problem__cta-card li svg {
  width: 18px; height: 18px;
  color: var(--c-accent-400);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* unvollstaendige letzte Reihe mittig */
  gap: var(--s-4);
}
.services__grid .service-card { flex: 0 1 100%; }
@media (min-width: 720px) {
  .services__grid .service-card { flex-basis: calc((100% - var(--s-4)) / 2); }
}
@media (min-width: 1024px) {
  .services__grid .service-card { flex-basis: calc((100% - 2 * var(--s-4)) / 3); }
}

.service-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: all var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent-300);
}
.service-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-accent-50);
  color: var(--c-accent-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-2);
  transition: all var(--t-base) var(--ease-out);
}
.service-card:hover .service-card__icon {
  background: var(--grad-cta);
  color: #fff;
}
.service-card__icon svg { width: 20px; height: 20px; }
.service-card h3 { font-family: var(--f-body); font-weight: 700; font-size: 1.08rem; letter-spacing: -0.005em; }
.service-card p { font-size: 14.5px; color: var(--c-ink-soft); }

.service-card--accent {
  background: var(--grad-navy-deep);
  border: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-card--accent::before {
  content: '';
  position: absolute;
  inset: -50% -50% auto auto;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(127, 167, 255, 0.30), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.service-card--accent h3 { color: #fff; position: relative; z-index: 1; }
.service-card--accent p { color: rgba(255,255,255,0.78); position: relative; z-index: 1; }
.service-card--accent .service-card__icon {
  background: rgba(127, 167, 255, 0.20);
  color: var(--c-cyan);
}
.service-card--accent:hover .service-card__icon {
  background: var(--grad-cta);
  color: #fff;
}
.service-card__link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-cyan);
  padding-top: var(--s-3);
  transition: gap var(--t-base) var(--ease-out);
}
.service-card__link:hover { gap: 14px; color: #fff; }
.service-card__link svg { width: 14px; height: 14px; }

/* Rechteckiger blauer "Mehr erfahren"-Button in den Bausteinen */
.service-card__btn {
  margin-top: auto;          /* an den unteren Kartenrand schieben -> Buttons fluchten */
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
  padding: 11px 20px;
  background: var(--grad-cta);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border: 0;
  border-radius: 8px;        /* rechteckig mit leicht gerundeten Ecken */
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.service-card__btn svg {
  width: 15px; height: 15px;
  transition: transform var(--t-base) var(--ease-out);
}
.service-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px rgba(29, 78, 216, 0.60);
}
.service-card__btn:hover svg { transform: translateX(3px); }

/* ============================================================
   ANALYSE-CTA (öffnet Quiz-Modal)
   ============================================================ */
.analyse-cta {
  padding: var(--s-9) 0;
  background: var(--c-bg);
}
.analyse-cta__card {
  position: relative;
  background: var(--grad-navy-deep);
  border-radius: var(--r-2xl);
  padding: var(--s-8) var(--s-6);
  overflow: hidden;
  text-align: center;
}
@media (min-width: 720px) {
  .analyse-cta__card { padding: var(--s-9) var(--s-8); }
}
.analyse-cta__glow {
  position: absolute;
  inset: -40% 30% auto auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(29,78,216,0.45), transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}
.analyse-cta__text {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.analyse-cta__text h2 {
  color: #fff;
  margin-bottom: var(--s-4);
}
.analyse-cta__text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: var(--s-5);
}
.analyse-cta__bullets {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--s-6);
  text-align: left;
}
.analyse-cta__bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.analyse-cta__bullets svg { width: 18px; height: 18px; color: var(--c-cyan); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   QUIZ-MODAL
   ============================================================ */
.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out);
}
.quiz-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.quiz-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 31, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.quiz-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--r-2xl);
  box-shadow: 0 48px 96px -24px rgba(6, 15, 31, 0.7);
  transform: translateY(20px) scale(0.98);
  transition: transform var(--t-base) var(--ease-out);
}
.quiz-modal.is-open .quiz-modal__dialog {
  transform: translateY(0) scale(1);
}
.quiz-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  color: var(--c-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast) var(--ease-out);
}
.quiz-modal__close:hover { background: var(--c-line); color: var(--c-ink); }
.quiz-modal__close svg { width: 18px; height: 18px; }

/* Quiz-Inhalt */
.quiz {
  padding: var(--s-7) var(--s-5) var(--s-6);
}
@media (min-width: 600px) { .quiz { padding: var(--s-8) var(--s-7) var(--s-7); } }

.quiz__intro {
  margin-bottom: var(--s-5);
}
.quiz__intro-label {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent-700);
  margin-bottom: var(--s-2);
}
.quiz__intro-title {
  font-size: 1.6rem;
}

.quiz__progress {
  margin-bottom: var(--s-5);
}
.quiz__progress-bar {
  height: 6px;
  background: var(--c-bg-soft);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.quiz__progress-fill {
  height: 100%;
  background: var(--grad-cta);
  width: 25%;
  border-radius: var(--r-pill);
  transition: width var(--t-slow) var(--ease-out);
}
.quiz__progress-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 10px;
}

.quiz__step { display: none; }
.quiz__step.is-active { display: block; animation: stepIn 0.35s var(--ease-out); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.quiz__step h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-4);
  color: var(--c-ink);
}
.quiz__step-subtitle {
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: var(--s-4);
  margin-top: -10px;
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz__options--row {
  flex-direction: row;
  flex-wrap: wrap;
}
.quiz__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink);
  transition: all var(--t-base) var(--ease-out);
  background: #fff;
}
.quiz__option:hover {
  border-color: var(--c-accent-500);
  background: var(--c-accent-50);
}
.quiz__option.is-selected {
  border-color: var(--c-accent-700);
  background: var(--c-accent-50);
}
.quiz__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.quiz__option-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--c-line);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--t-fast) var(--ease-out);
}
.quiz__option.is-selected .quiz__option-radio {
  border-color: var(--c-accent-700);
}
.quiz__option.is-selected .quiz__option-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--c-accent-700);
  border-radius: 50%;
}
.quiz__options--row .quiz__option { flex: 1 1 calc(33% - 8px); min-width: 120px; justify-content: center; text-align: center; }

.quiz__textarea-wrap { margin-top: var(--s-5); }
.quiz__textarea-wrap label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.quiz__textarea-wrap label span { color: var(--c-muted); font-weight: 400; }
.quiz__textarea-wrap textarea,
.quiz__input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--c-ink);
  background: #fff;
  resize: vertical;
  transition: border-color var(--t-fast) var(--ease-out);
}
.quiz__textarea-wrap textarea:focus,
.quiz__input:focus { outline: none; border-color: var(--c-accent-700); }

.quiz__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 560px) {
  .quiz__fields { grid-template-columns: 1fr 1fr; }
}
.quiz__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 8px;
}

.quiz__h4 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-ink);
  margin: var(--s-5) 0 var(--s-3);
}

.quiz__nav {
  display: flex;
  gap: 10px;
  margin-top: var(--s-5);
}
.quiz__back {
  padding: 12px 20px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-ink-soft);
  background: #fff;
  transition: all var(--t-fast) var(--ease-out);
}
.quiz__back:hover { border-color: var(--c-ink); }
.quiz__next { flex: 1; }

.quiz__success {
  text-align: center;
  padding: var(--s-5) 0;
}
.quiz__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-accent-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-4);
}
.quiz__success-icon svg { width: 32px; height: 32px; color: var(--c-accent-700); }
.quiz__success h3 { color: var(--c-ink); margin-bottom: var(--s-3); }
.quiz__success p { color: var(--c-ink-soft); font-size: 14.5px; max-width: 340px; margin: 0 auto; }

/* ============================================================
   OUTCOMES (Wenn das System läuft)
   ============================================================ */
.outcomes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) { .outcomes { grid-template-columns: 1fr 1fr; } }

.outcome {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: var(--s-4);
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(150deg, #102746 0%, #0b1a31 55%, #070f1f 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  transition: all var(--t-base) var(--ease-out);
}
.outcome::before {
  content: '';
  position: absolute;
  inset: -40% -40% auto auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(127, 167, 255, 0.16), transparent 62%);
  filter: blur(45px);
  pointer-events: none;
}
.outcome__icon { position: relative; z-index: 1; align-self: flex-start; }
.outcome__body { position: relative; z-index: 1; display: flex; flex-direction: column; }
.outcome:hover {
  border-color: rgba(127, 167, 255, 0.45);
  box-shadow: 0 18px 40px -20px rgba(6, 15, 31, 0.7);
  transform: translateY(-3px);
}
.outcome__body h3 { color: #fff; }
.outcome__body p { color: rgba(255,255,255,0.90); }

/* CTA-Button direkt unter den Ergebnis-Punkten */
.ansatz__cta { text-align: center; margin-top: clamp(36px, 5vh, 60px); }

/* ── Vorteile als editoriale Zeilen (statt Boxen) ── */
.advantages {
  max-width: 1000px;
  margin: 0 auto;
}
.adv-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3) clamp(32px, 5vw, 72px);
  padding: clamp(28px, 4vh, 44px) 0;
  border-top: 1px solid var(--c-line);
}
.adv-row:first-child { border-top: 0; padding-top: var(--s-2); }
@media (min-width: 760px) {
  .adv-row { grid-template-columns: 0.92fr 1.08fr; align-items: start; }
}
.adv-row__lead { display: flex; align-items: center; gap: 13px; }
.adv-row__lead h3 { min-width: 0; }
.adv-row__num {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.adv-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c-accent-50);
  color: var(--c-accent-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.adv-row__icon svg { width: 21px; height: 21px; }
.adv-row__lead h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--c-ink);
}
.adv-row__points > p {
  color: var(--c-ink);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.adv-bullets {
  list-style: none;
  display: grid;
  gap: 11px;
}
.adv-bullets li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--c-ink-soft);
}
.adv-bullets svg {
  width: 19px;
  height: 19px;
  color: var(--c-accent-600);
  flex: none;
  margin-top: 1px;
}
.outcome__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(127, 167, 255, 0.12);
  color: var(--c-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease-out);
}
.outcome:hover .outcome__icon {
  background: rgba(127, 167, 255, 0.22);
  color: var(--c-cyan);
}
.outcome__icon svg { width: 21px; height: 21px; }
.outcome__body h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.outcome__body p {
  font-size: 14px;
  color: rgba(255,255,255,0.90);
  line-height: 1.55;
}
.outcome__more {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--c-cyan);
  transition: gap var(--t-base) var(--ease-out);
}
.outcome__more svg { width: 15px; height: 15px; }
.outcome:hover .outcome__more { gap: 12px; }

.outcomes__note {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  justify-content: center;
  text-align: left;
  margin-top: var(--s-6);
  padding: var(--s-4) var(--s-5);
  background: var(--c-accent-50);
  border: 1px dashed var(--c-accent-300);
  border-radius: var(--r-lg);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.outcomes__note svg {
  width: 22px; height: 22px;
  color: var(--c-accent-700);
  flex-shrink: 0;
}
.outcomes__note p {
  font-size: 14px;
  color: var(--c-accent-700);
  font-weight: 500;
  margin: 0;
}

/* ============================================================
   PHASES (Unser Vorgehen)
   ============================================================ */

/* ── Prozess-Stepper (3 Schritte, ohne Boxen, mit Verbindungslinie) ── */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .process { grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
}
.process__step {
  position: relative;
  text-align: center;
  padding: 0 var(--s-2);
}
/* gestaffeltes Einblenden */
.process__step.reveal:nth-child(2) { transition-delay: 110ms; }
.process__step.reveal:nth-child(3) { transition-delay: 220ms; }

.process__node {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad-cta);
  box-shadow: 0 14px 28px -12px rgba(29, 78, 216, 0.55);
}
/* Verbindungslinie zwischen den Knoten (nur Desktop, nebeneinander) */
@media (min-width: 760px) {
  .process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--c-accent-400) 0%, rgba(96, 165, 250, 0.18) 100%);
    z-index: 0;
  }
}
.process__step h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin-bottom: 9px;
}
.process__step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-ink-soft);
  max-width: 32ch;
  margin: 0 auto;
}

.phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 880px) { .phases { grid-template-columns: repeat(3, 1fr); } }
/* Sanft gestaffeltes Einblenden der Phasen */
.phases .phase.reveal:nth-child(2) { transition-delay: 90ms; }
.phases .phase.reveal:nth-child(3) { transition-delay: 180ms; }

.phase {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  transition: all var(--t-base) var(--ease-out);
}
.phase:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.phase--accent {
  background: var(--grad-navy-deep);
  border: 0;
  overflow: hidden;
}
.phase--accent::before {
  content: '';
  position: absolute;
  inset: -50% -40% auto auto;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(127,167,255,0.30), transparent 65%);
  filter: blur(45px);
  pointer-events: none;
}

.phase__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-4);
  position: relative;
  z-index: 1;
}
.phase__num {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.phase--accent .phase__num {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-accent-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.phase__tag {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent-700);
  background: var(--c-accent-50);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.phase--accent .phase__tag {
  color: var(--c-cyan);
  background: rgba(127,167,255,0.14);
}

.phase h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  margin-bottom: var(--s-2);
  position: relative;
  z-index: 1;
}
.phase--accent h3 { color: #fff; }
.phase > p {
  font-size: 14.5px;
  color: var(--c-ink-soft);
  line-height: 1.6;
  margin-bottom: var(--s-4);
  position: relative;
  z-index: 1;
}
.phase--accent > p { color: rgba(255,255,255,0.78); }

.phase__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
  position: relative;
  z-index: 1;
}
.phase--accent .phase__list { border-top-color: rgba(255,255,255,0.12); }
.phase__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-ink);
}
.phase--accent .phase__list li { color: rgba(255,255,255,0.88); }
.phase__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent-700);
  flex-shrink: 0;
}
.phase--accent .phase__list li::before { background: var(--c-cyan); }

/* ============================================================
   TEAM
   ============================================================ */
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.team-card__photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-navy-900);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.team-card:hover .team-card__photo {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slower) var(--ease-out);
}
.team-card:hover .team-card__photo img { transform: scale(1.03); }

.team-card__focus {
  font-size: 14.5px;
  color: var(--c-ink-soft);
  line-height: 1.55;
  padding: 0 var(--s-3);
}

/* ============================================================
   TRUST / WAS UNS UNTERSCHEIDET
   ============================================================ */
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) { .trust__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  transition: all var(--t-base) var(--ease-out);
}
.trust-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(127, 167, 255, 0.35);
  transform: translateY(-3px);
}
.trust-item__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(127, 167, 255, 0.14);
  color: var(--c-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-3);
}
.trust-item__icon svg { width: 18px; height: 18px; }
.trust-item h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
  margin-bottom: var(--s-2);
  letter-spacing: -0.005em;
}
.trust-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (min-width: 980px) {
  .contact__inner { grid-template-columns: 0.9fr 1.1fr; gap: var(--s-8); }
}
.contact__info h2 { margin-bottom: var(--s-4); }
.contact__info p { font-size: 1.05rem; color: var(--c-ink-soft); margin-bottom: var(--s-5); max-width: 44ch; }

.contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.contact__list a {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  font-weight: 600;
  color: var(--c-ink);
  transition: all var(--t-base) var(--ease-out);
}
.contact__list a:hover {
  border-color: var(--c-accent-500);
  background: var(--c-accent-50);
  transform: translateY(-2px);
}
.contact__list-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--c-accent-50);
  color: var(--c-accent-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__list-icon svg { width: 18px; height: 18px; }
.contact__list-text { display: flex; flex-direction: column; }
.contact__list-small { font-size: 12px; color: var(--c-muted); font-weight: 500; }

.contact__form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-2xl);
  padding: var(--s-7);
  box-shadow: var(--shadow-md);
}
.contact__form h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  margin-bottom: var(--s-5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--c-ink);
  background: #fff;
  transition: border-color var(--t-fast) var(--ease-out);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-accent-700);
}
.contact__form .btn { width: 100%; margin-top: var(--s-3); }

.contact__consent {
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 1.5;
  margin-top: var(--s-3);
}
.contact__consent a { color: var(--c-accent-700); text-decoration: underline; }
.contact__consent--check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.contact__consent--check input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--c-accent-700);
  cursor: pointer;
}
.contact__consent.is-error { color: #B91C1C; }
.contact__consent.is-error a { color: #B91C1C; }
.contact__consent.is-error input[type="checkbox"] { outline: 2px solid #EF4444; outline-offset: 2px; }

.contact__success {
  display: none;
  text-align: center;
  padding: var(--s-5) 0;
}
.contact__success.is-shown { display: block; }
.contact__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-accent-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-4);
}
.contact__success-icon svg { width: 32px; height: 32px; color: var(--c-accent-700); }
.contact__success h3 { margin-bottom: var(--s-3); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--c-navy-950);
  color: rgba(255,255,255,0.65);
  padding: var(--s-8) 0 var(--s-5);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 84%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(127,167,255,0.45), transparent);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) {
  .site-footer__top { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
.site-footer__brand img,
.site-footer__brand svg {
  height: 30px;
  width: auto;
  margin-bottom: var(--s-4);
}
.site-footer__brand p {
  font-size: 14px;
  max-width: 36ch;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--s-4);
}
.site-footer__brand-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__brand-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: color var(--t-fast) var(--ease-out);
}
.site-footer__brand-contact a:hover { color: #fff; }
.site-footer__brand-contact svg { width: 14px; height: 14px; color: var(--c-cyan); }

.site-footer__col h4 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--s-4);
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast) var(--ease-out);
}
.site-footer__col a:hover { color: #fff; }

/* EPM-Signatur: großzügiger Marken-Schriftzug als Abschluss */
.site-footer__signature {
  text-align: center;
  margin: var(--s-2) 0 var(--s-4);
  line-height: 0.82;
  pointer-events: none;
}
.site-footer__wordmark {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.9rem, 12vw, 8.5rem);
  letter-spacing: -0.022em;
  white-space: nowrap;
  background: linear-gradient(180deg,
              rgba(255,255,255,0.22) 0%,
              rgba(127,167,255,0.14) 54%,
              rgba(127,167,255,0) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  user-select: none;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.mobile-bar {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 80;
  background: rgba(10, 23, 41, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  box-shadow: 0 18px 40px -10px rgba(6, 15, 31, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.mobile-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 720px) {
  .mobile-bar { display: none; }
}
.mobile-bar__text {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.mobile-bar__sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.mobile-bar .btn {
  padding: 10px 16px;
  font-size: 13px;
}

/* Floating Call-Button */
.floating-call {
  position: fixed;
  bottom: 108px;
  right: 18px;
  z-index: 75;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-cta);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85) translateY(8px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), background var(--t-base) var(--ease-out);
}
.floating-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.floating-call:hover {
  transform: scale(1.08);
  box-shadow: 0 24px 52px -10px rgba(29, 78, 216, 0.7);
}
.floating-call svg { width: 22px; height: 22px; }
@media (min-width: 720px) {
  .floating-call { bottom: 24px; right: 24px; width: 56px; height: 56px; }
}

/* ---------- Reduced-Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bg-blob { animation: none; }
  .hero__card { opacity: 1; transform: none; animation: none; }
  .hero__stats-pill { opacity: 1; animation: none; }
}
