/* ============================================================
   SKIP-LINK (WCAG 2.4.1) — versteckt bis Fokus
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.85rem 1.4rem;
  background: #3056D3;
  color: white !important;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
  font-size: 0.9375rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #ffce00;
  outline-offset: 2px;
}

/* ============================================================
   CHAMELIS · WEBSEITE 2.0
   Design-System: Editorial Premium
   Display: Fraunces (Serif) · Body: Roboto (Sans)
   Color: Pure Black · Stein-Cream · Royal Blue
   ============================================================ */

:root {
  /* Dunkle Welt */
  --bg: #000000;
  --bg-elev: #0a0a0a;
  --bg-card: #111111;
  --line: #1c1c1c;
  --line-bright: #2c2c2c;
  --text: #ffffff;
  --text-muted: #a8a8a8;
  --text-dim: #6f6f6f;

  /* Helle Welt – Stein/Cream */
  --bg-light: #f3f0e9;
  --bg-light-elev: #e8e4db;
  --bg-light-card: #ffffff;
  --line-light: #d6d2c7;
  --line-light-bright: #b8b3a5;
  --text-light: #0a0a0a;
  --text-light-muted: #4a4a4a;
  --text-light-dim: #7a7a7a;

  /* Akzent */
  --blue: #3056D3;
  --blue-hover: #4467e0;
  --blue-glow: rgba(48, 86, 211, 0.18);

  /* Stein-Töne (subtile Akzente) */
  --stone-warm: #c8a878;
  --stone-anthracite: #2b2b2b;

  /* Layout */
  --max: 1240px;
  --max-narrow: 920px;

  /* Typografie */
  --serif: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--blue); color: white; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 1.75rem; }

/* ============================================
   SEKTIONS-FARBWELTEN
   ============================================ */
.dark { background: var(--bg); color: var(--text); }
.light { background: var(--bg-light); color: var(--text-light); }
.stone {
  background:
    linear-gradient(180deg, #1a1816 0%, #0d0c0b 100%);
  color: var(--text);
}

.dark .eyebrow,
.stone .eyebrow { color: var(--blue); }
.light .eyebrow { color: var(--blue); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--blue);
  width: 0%;
  z-index: 200;
  transition: width 0.05s linear;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.85rem 1.75rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(0, 0, 0, 0.85);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: white;
}
.logo-img { width: 50px; height: 50px; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav-links > a { transition: color 0.2s; }
.nav-links > a:hover { color: var(--text); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.lang-switch a {
  padding: 0.4rem 0.7rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.lang-switch a.active {
  background: var(--blue);
  color: white;
}
.lang-switch a:hover:not(.active) {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  background: var(--blue);
  color: white !important;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--blue-glow);
}

/* ============================================
   TYPOGRAFIE – DISPLAY (Fraunces)
   ============================================ */
.display {
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
}
.display-italic {
  font-style: italic;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.005em;
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: var(--sans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: white;
  border: 1px solid var(--blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 8px 32px var(--blue-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-bright);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.light .btn-ghost {
  color: var(--text-light);
  border-color: var(--line-light-bright);
}
.light .btn-ghost:hover {
  border-color: var(--text-light);
  background: rgba(0, 0, 0, 0.03);
}
.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(48, 86, 211, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(200, 168, 120, 0.04) 0%, transparent 60%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='250' height='250'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.34 0 0 0 0 0.83 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  max-width: 56rem;
}

.hero-content { width: 100%; }

.hero-headline {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 2.25rem;
}
.hero-headline .italic {
  font-style: italic;
  font-weight: 800;
  color: var(--blue);
}
.hero-headline .nowrap { white-space: nowrap; }

.hero-sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.225rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 2.75rem;
  font-weight: 300;
  line-height: 1.65;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* HERO Visual – Vorher/Nachher Split */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--line-bright);
  overflow: hidden;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.hero-half { position: relative; overflow: hidden; }
.hero-half.before {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='600'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.013' numOctaves='5' seed='9'/><feColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.66 0 0 0 0 0.46 0 0 0 0.85 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>"),
    linear-gradient(180deg, #c8a878 0%, #a08960 100%);
  background-size: cover;
}
.hero-half.after {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='600'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.013' numOctaves='5' seed='9'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.16 0 0 0 0 0.18 0 0 0 0.92 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>"),
    linear-gradient(180deg, #1f1f23 0%, #0c0c0e 100%);
  background-size: cover;
}
.hero-half .label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 0.85rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
}
.hero-half.after .label { background: rgba(48,86,211,0.7); }

.hero-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.3);
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-divider::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  background: var(--bg);
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-divider::after {
  content: "→";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--blue);
  font-size: 1.2rem;
  font-family: var(--serif);
  font-weight: 300;
}

/* ============================================
   TRUST BAR – unter Hero
   ============================================ */
.trust-bar {
  padding: 2.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.825rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.trust-item svg {
  width: 24px; height: 24px;
  color: var(--blue);
  flex-shrink: 0;
}

/* ============================================
   GENERIC SECTION HEADER
   ============================================ */
.section-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin-bottom: 1.5rem;
}
.section-title .italic {
  font-style: italic;
  color: var(--blue);
  font-weight: 800;
}

.section-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 36rem;
}
.dark .section-lead, .stone .section-lead { color: var(--text-muted); }
.light .section-lead { color: var(--text-light-muted); }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.section-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ============================================
   IDEE – Centerpiece Statement
   ============================================ */
.idea {
  padding: 10rem 0 9rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  position: relative;
}
.idea-wrap {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}
.idea-marker {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 2.75rem;
}
.idea h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-light);
}
.idea h2 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 800;
}
.idea-meta {
  margin-top: 2.5rem;
  font-size: 1rem;
  color: var(--text-light-muted);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.idea-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  margin: 4rem auto 0;
}

/* Vorher/Nachher unter der Idee */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 5rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.vs-card {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--line-light-bright);
  background: var(--bg-light-card);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.vs-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.vs-card.before::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='300'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='4' seed='2'/><feColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.65 0 0 0 0 0.45 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
  background-size: cover;
}
.vs-card.after::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='300'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='4' seed='2'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.16 0 0 0 0 0.18 0 0 0 0.85 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
  background-size: cover;
}
.vs-card .vs-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-light);
}
.vs-card.after .vs-label { color: var(--blue); background: rgba(255,255,255,0.95); }
.vs-card .vs-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
@media (max-width: 720px) { .vs-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; } }

/* ============================================
   TECHNOLOGIE – Visualisierte Infiltration
   ============================================ */
.tech { padding: 8rem 0; }
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.tech-viz {
  position: relative;
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-elev);
  overflow: hidden;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-viz svg { width: 100%; height: 100%; max-width: 380px; }

.tech-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
.tech-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.tech-feature:first-child { padding-top: 0; border-top: none; }
.tech-feature-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1.2;
  min-width: 2.5rem;
}
.tech-feature-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}
.tech-feature-text span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   PROZESS – 3 Schritte
   ============================================ */
.process { padding: 8rem 0; }
.process-head {
  max-width: 44rem;
  margin: 0 auto 5rem;
  text-align: center;
}
.process-head .section-eyebrow,
.process-head .section-lead { margin-left: auto; margin-right: auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--bg-light-card);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  counter-increment: step;
  display: flex;
  flex-direction: column;
}
.process-step:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}
.process-step-img {
  aspect-ratio: 16/10;
  border-bottom: 1px solid var(--line-light);
  position: relative;
  overflow: hidden;
}
.process-step-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  opacity: 0.65;
}
.process-step:nth-child(1) .process-step-img::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='250'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.018' numOctaves='4' seed='1'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.82 0 0 0 0 0.76 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
}
.process-step:nth-child(2) .process-step-img::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='250'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='4' seed='3'/><feColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.55 0 0 0 0 0.55 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
}
.process-step:nth-child(3) .process-step-img::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='250'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.014' numOctaves='4' seed='7'/><feColorMatrix values='0 0 0 0 0.30 0 0 0 0 0.30 0 0 0 0 0.32 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
}
.process-step-num {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 2.5rem;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.process-step-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.process-step-body { padding: 1.75rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }

/* Echte Bilder: Platzhalter-Pattern abschalten und <picture><img> füllen */
.process-step-img.has-image::before { display: none !important; }
.process-step-img.has-image picture,
.process-step-img.has-image picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-step-img.has-image .process-step-num {
  z-index: 2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}
.vs-card.has-image::before { display: none !important; }
.vs-card.has-image picture,
.vs-card.has-image picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vs-card.has-image .vs-label { z-index: 2; }
.founder-photo.has-image::before { display: none !important; }
.founder-photo.has-image picture,
.founder-photo.has-image picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-step h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
  color: var(--text-light);
}
.process-step p {
  color: var(--text-light-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.5rem;
  flex: 1;
}
.process-step .step-meta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
}

/* ============================================
   NACHHALTIGKEIT – ⭐ Highlight-Sektion
   ============================================ */
.sustain {
  padding: 8rem 0;
  position: relative;
}
.sustain-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
.sustain-cards {
  display: grid;
  gap: 1rem;
}
.sustain-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  padding: 1.75rem 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
  align-items: center;
  transition: border-color 0.3s ease;
}
.sustain-card:hover { border-color: var(--blue); }
.sustain-card-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  min-width: 4rem;
  text-align: center;
}
.sustain-card-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.sustain-card-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.55;
}
.sustain-card-icon {
  width: 36px; height: 36px;
  color: var(--text-dim);
  flex-shrink: 0;
}

/* ============================================
   INNOVATION – ⭐ Highlight-Sektion
   ============================================ */
.innov {
  padding: 8rem 0;
}
.innov-head {
  max-width: 50rem;
  margin: 0 auto 5rem;
  text-align: center;
}
.innov-head .section-eyebrow,
.innov-head .section-lead { margin-left: auto; margin-right: auto; }

.innov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  overflow: hidden;
}
.innov-card {
  background: var(--bg-light);
  padding: 3rem 2.25rem;
  transition: background 0.3s ease;
  position: relative;
}
.innov-card:hover { background: var(--bg-light-card); }
.innov-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  margin-bottom: 2rem;
  color: var(--blue);
}
.innov-card-icon svg { width: 24px; height: 24px; }
.innov-card h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  color: var(--text-light);
  line-height: 1.2;
}
.innov-card p {
  color: var(--text-light-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare { padding: 8rem 0; }
.compare-head {
  max-width: 44rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.compare-head .section-eyebrow,
.compare-head .section-lead { margin-left: auto; margin-right: auto; }

.compare-table {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 1.4rem 1.75rem;
  border-right: 1px solid var(--line);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
}
.compare-row > div:last-child { border-right: none; }

.compare-header > div {
  background: var(--bg-elev);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-dim);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.compare-header div:nth-child(3) { color: var(--blue); }
.compare-row .label {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.compare-row .bad { color: var(--text-muted); font-weight: 300; }
.compare-row .good { color: var(--text); font-weight: 500; gap: 0.6rem; }
.compare-row .good::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-right: 0.6rem;
  flex-shrink: 0;
}

/* ============================================
   USE CASES – Zielgruppen
   ============================================ */
.usecases { padding: 8rem 0; }
.usecases-head { margin-bottom: 4.5rem; max-width: 42rem; }

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.usecase {
  background: var(--bg-light-card);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.usecase:hover { border-color: var(--blue); transform: translateY(-4px); }
.usecase-img {
  aspect-ratio: 4/3;
  border-bottom: 1px solid var(--line-light);
  position: relative;
  overflow: hidden;
}
.usecase-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  opacity: 0.65;
}
.usecase:nth-child(1) .usecase-img::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='300'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.014' numOctaves='4' seed='4'/><feColorMatrix values='0 0 0 0 0.65 0 0 0 0 0.55 0 0 0 0 0.4 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
}
.usecase:nth-child(2) .usecase-img::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='300'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.011' numOctaves='5' seed='8'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.18 0 0 0 0 0.20 0 0 0 0.85 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
}
.usecase:nth-child(3) .usecase-img::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='300'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.016' numOctaves='4' seed='12'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.42 0 0 0 0 0.45 0 0 0 0.75 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
}
.usecase-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.usecase-body { padding: 1.75rem 2rem 2.25rem; flex: 1; display: flex; flex-direction: column; }
.usecase-num {
  font-size: 0.7rem;
  color: var(--blue);
  letter-spacing: 0.22em;
  font-weight: 500;
  margin-bottom: 1rem;
}
.usecase h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.45rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  color: var(--text-light);
  line-height: 1.2;
}
.usecase p {
  color: var(--text-light-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 300;
}

/* Text-only Variante (ohne Bild) */
.usecase-text {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  border-top: 3px solid var(--blue);
  overflow: visible;  /* Badge darf über Karten-Oberkante hinausragen */
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.usecase-text .usecase-body {
  padding: 0;
}
.usecase-num-badge {
  position: absolute;
  top: -1.05rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--blue);
  color: #ffffff;
  font-family: var(--mono, var(--serif));
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover: kompletter Karten-Inhalt wird weiß, damit lesbar auf blauem Hintergrund */
.usecase-text:hover {
  background: var(--blue);
  border-top-color: var(--blue);
  transform: translateY(-4px);
}
.usecase-text:hover h4,
.usecase-text:hover p,
.usecase-text:hover .usecase-num {
  color: #ffffff;
}
.usecase-text:hover .usecase-num-badge {
  background: #ffffff;
  color: var(--blue);
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 8rem 0; }
.faq-head { max-width: 42rem; margin-bottom: 4rem; }

.faq-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item { background: var(--bg-elev); transition: background 0.2s; }
.faq-item summary {
  padding: 1.6rem 2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 1.0625rem;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--text);
  user-select: none;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.7rem;
  font-weight: 200;
  color: var(--blue);
  transition: transform 0.3s ease;
  line-height: 1;
  font-family: var(--serif);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover { background: var(--bg-card); }
.faq-item .faq-body {
  padding: 0 2rem 1.85rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 60ch;
}

/* ============================================
   PRE-FOOTER CTA
   ============================================ */
.precta {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.precta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(48, 86, 211, 0.10) 0%, transparent 70%);
  z-index: 0;
}
.precta-content { position: relative; z-index: 1; }
.precta h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.precta h2 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 800;
}
.precta p {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 38rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.precta-actions {
  display: inline-flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   KONTAKT
   ============================================ */
.contact { padding: 8rem 0; }
.contact .section-lead { color: var(--text-light-muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  margin-top: 3.5rem;
}

.contact-info p {
  color: var(--text-light-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 26rem;
}
.info-item {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.info-item:last-child { border-bottom: none; }
.info-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  font-weight: 500;
}
.info-value { font-size: 0.9375rem; color: var(--text-light); font-weight: 400; }
.info-value a { transition: color 0.2s; }
.info-value a:hover { color: var(--blue); }

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

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  margin-bottom: 0.55rem;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--bg-light-card);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a7a7a' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-light-dim); }
.field textarea { min-height: 130px; resize: vertical; }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.checkbox-field input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0;
}
.checkbox-field label {
  font-size: 0.8125rem;
  color: var(--text-light-muted);
  font-weight: 300;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.checkbox-field a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

.form-submit {
  padding: 1.05rem 2.1rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: all 0.25s;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
}
.form-submit:hover {
  background: var(--blue-hover);
  box-shadow: 0 8px 32px var(--blue-glow);
  transform: translateY(-2px);
}
.form-submit svg { transition: transform 0.2s; }
.form-submit:hover svg { transform: translateX(3px); }

.form-success {
  display: none;
  padding: 1.15rem 1.5rem;
  background: rgba(48, 86, 211, 0.08);
  border: 1px solid var(--blue);
  border-radius: 4px;
  color: var(--text-light);
  font-size: 0.9375rem;
}
.form-success.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #000;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
}
footer .logo { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  max-width: 18rem;
}
.footer-tagline strong { color: var(--text); font-weight: 500; }

.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
}
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-address {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}
.footer-address strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-dim);
}
.footer-legal-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.footer-legal-links a { transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--text); }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0,0,0,0.25);
}
.wa-float svg { width: 30px; height: 30px; color: white; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   STICKY MOBILE CTA-BAR
   ============================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--line-bright);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta-inner {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-cta-primary {
  flex: 1;
  padding: 0.85rem 1rem;
  background: var(--blue);
  color: white;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: 0.01em;
  font-family: var(--sans);
}
.mobile-cta-wa {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-cta-wa svg { width: 22px; height: 22px; color: white; }

/* Auf Mobile: zeigen, WA-Float nach oben verschieben */
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  .wa-float {
    right: 1rem;
    bottom: 5rem;
    width: 48px;
    height: 48px;
  }
  .wa-float svg { width: 26px; height: 26px; }
  /* Bottom-Padding für Body damit Footer nicht versteckt ist */
  footer { padding-bottom: 5rem; }
}

/* ============================================
   LEAD-MAGNET SEKTION
   ============================================ */
.leadmagnet {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.leadmagnet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 70% 50%, rgba(48, 86, 211, 0.08) 0%, transparent 65%);
  z-index: 0;
}
.leadmagnet-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.leadmagnet-visual {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  perspective: 1200px;
}
.leadmagnet-doc {
  position: relative;
  background: linear-gradient(135deg, var(--bg-light-card) 0%, var(--bg-light) 100%);
  border: 1px solid var(--line-bright);
  border-radius: 4px;
  padding: 2rem 1.85rem;
  transform: rotate(-3deg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}
.leadmagnet-visual:hover .leadmagnet-doc { transform: rotate(-1deg) translateY(-4px); }
.leadmagnet-doc-tag {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.leadmagnet-doc h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--text-light);
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.leadmagnet-doc h3 em {
  font-style: italic;
  color: var(--blue);
}
.leadmagnet-doc p {
  font-size: 0.825rem;
  color: var(--text-light-muted);
  line-height: 1.55;
  font-weight: 300;
}
.leadmagnet-doc-meta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--text-light-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.leadmagnet-content { padding: 1rem 0; }
.leadmagnet-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  max-width: 30rem;
}
.leadmagnet-form input {
  flex: 1;
  padding: 0.95rem 1.1rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9375rem;
  transition: border-color 0.2s, background 0.2s;
}
.leadmagnet-form input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--bg-card);
}
.leadmagnet-form input::placeholder { color: var(--text-dim); }
.leadmagnet-form button {
  padding: 0.95rem 1.6rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--sans);
  white-space: nowrap;
}
.leadmagnet-form button:hover {
  background: var(--blue-hover);
  box-shadow: 0 8px 24px var(--blue-glow);
  transform: translateY(-1px);
}
.leadmagnet-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 300;
}
.leadmagnet-success {
  display: none;
  margin-top: 1.25rem;
  padding: 0.95rem 1.25rem;
  background: rgba(48, 86, 211, 0.1);
  border: 1px solid var(--blue);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.9rem;
}
.leadmagnet-success.show { display: block; }

@media (max-width: 860px) {
  .leadmagnet-grid { grid-template-columns: 1fr; gap: 3rem; }
  .leadmagnet-visual { max-width: 280px; }
}
@media (max-width: 768px) {
  .leadmagnet { padding: 5rem 0; }
  .leadmagnet-form { flex-direction: column; gap: 0.75rem; }
  .leadmagnet-form input { width: 100%; }
  .leadmagnet-form button { width: 100%; }
}

/* ============================================
   SCROLL-REVEAL (klassisch, weiterhin verfügbar)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* ============================================================
   3.0 — BEWEGUNGS-MODULE
   ============================================================ */

/* 1. KINETISCHE HERO-HEADLINE — Zeilenstaffel beim Page-Load */
.kinetic-line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: kinetic-rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.kinetic-line.l-1 { animation-delay: 0.10s; }
.kinetic-line.l-2 { animation-delay: 0.30s; }
.kinetic-line.l-3 { animation-delay: 0.50s; }
@keyframes kinetic-rise {
  to { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow {
  opacity: 0;
  animation: kinetic-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}
.hero .eyebrow::before {
  width: 0;
  animation: line-grow 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
@keyframes line-grow { to { width: 32px; } }
.hero-sub {
  opacity: 0;
  animation: kinetic-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}
.hero-actions {
  opacity: 0;
  animation: kinetic-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
}

/* 2. ANIMATED COUNTERS */
.counter { font-variant-numeric: tabular-nums; display: inline-block; }
.counter-stat {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.counter-stat.visible { opacity: 1; transform: translateY(0) scale(1); }
.counter-stat.d-1 { transition-delay: 0.10s; }
.counter-stat.d-2 { transition-delay: 0.20s; }
.counter-stat.d-3 { transition-delay: 0.30s; }
.counter-stat.d-4 { transition-delay: 0.40s; }

/* 3. SVG-PATH-ANIMATION (Tech-Visualisierung)
   Pigmente sinken langsam und deutlich nach unten.
   Pfade werden langsam gezeichnet (5,5s pro Pfad), staffel-versetzt.
   Punkte fallen mit translateY-Animation tief in den Stein.
*/
.tech-viz svg path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.tech-viz.animate svg path {
  animation: draw-path 5.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.tech-viz.animate svg path:nth-of-type(1) { animation-delay: 0.20s; }
.tech-viz.animate svg path:nth-of-type(2) { animation-delay: 0.50s; }
.tech-viz.animate svg path:nth-of-type(3) { animation-delay: 0.80s; }
.tech-viz.animate svg path:nth-of-type(4) { animation-delay: 1.10s; }
.tech-viz.animate svg path:nth-of-type(5) { animation-delay: 1.40s; }
@keyframes draw-path { to { stroke-dashoffset: 0; } }

/* Pigment-Tropfen oben (5 Stück): erscheinen sanft */
.tech-viz svg circle { opacity: 0; }
.tech-viz.animate svg circle:nth-of-type(-n+5) {
  animation: pigment-drop-in 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.tech-viz.animate svg circle:nth-of-type(1) { animation-delay: 0.10s; }
.tech-viz.animate svg circle:nth-of-type(2) { animation-delay: 0.35s; }
.tech-viz.animate svg circle:nth-of-type(3) { animation-delay: 0.60s; }
.tech-viz.animate svg circle:nth-of-type(4) { animation-delay: 0.85s; }
.tech-viz.animate svg circle:nth-of-type(5) { animation-delay: 1.10s; }

/* Pigment-Punkte verteilt im Stein (ab nth=6):
   Sinken langsam aus der Höhe in ihre Position. */
.tech-viz svg circle:nth-of-type(n+6) {
  transform: translateY(-30px);
  transform-box: fill-box;
  transform-origin: center;
}
.tech-viz.animate svg circle:nth-of-type(n+6) {
  animation: pigment-sink 2.6s cubic-bezier(0.34, 0.05, 0.6, 1) forwards;
}
.tech-viz.animate svg circle:nth-of-type(6) { animation-delay: 2.2s; }
.tech-viz.animate svg circle:nth-of-type(7) { animation-delay: 2.6s; }
.tech-viz.animate svg circle:nth-of-type(8) { animation-delay: 3.0s; }
.tech-viz.animate svg circle:nth-of-type(9) { animation-delay: 3.4s; }
.tech-viz.animate svg circle:nth-of-type(10) { animation-delay: 3.8s; }
.tech-viz.animate svg circle:nth-of-type(11) { animation-delay: 4.2s; }
.tech-viz.animate svg circle:nth-of-type(12) { animation-delay: 4.6s; }
.tech-viz.animate svg circle:nth-of-type(13) { animation-delay: 5.0s; }
.tech-viz.animate svg circle:nth-of-type(14) { animation-delay: 5.4s; }
.tech-viz.animate svg circle:nth-of-type(15) { animation-delay: 5.8s; }

@keyframes pigment-drop-in {
  0%   { opacity: 0; transform: translateY(-12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes pigment-sink {
  0%   { opacity: 0; transform: translateY(-40px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); }
}

/* 4. VORHER/NACHHER MIT HOVER-REVEAL */
.vs-card.before::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='300'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='4' seed='2'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.16 0 0 0 0 0.18 0 0 0 0.85 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
  background-size: cover;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}
.vs-card.before:hover::after { clip-path: inset(0 0 0 0); }
.vs-card.before:hover .vs-label {
  opacity: 0;
  transition: opacity 0.4s;
}
.vs-card.before .vs-tag,
.vs-card.before .vs-label {
  z-index: 2;
}
.vs-card.after {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.5s;
}
.vs-card.after:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 16px 48px var(--blue-glow);
}

/* 5. MARQUEE-TRUST-BAR */
.trust-bar { overflow: hidden; }
.trust-marquee-wrap {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: nowrap;
  width: 100%;
}
.trust-marquee-wrap > .trust-label {
  flex-shrink: 0;
}
.trust-marquee-track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.trust-marquee {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.trust-marquee .trust-item { flex-shrink: 0; }
/* Pausieren bei Hover oder Fokus (Tastatur-Nutzer) — WCAG 2.2.2 */
.trust-bar:hover .trust-marquee,
.trust-bar:focus-within .trust-marquee,
.trust-marquee:hover {
  animation-play-state: paused;
}
/* Bei prefers-reduced-motion komplett anhalten */
@media (prefers-reduced-motion: reduce) {
  .trust-marquee { animation: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 6. SUBTILER PARALLAX-HINTERGRUND */
.hero-atmosphere,
.hero-grain {
  will-change: transform;
}

/* 7. SMOOTH SECTION-TRANSITIONS — Reichere Reveal-Logik */
.reveal-rich .section-eyebrow {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-rich .section-title,
.reveal-rich h2,
.reveal-rich h3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out 0.15s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.reveal-rich .section-lead,
.reveal-rich p:not(.section-eyebrow):not(.idea-meta):not(.footer-tagline):not(.contact-info p) {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease-out 0.30s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.30s;
}
.reveal-rich.visible .section-eyebrow,
.reveal-rich.visible .section-title,
.reveal-rich.visible h2,
.reveal-rich.visible h3,
.reveal-rich.visible .section-lead,
.reveal-rich.visible p {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-card.visible { opacity: 1; transform: translateY(0); }
.reveal-card.d-1 { transition-delay: 0.10s; }
.reveal-card.d-2 { transition-delay: 0.20s; }
.reveal-card.d-3 { transition-delay: 0.30s; }
.reveal-card.d-4 { transition-delay: 0.40s; }

/* Reduced-Motion-Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .trust-marquee {
    animation: none !important;
    transform: none !important;
  }
  .kinetic-line, .hero-sub, .hero-actions, .hero .eyebrow {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   RESPONSIVE – TABLET
   ============================================ */
@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sustain-grid { grid-template-columns: 1fr; gap: 3rem; }
  .innov-grid { grid-template-columns: 1fr 1fr; }
  .innov-card:nth-child(3) { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================
   RESPONSIVE – MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 1.25rem; }

  .nav { padding: 0.7rem 1.25rem; }
  .logo { font-size: 0.875rem; gap: 0.5rem; }
  .logo-img { width: 36px; height: 36px; }
  .nav-links { gap: 1rem; }
  .nav-links > a:not(.nav-cta):not(.lang-switch a) { display: none; }
  .lang-switch { font-size: 0.65rem; }
  .lang-switch a { padding: 0.3rem 0.55rem; }
  .nav-cta { padding: 0.5rem 0.95rem; font-size: 0.75rem; }

  .hero { padding: 6rem 0 3.5rem; min-height: auto; }
  .hero-headline { margin-bottom: 1.75rem; }
  .hero-sub { margin-bottom: 2rem; font-size: 1rem; }
  .hero-actions { gap: 0.6rem; }
  .btn { padding: 0.85rem 1.35rem; font-size: 0.875rem; }
  .hero-visual { aspect-ratio: 16 / 11; }
  .hero-half .label { font-size: 0.6rem; padding: 0.3rem 0.7rem; bottom: 0.85rem; left: 0.85rem; }
  .hero-divider::before { width: 30px; height: 30px; }

  .trust-bar { padding: 1.75rem 0; }
  .trust-inner { gap: 1.5rem; flex-direction: column; align-items: flex-start; }
  .trust-items { gap: 1.5rem; }
  .trust-item { font-size: 0.78rem; }

  .idea { padding: 5rem 0 4.5rem; }
  .idea h2 { font-size: 2rem; line-height: 1.18; }
  .idea-meta { font-size: 0.9rem; margin-top: 1.75rem; }
  .idea-divider { margin-top: 2.5rem; height: 36px; }

  .tech { padding: 5rem 0; }
  .tech-feature { gap: 1rem; padding: 1.25rem 0; }
  .tech-feature-num { font-size: 1.25rem; min-width: 2rem; }

  .process { padding: 5rem 0; }
  .process-head { margin-bottom: 3rem; }
  .process-steps { grid-template-columns: 1fr; gap: 1rem; }
  .process-step-num { font-size: 2rem; }
  .process-step-body { padding: 1.5rem 1.5rem 1.75rem; }
  .process-step h3 { font-size: 1.4rem; }

  .sustain { padding: 5rem 0; }
  .sustain-card { grid-template-columns: auto 1fr; padding: 1.5rem 1.5rem; gap: 1.25rem; }
  .sustain-card-icon { display: none; }
  .sustain-card-num { font-size: 2.25rem; min-width: 3rem; }

  .innov { padding: 5rem 0; }
  .innov-head { margin-bottom: 3rem; }
  .innov-grid { grid-template-columns: 1fr; }
  .innov-card { padding: 2.25rem 1.75rem; }
  .innov-card h4 { font-size: 1.35rem; }

  .compare { padding: 5rem 0; }
  .compare-head { margin-bottom: 2.5rem; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > div {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 1.25rem;
  }
  .compare-row > div:last-child { border-bottom: none; }
  .compare-row .label {
    background: var(--bg-elev);
    padding: 0.65rem 1.25rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }
  .compare-header { display: none; }

  .usecases { padding: 5rem 0; }
  .usecases-head { margin-bottom: 2.5rem; }
  .usecase-grid { grid-template-columns: 1fr; gap: 1rem; }
  .usecase-body { padding: 1.5rem 1.5rem 1.75rem; }

  .faq { padding: 5rem 0; }
  .faq-head { margin-bottom: 2.5rem; }
  .faq-item summary { padding: 1.35rem 1.5rem; font-size: 1rem; gap: 1rem; }
  .faq-item .faq-body { padding: 0 1.5rem 1.5rem; font-size: 0.9rem; }

  .precta { padding: 5rem 0; }
  .precta p { font-size: 1rem; margin-bottom: 2rem; }

  .contact { padding: 5rem 0; }
  .contact-grid { gap: 2.5rem; margin-top: 2.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .info-item { padding: 1rem 0; flex-wrap: wrap; }

  footer { padding: 4rem 0 1.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; margin-bottom: 2.5rem; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 1rem; padding-top: 1.75rem; }
  .footer-legal-links { gap: 1.25rem; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .container, .container-narrow { padding: 0 1rem; }
  .hero-headline { font-size: 2.25rem; }
  .section-title { font-size: 1.75rem; }
  .idea h2 { font-size: 1.75rem; }
  .precta h2 { font-size: 2rem; }
  .btn { padding: 0.85rem 1.2rem; font-size: 0.8125rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   3.1 — DSGVO COOKIE-CONSENT-BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  left: auto;
  z-index: 200;
  background: var(--bg-card);
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.25rem;
  max-width: 380px;
  width: calc(100% - 2.5rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  font-family: var(--sans);
  color: var(--text);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease-out, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    max-width: none;
  }
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.cookie-banner-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.cookie-banner-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-options {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}
.cookie-option-label strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.cookie-option-label span {
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 300;
}
.cookie-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  background: var(--line-bright);
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s;
}
.cookie-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cookie-toggle.checked {
  background: var(--blue);
}
.cookie-toggle.checked::after {
  transform: translateX(16px);
}
.cookie-toggle.disabled {
  background: var(--blue);
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid var(--line-bright);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
  flex: 1;
  white-space: nowrap;
}
.cookie-btn-primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.cookie-btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 4px 16px var(--blue-glow);
}
.cookie-btn:not(.cookie-btn-primary):hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
@media (max-width: 600px) {
  .cookie-banner { padding: 1.5rem 1.25rem; left: 0.5rem; right: 0.5rem; bottom: 0.5rem; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { flex: none; }
}
.cookie-reopen {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.2s;
}
.cookie-reopen:hover {
  color: var(--text);
}

/* ============================================================
   3.1 — PRINT-STYLESHEET
   ============================================================ */
@media print {
  *, *::before, *::after {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 10.5pt;
    line-height: 1.5;
  }
  .nav, .scroll-progress, .wa-float, .mobile-cta,
  .hero-atmosphere, .hero-grain, .hero-actions,
  .nav-cta, .lang-switch, .trust-marquee-track,
  .form, .form-success, .leadmagnet-form, .leadmagnet-note,
  .leadmagnet-success, .nav-links, .precta-actions,
  .cookie-banner {
    display: none !important;
  }
  section {
    page-break-inside: avoid;
    padding: 1cm 0 !important;
    border: none !important;
  }
  .container, .container-narrow {
    max-width: 100% !important;
    padding: 0 !important;
  }
  h1, h2, h3, h4, h5, .hero-headline, .section-title {
    color: black !important;
    font-family: Georgia, serif !important;
    font-weight: 600 !important;
    page-break-after: avoid;
  }
  .hero-headline { font-size: 28pt; }
  .section-title { font-size: 20pt; margin-top: 0.5cm; }
  h3 { font-size: 14pt; }
  h4 { font-size: 12pt; }
  .italic, em { font-style: italic !important; color: black !important; }
  .eyebrow, .section-eyebrow, .idea-marker, .pause-mark, .leadmagnet-doc-tag {
    color: #555 !important;
    font-family: Helvetica, Arial, sans-serif !important;
    font-size: 8pt !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.25cm;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.15cm;
    display: block;
    page-break-after: avoid;
  }
  .compare-row, .norm-list li, .faq-item summary {
    border-bottom: 0.5pt solid #aaa !important;
    padding: 0.2cm 0 !important;
  }
  .faq-item .faq-body {
    display: block !important;
    padding: 0 0 0.4cm 0 !important;
    font-size: 9.5pt;
  }
  .faq-item summary::after { display: none !important; }
  a[href^="http"]::after,
  a[href^="mailto"]::after,
  a[href^="tel"]::after {
    content: " (" attr(href) ")";
    font-size: 8.5pt;
    color: #555 !important;
    font-style: italic;
  }
  a[href^="#"]::after { content: ""; }
  .vs-card::before, .vs-card::after,
  .hero-half, .process-step-img,
  .usecase-img, .leadmagnet-visual, .tech-viz {
    display: none !important;
  }
  footer {
    margin-top: 1cm;
    padding-top: 0.5cm !important;
    border-top: 1px solid #999 !important;
    font-size: 8.5pt;
  }
  .footer-grid { display: block !important; }
  .footer-col, .footer-brand { display: block; margin-bottom: 0.4cm; }
  .logo-img { display: none !important; }
  footer::after {
    content: "chamelis.de · Southern Phoenix GmbH · München · info@chamelis.de";
    display: block;
    text-align: center;
    margin-top: 0.5cm;
    color: #555 !important;
    font-size: 8pt;
    border-top: 0.5pt solid #ccc;
    padding-top: 0.2cm;
  }
  @page { margin: 1.5cm; size: A4 portrait; }
}

/* Lead-Magnet TOC-Liste in linker Doc-Box */
.leadmagnet-doc-toc {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.leadmagnet-doc-toc li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.01em;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--line-light);
}
.leadmagnet-doc-toc li:last-child { border-bottom: none; padding-bottom: 0; }
.leadmagnet-doc-toc li span {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: -0.01em;
}

/* ============================================================
   3.2 — ÜBER UNS / FOUNDER-SEKTION
   ============================================================ */
.founder { padding: 8rem 0; }
.founder-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 4rem;
  align-items: start;
}
.founder-grid.founder-grid-no-photo {
  grid-template-columns: 1fr;
  max-width: 56rem;
}
@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.founder-visual {
  position: relative;
  /* Foto auf Höhe der Headline starten, nicht auf Höhe der Eyebrow */
  margin-top: 4.5rem;
}
@media (max-width: 1024px) {
  .founder-visual { margin-top: 0; }
}
.founder-photo {
  position: relative;
  aspect-ratio: 4/3;
  max-width: 320px;
  background: var(--bg-light-elev);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
@media (max-width: 1024px) {
  .founder-photo { max-width: 280px; margin: 0 auto; }
}
.founder-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='500'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.014' numOctaves='4' seed='5'/><feColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.50 0 0 0 0 0.45 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
  background-size: cover;
  opacity: 0.5;
}
.founder-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.founder-photo-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.35rem 0.8rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}

.founder-card {
  margin-top: 2.5rem;
  padding: 2rem 2.25rem;
  background: var(--bg-light-card);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  position: relative;
}
.founder-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 2rem;
  width: 64px;
  height: 2px;
  background: var(--blue);
}
.founder-card-meta {
  margin-bottom: 1.25rem;
}
.founder-card-role {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  display: block;
  margin-bottom: 0.4rem;
}
.founder-card-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.015em;
  color: var(--text-light);
  margin: 0;
}
.founder-card-bio {
  color: var(--text-light-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.founder-card-bio em {
  color: var(--text-light-dim);
  font-style: italic;
}
.founder-card-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}
.founder-card-links a {
  color: var(--text-light);
  transition: color 0.2s;
}
.founder-card-links a:hover { color: var(--blue); }
.founder-card-links .dot { color: var(--text-light-dim); }

@media (max-width: 768px) {
  .founder { padding: 5rem 0; }
  .founder-card { padding: 1.5rem 1.5rem; margin-top: 2rem; }
  .founder-card-name { font-size: 1.4rem; }
}

/* ============================================================
   3.2 — ACTIVE SECTION INDICATOR (Navigation)
   ============================================================ */
.nav-links > a:not(.nav-cta):not(.lang-switch a) {
  position: relative;
}
.nav-links > a.active-section {
  color: var(--text);
}
.nav-links > a.active-section::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  animation: active-section-fade 0.4s ease-out forwards;
}
@keyframes active-section-fade {
  from { opacity: 0; transform: scaleX(0.6); }
  to { opacity: 1; transform: scaleX(1); }
}

/* ============================================================
   3.2 — FORM LOADING STATE + TOAST
   ============================================================ */
.form-submit {
  position: relative;
  min-width: 11rem;
}
.form-submit.loading {
  pointer-events: none;
  opacity: 0.85;
}
.form-submit.loading .submit-text { opacity: 0.4; }
.form-submit.loading svg { display: none; }
.form-submit.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}
@keyframes spinner {
  to { transform: rotate(360deg); }
}

.leadmagnet-form button.loading {
  pointer-events: none;
  opacity: 0.85;
  position: relative;
  color: transparent !important;
}
.leadmagnet-form button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

/* Toast Notifications */
.toast-host {
  position: fixed;
  top: 5rem;
  right: 1.25rem;
  left: 1.25rem;
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  max-width: 24rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--line-bright);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease-out, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.visible { opacity: 1; transform: translateX(0); }
.toast.success { border-left-color: #22a36b; }
.toast.error { border-left-color: #d44; }
.toast strong { display: block; margin-bottom: 0.25rem; font-weight: 600; }

/* Honeypot — visuell und für Screen-Reader unsichtbar, aber im DOM */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ============================================================
   3.2 — WHATSAPP STANDORT-DIALOG
   ============================================================ */
.wa-dialog[hidden] { display: none; }
.wa-dialog {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.wa-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  animation: wa-fade-in 0.25s ease-out;
}
.wa-dialog-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-bright);
  border-radius: 6px;
  padding: 2.25rem 2rem 1.75rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 32px 96px rgba(0,0,0,0.6);
  animation: wa-pop-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes wa-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes wa-pop-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
}
.wa-dialog-close:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.wa-dialog-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #25D366;
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.wa-dialog-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 0.6rem;
}
.wa-dialog-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.wa-dialog-options {
  display: grid;
  gap: 0.6rem;
}
.wa-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.wa-option:hover {
  border-color: #25D366;
  background: var(--bg-card);
  transform: translateX(2px);
}
.wa-option:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 2px;
}
.wa-option-flag {
  font-size: 1.5rem;
  line-height: 1;
}
.wa-option-meta strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.wa-option-meta span {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 300;
}
.wa-option svg {
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  transition: transform 0.2s, color 0.2s;
}
.wa-option:hover svg {
  color: #25D366;
  transform: translateX(3px);
}
@media (max-width: 480px) {
  .wa-dialog-card { padding: 1.75rem 1.5rem 1.5rem; }
  .wa-dialog-title { font-size: 1.4rem; }
  .wa-option { padding: 0.85rem 1rem; }
}

/* ============================================================
   3.2 — FOOTER SLOGAN + DE-ORIGIN-BADGE
   ============================================================ */
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.5rem;
}
.footer-brand-row .logo { margin-bottom: 0; }
.footer-slogan {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  border-left: 1px solid var(--line-bright);
  padding-left: 0.95rem;
  line-height: 1.4;
  max-width: 14ch;
}

.footer-origin {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.85rem 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.flag-de {
  width: 18px;
  height: 11px;
  display: block;
  border-radius: 1.5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (max-width: 520px) {
  .footer-brand-row { gap: 0.75rem; }
  .footer-slogan { font-size: 0.65rem; padding-left: 0.75rem; max-width: 12ch; }
}
