:root {
  --primary: #0f2b1d;
  --primary-light: #1a4a30;
  --primary-mid: #143d28;
  --accent: #2ecc71;
  --accent-dark: #27ae60;
  --accent-glow: rgba(46,204,113,.15);
  --dark: #0a0a0a;
  --gray-900: #111;
  --gray-800: #1a1a1a;
  --gray-700: #2a2a2a;
  --gray-600: #555;
  --gray-500: #777;
  --gray-400: #999;
  --gray-300: #bbb;
  --gray-200: #e0e0e0;
  --gray-100: #f4f4f4;
  --white: #fff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow: 0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.1);
  --shadow-accent: 0 8px 32px rgba(46,204,113,.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max-width: 1200px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
  color: var(--dark); line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── DOT PATTERN for light sections ── */
.pattern-dots {
  background-image: radial-gradient(circle, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.pattern-dots-dark {
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(.92);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.06); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 72px;
}
.nav-logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -.5px; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--gray-600); transition: var(--transition); position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px; font-weight: 700; transition: var(--transition);
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); box-shadow: var(--shadow-accent); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: var(--transition); border-radius: 2px; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(160deg, rgba(15,43,29,.93), rgba(15,43,29,.75)),
              url('img/hero-elphi.jpg') center/cover no-repeat fixed;
  color: var(--white); padding: 120px 0 100px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(2px 2px at 10% 20%, rgba(46,204,113,.25), transparent),
    radial-gradient(2px 2px at 30% 60%, rgba(46,204,113,.15), transparent),
    radial-gradient(2px 2px at 50% 35%, rgba(255,255,255,.08), transparent),
    radial-gradient(2px 2px at 70% 80%, rgba(46,204,113,.2), transparent),
    radial-gradient(2px 2px at 85% 15%, rgba(255,255,255,.06), transparent),
    radial-gradient(2px 2px at 20% 90%, rgba(46,204,113,.12), transparent),
    radial-gradient(2px 2px at 60% 10%, rgba(255,255,255,.05), transparent),
    radial-gradient(2px 2px at 90% 50%, rgba(46,204,113,.18), transparent);
  animation: heroDrift 20s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { opacity: .6; transform: translateY(0) scale(1); }
  50%  { opacity: 1;  transform: translateY(-12px) scale(1.02); }
  100% { opacity: .7; transform: translateY(6px) scale(.99); }
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(transparent, rgba(15,43,29,.4));
}
.hero-shapes {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.hero-shape {
  position: absolute; border-radius: 50%;
  opacity: 0; animation: heroFloat 12s ease-in-out infinite;
}
.hero-shape:nth-child(1) {
  width: 300px; height: 300px; top: -5%; right: -5%;
  background: radial-gradient(circle, rgba(46,204,113,.08), transparent 70%);
  animation-duration: 18s;
}
.hero-shape:nth-child(2) {
  width: 200px; height: 200px; bottom: 10%; left: 5%;
  background: radial-gradient(circle, rgba(46,204,113,.06), transparent 70%);
  animation-duration: 14s; animation-delay: -4s;
}
.hero-shape:nth-child(3) {
  width: 120px; height: 120px; top: 40%; right: 20%;
  background: radial-gradient(circle, rgba(255,255,255,.04), transparent 70%);
  animation-duration: 10s; animation-delay: -7s;
}
.hero-shape:nth-child(4) {
  width: 80px; height: 80px; top: 15%; left: 30%;
  border: 1px solid rgba(46,204,113,.1); background: transparent;
  animation-duration: 16s; animation-delay: -2s;
}
.hero-shape:nth-child(5) {
  width: 160px; height: 160px; bottom: 20%; right: 35%;
  border: 1px solid rgba(255,255,255,.04); background: transparent;
  animation-duration: 22s; animation-delay: -10s;
}
@keyframes heroFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(.9); }
  20%      { opacity: 1; }
  50%      { transform: translateY(-30px) scale(1.05); opacity: .8; }
  80%      { opacity: 1; }
}
.hero-content { max-width: 720px; position: relative; z-index: 1; }
.hero-tagline { font-size: 1.1rem; font-weight: 500; opacity: .6; margin-bottom: 16px; letter-spacing: .5px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { font-size: 1.15rem; opacity: .8; margin-bottom: 40px; max-width: 560px; line-height: 1.75; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge { margin-top: 28px; }
.hero-badge img { height: 48px; border-radius: 8px; opacity: .9; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 1rem;
  font-weight: 700; transition: var(--transition); cursor: pointer; border: none;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.25); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-arrow::after { content: '\2192'; margin-left: 4px; transition: var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── TRUST BAR ── */
/* ── HERO TRUST BADGES (inside hero, green bg) ── */
.hero-trust-badges {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px;
}
.hero-trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,204,113,.12); padding: 8px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85);
  border: 1px solid rgba(46,204,113,.2);
}
.hero-trust-badge .icon { color: var(--accent); }
.hero-ticker {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: .78rem; font-weight: 700; color: var(--accent);
  letter-spacing: .5px; animation: tickerPulse 2s ease-in-out infinite;
}
.hero-ticker .icon { color: var(--accent); }

/* ── TOOL BAR (logo carousel only, white bg) ── */
.tool-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 28px 0; }
.tool-bar-label {
  text-align: center; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gray-400); margin-bottom: 20px;
}
.trust-logos-track {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust-logos-track:hover .trust-logos-slide { animation-play-state: paused; }
.trust-logos-slide {
  display: flex; gap: 48px; align-items: center;
  animation: logoScroll 40s linear infinite;
  width: max-content;
  will-change: transform;
}
.trust-logo-img {
  height: 28px; width: auto; opacity: .35; filter: grayscale(100%);
  transition: var(--transition); flex-shrink: 0;
}
.trust-logo-img:hover { opacity: .8; filter: grayscale(0%); }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FOERDERUNG ── */
.foerderung {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); padding: 100px 0; position: relative; overflow: hidden;
}
.foerderung::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,204,113,.08), transparent 70%);
  border-radius: 50%;
}
.foerderung-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.foerderung-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 20px; }
.foerderung-text p { opacity: .88; font-size: 1.05rem; margin-bottom: 20px; line-height: 1.75; }
.foerderung-highlight {
  text-align: center; background: rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 56px 40px;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}
.foerderung-number { font-size: 6rem; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.foerderung-sub { font-size: 1.15rem; opacity: .75; }
.foerderung-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); padding: 10px 20px; border-radius: 50px;
  font-size: .85rem; font-weight: 600; margin-top: 20px;
  border: 1px solid rgba(255,255,255,.1);
}
.foerderung-badge .icon { width: 16px; height: 16px; }
.foerderung-bafa-logo-wrap {
  display: inline-block; background: #fff; padding: 10px 18px; border-radius: 10px; margin-bottom: 20px;
}
.foerderung-bafa-logo { height: 40px; display: block; }
.foerderung-verifiziert-badge {
  display: block; margin-top: 20px; height: 44px; border-radius: 8px;
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-dark { background: var(--gray-900); color: var(--white); }
.section-light { background: var(--gray-100); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--accent); margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  line-height: 1.18; margin-bottom: 18px;
}
.section-header p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.75; }
.section-dark .section-header p { color: var(--gray-400); }

/* ── SECTION DECORATOR LINE ── */
.section-header::after {
  content: ''; display: block; width: 48px; height: 3px;
  background: var(--accent); margin: 24px auto 0; border-radius: 2px;
}

/* ── VALUE PROPOSITION ── */
.value-intro {
  text-align: center; max-width: 740px; margin: 0 auto 48px;
}
.value-intro h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.value-intro p { font-size: 1.05rem; color: var(--gray-600); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  text-align: center; padding: 44px 28px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0); transition: var(--transition);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon { margin: 0 auto 16px; width: 48px; height: 48px; color: var(--accent); }
.value-number { font-size: 3.2rem; font-weight: 900; color: var(--accent); margin-bottom: 8px; line-height: 1; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }

/* ── PROBLEMS ── */
.problems-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 48px; }
.problems-intro-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.problems-intro-text p { font-size: 1.1rem; color: var(--gray-600); line-height: 1.7; }
.problems-intro-image { position: relative; }
.problems-intro-image img { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius); }
.problems-intro-image::after {
  content: ''; position: absolute; inset: 8px -8px -8px 8px;
  border: 2px solid var(--accent); border-radius: var(--radius); z-index: -1; opacity: .3;
}
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 16px; }
.problem-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 24px 28px; transition: var(--transition);
  display: flex; gap: 16px; align-items: flex-start;
}
.problem-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.problem-num {
  font-size: .7rem; font-weight: 800; color: var(--accent);
  min-width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-glow); border-radius: 50%; flex-shrink: 0;
}
.problem-content {}
.problem-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.problem-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }
.problem-quote {
  font-style: italic; color: var(--accent-dark); font-size: .85rem;
  margin-bottom: 8px; padding-left: 12px;
  border-left: 2px solid var(--accent); line-height: 1.5;
}

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.service-card { grid-column: span 2; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }
.service-card {
  background: var(--gray-800); border-radius: var(--radius); padding: 36px;
  border: 1px solid rgba(255,255,255,.05); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--accent); transition: height .4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { border-color: rgba(46,204,113,.2); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.service-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 16px; opacity: .8; }
.service-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); margin-bottom: 16px; opacity: .7;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; }
.service-card p { font-size: .9rem; color: var(--gray-400); line-height: 1.7; }
.service-label {
  display: inline-block; margin-top: 20px; font-size: .72rem;
  font-weight: 600; color: var(--accent); opacity: .5;
  text-transform: uppercase; letter-spacing: 1px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
}

/* ── PILOT SECTION ── */
.pilot-section {
  background: linear-gradient(135deg, var(--accent-dark), #34d058);
  color: var(--white); padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.pilot-section::before {
  content: ''; position: absolute; top: -30%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
  border-radius: 50%;
}
.pilot-section::after {
  content: ''; position: absolute; bottom: -20%; right: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,0,0,.08), transparent 70%);
  border-radius: 50%;
}
.pilot-section .container { position: relative; z-index: 1; }
.pilot-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.pilot-section .subtitle { font-size: 1.1rem; opacity: .9; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.pilot-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto 40px; }
.pilot-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  border: 1px solid rgba(255,255,255,.15); transition: var(--transition);
}
.pilot-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.pilot-card-icon { margin: 0 auto 16px; width: 48px; height: 48px; }
.pilot-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.pilot-card p { font-size: .85rem; opacity: .9; line-height: 1.6; }
.pilot-note { font-size: .9rem; opacity: .75; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── BRANCHEN ── */
.branchen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.branchen-grid .branche-card:nth-child(9) { grid-column: 2; }
.branchen-grid .branche-card:nth-child(10) { grid-column: 3; }
.branche-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px; transition: var(--transition);
}
.branche-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.branche-icon { width: 32px; height: 32px; color: var(--accent); flex-shrink: 0; }
.branche-card h3 { font-size: .9rem; font-weight: 700; }
.branchen-note { text-align: center; margin-top: 28px; font-size: .88rem; color: var(--gray-500); }

/* ── PRAXISBEISPIEL ── */
.praxis-header-extra { text-align: center; margin-bottom: 40px; }
.praxis-header-extra .tag {
  display: inline-block; background: rgba(46,204,113,.1);
  color: var(--accent); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.praxis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.praxis-item {
  background: var(--gray-800); border-radius: var(--radius-sm); padding: 28px 20px;
  border: 1px solid rgba(255,255,255,.04); display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 14px; transition: var(--transition);
}
.praxis-item:hover { border-color: rgba(46,204,113,.15); background: rgba(46,204,113,.04); }
.praxis-icon { width: 32px; height: 32px; color: var(--accent); flex-shrink: 0; }
.praxis-item strong { font-size: .88rem; color: var(--white); }

/* ── PROCESS TIMELINE ── */
.timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg, var(--accent), var(--primary));
  transform: translateX(-50%); border-radius: 2px;
}
.timeline-item {
  display: flex; align-items: flex-start; margin-bottom: 48px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item:nth-child(odd) .timeline-content { padding-right: 60px; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { padding-left: 60px; text-align: left; }
.timeline-content {
  width: 50%; transition: var(--transition);
}
.timeline-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 36px;
  transition: var(--transition); position: relative;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.timeline-dot {
  position: absolute; left: 50%; top: 24px; transform: translateX(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; z-index: 2;
  box-shadow: 0 4px 20px rgba(15,43,29,.25), 0 0 0 6px var(--white);
  transition: var(--transition);
}
.timeline-item:hover .timeline-dot { background: var(--accent); box-shadow: 0 4px 20px rgba(46,204,113,.3), 0 0 0 6px var(--white); }
.timeline-icon {
  width: 36px; height: 36px; color: var(--accent); margin-bottom: 12px;
  display: inline-block;
}
.timeline-item:nth-child(odd) .timeline-icon { margin-left: auto; }
.timeline-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.timeline-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; }
.timeline-label {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); opacity: .6;
}
.timeline-label svg { width: 14px; height: 14px; }

/* ── INTEGRATION LOGOS (visual pills) ── */
.integration-logo {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 700; color: var(--dark);
  transition: var(--transition); letter-spacing: .3px;
}
.integration-logo:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.int-logo-img { height: 18px; width: auto; flex-shrink: 0; }
.integration-logo .logo-dot {
  width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0;
}
.logo-green { background: #2ecc71; }
.logo-blue { background: #3498db; }
.logo-orange { background: #e67e22; }
.logo-red { background: #e74c3c; }
.logo-purple { background: #9b59b6; }
.logo-dark { background: #2c3e50; }
.logo-yellow { background: #f1c40f; }
.logo-teal { background: #1abc9c; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(160deg, rgba(15,43,29,.93), rgba(15,43,29,.82)),
              url('img/speicherstadt.jpg') center/cover no-repeat fixed;
  color: var(--white); padding: 100px 0;
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-text h3 { font-size: 1rem; font-weight: 600; opacity: .6; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 2px; }
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.cta-text p { font-size: 1rem; opacity: .82; margin-bottom: 32px; line-height: 1.75; }
.cta-image { position: relative; }
.cta-image img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); }
.cta-image::after {
  content: ''; position: absolute; inset: 8px -8px -8px 8px;
  border: 2px solid rgba(46,204,113,.3); border-radius: var(--radius); z-index: -1;
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 480px; object-fit: cover; object-position: center top; }
.about-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(transparent, rgba(0,0,0,.15));
}
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; }
.about-text p { font-size: 1rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.75; }
.about-text .section-label { margin-bottom: 12px; }
.about-signature { height: 56px; width: auto; margin-top: 8px; opacity: .7; filter: contrast(1.2); }

/* ── INTEGRATIONS ── */
.integration-group { margin-bottom: 28px; }
.integration-group h3 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--gray-400); margin-bottom: 12px;
}
.integration-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.integration-tag {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  padding: 10px 20px; border-radius: 50px; font-size: .83rem; font-weight: 600;
  color: var(--gray-600); transition: var(--transition);
}
.integration-tag:hover { border-color: var(--accent); color: var(--primary); background: var(--accent-glow); }

/* ── KONTAKT ── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.kontakt-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; }
.kontakt-info p { color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; }
.kontakt-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: .95rem; }
.kontakt-detail .icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.kontakt-form input, .kontakt-form textarea, .kontakt-form select {
  width: 100%; padding: 14px 18px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit;
  background: var(--white); transition: var(--transition); margin-bottom: 12px;
}
.kontakt-form input:focus, .kontakt-form textarea:focus, .kontakt-form select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.kontakt-form textarea { min-height: 100px; resize: vertical; }
.kontakt-form .btn { width: 100%; justify-content: center; }

/* ── SERVICE BULLETS ── */
.service-bullets {
  list-style: none; padding: 0; margin: 0;
}
.service-bullets li {
  position: relative; padding-left: 20px; font-size: .9rem; color: var(--gray-400);
  line-height: 1.7; margin-bottom: 6px;
}
.service-bullets li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); opacity: .6;
}

/* ── TESTIMONIAL PLACEHOLDER ── */
.testimonial-placeholder {
  text-align: center; padding: 56px 40px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); max-width: 640px; margin: 0 auto;
}
.testimonial-placeholder h3 {
  font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.testimonial-placeholder p {
  font-size: .95rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 24px;
}

/* ── LEAD MAGNET ── */
.leadmagnet-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.leadmagnet-text h2 {
  font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.25;
}
.leadmagnet-text p {
  color: var(--gray-400); line-height: 1.7; margin-bottom: 20px;
}
.leadmagnet-features {
  list-style: none; padding: 0;
}
.leadmagnet-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; color: var(--gray-300); margin-bottom: 8px;
}
.leadmagnet-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 40px; text-align: center;
}
.leadmagnet-card h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 20px;
}
.leadmagnet-download {
  display: flex; flex-direction: column; gap: 12px;
}
.leadmagnet-download input {
  width: 100%; padding: 14px 18px; border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit;
  background: rgba(255,255,255,.06); color: var(--white);
  transition: var(--transition);
}
.leadmagnet-download input::placeholder { color: var(--gray-500); }
.leadmagnet-download input:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.leadmagnet-download .btn { width: 100%; justify-content: center; }
.leadmagnet-note {
  margin-top: 12px; font-size: .78rem; color: var(--gray-500);
}

/* ── CHECKLISTE PAGE ── */
.checkliste-page { padding: 120px 0 80px; }
.checkliste-hero {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.checkliste-hero h1 {
  font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2;
}
.checkliste-subtitle {
  font-size: 1.05rem; color: var(--gray-600); line-height: 1.7;
}
.checkliste-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  margin-bottom: 64px;
}
.checkliste-details h2 {
  font-size: 1.4rem; font-weight: 700; margin-bottom: 24px;
}
.checkliste-list {
  list-style: none; padding: 0;
}
.checkliste-list li {
  display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start;
}
.checkliste-list li strong {
  display: block; font-weight: 700; margin-bottom: 4px;
}
.checkliste-list li span {
  font-size: .9rem; color: var(--gray-600); line-height: 1.6;
}
.checkliste-download-card {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 40px; text-align: center;
  position: sticky; top: 100px;
}
.checkliste-download-card h3 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 8px;
}
.checkliste-download-card > p {
  font-size: .9rem; color: var(--gray-600); margin-bottom: 20px; line-height: 1.6;
}
.checkliste-download-card .leadmagnet-download input {
  background: var(--white); color: var(--dark); border: 1px solid var(--gray-200);
}
.checkliste-download-card .leadmagnet-download input::placeholder { color: var(--gray-400); }
.checkliste-download-card .leadmagnet-note { color: var(--gray-500); }
.checkliste-cta {
  text-align: center; padding: 48px 40px;
  background: var(--primary); border-radius: var(--radius); color: var(--white);
}
.checkliste-cta h2 {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; color: var(--white);
}
.checkliste-cta p {
  color: rgba(255,255,255,.7); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* ── KONTAKT BOOKING ── */
.kontakt-booking { min-height: 400px; }
.calendly-embed iframe {
  width: 100%; min-height: 660px; border: none; border-radius: var(--radius);
  background: var(--white);
}
.kontakt-form-compact input, .kontakt-form-compact textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .92rem; font-family: inherit;
  background: var(--white); transition: var(--transition); margin-bottom: 10px;
}
.kontakt-form-compact input:focus, .kontakt-form-compact textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.kontakt-form-compact textarea { min-height: 80px; resize: vertical; }
.kontakt-form-compact .btn { width: 100%; justify-content: center; }

/* ── FOOTER ── */
.footer { background: var(--dark); color: var(--gray-400); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; line-height: 1.65; max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: .82rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: .85rem; margin-bottom: 8px; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
  display: flex; justify-content: space-between; font-size: .78rem; flex-wrap: wrap; gap: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links {
    display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; padding: 40px 24px; gap: 24px; z-index: 99;
  }
  .nav-links.active { display: flex; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; padding: 140px 0 80px; background-attachment: scroll; }
  .hero h1 { font-size: 2.2rem; }
  .about-grid, .kontakt-grid, .cta-inner, .problems-intro, .footer-inner, .compare-grid, .leadmagnet-inner, .checkliste-content { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .timeline::before { left: 24px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; }
  .timeline-content, .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content { width: 100%; padding-left: 72px; padding-right: 0; text-align: left; }
  .timeline-dot { left: 24px; top: 0; width: 48px; height: 48px; font-size: 1rem; }
  .timeline-item:nth-child(odd) .timeline-icon { margin-left: 0; }
  .branchen-grid { grid-template-columns: repeat(2, 1fr); }
  .branchen-grid .branche-card:nth-child(9),
  .branchen-grid .branche-card:nth-child(10) { grid-column: auto; }
  .footer-inner { gap: 32px; }
  .about-image img, .cta-image img { height: 320px; }
  .cta-section, .hero { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-trust-badges { gap: 8px; }
  .hero-trust-badge { font-size: .72rem; padding: 6px 12px; }
  .problems-grid { grid-template-columns: 1fr; }
  .praxis-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .timeline::before { left: 24px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; }
  .timeline-content, .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content { width: 100%; padding-left: 72px; padding-right: 0; text-align: left; }
  .timeline-dot { left: 24px; top: 0; width: 48px; height: 48px; font-size: 1rem; }
  .timeline-item:nth-child(odd) .timeline-icon { margin-left: 0; }
  .branchen-grid { grid-template-columns: 1fr; }
  .branchen-grid .branche-card:nth-child(9),
  .branchen-grid .branche-card:nth-child(10) { grid-column: auto; }
  .praxis-grid { grid-template-columns: 1fr; }
  .calc-container { grid-template-columns: 1fr; }
}


/* ── VORHER / NACHHER (Zwei-Spalten-Grid) ── */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px;
}
.compare-col {
  border-radius: var(--radius); padding: 32px;
}
.compare-col-old {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.compare-col-new {
  background: rgba(46,204,113,.06); border: 1px solid rgba(46,204,113,.15);
}
.compare-header {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 700; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .9rem; line-height: 1.5; color: rgba(255,255,255,.75);
}
.compare-list li:last-child { border-bottom: none; }
.compare-list li .icon { flex-shrink: 0; margin-top: 2px; }
.compare-col-old .compare-list li { color: rgba(255,255,255,.45); }
.compare-col-new .compare-list li { color: var(--white); font-weight: 500; }
.compare-savings {
  text-align: center;
}
.compare-save-item {
  background: rgba(46,204,113,.1); color: var(--white);
  border-radius: var(--radius); padding: 32px;
  border: 1px solid rgba(46,204,113,.2); display: inline-block;
}
.compare-save-number {
  font-size: 2rem; font-weight: 900; color: var(--accent); margin-bottom: 4px;
}
.compare-save-label { font-size: .95rem; opacity: .8; }

/* ── EINSPAR-RECHNER ── */
.calc-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.calc-field { margin-bottom: 32px; }
.calc-field label {
  display: block; font-size: .95rem; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.calc-field input[type="range"] {
  width: 100%; height: 6px; -webkit-appearance: none;
  background: rgba(255,255,255,.1); border-radius: 3px; outline: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  box-shadow: 0 2px 8px rgba(46,204,113,.3);
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); cursor: pointer; border: none;
}
.calc-range-value {
  text-align: center; font-size: 1.1rem; font-weight: 700;
  color: var(--accent); margin-top: 8px;
}
.calc-results { display: flex; flex-direction: column; gap: 16px; }
.calc-result-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 32px; text-align: center;
}
.calc-result-number {
  font-size: 2.8rem; font-weight: 900; color: var(--accent); line-height: 1;
}
.calc-result-label {
  font-size: .88rem; color: var(--gray-400); margin-top: 8px;
}
.calc-note {
  font-size: .78rem; color: var(--gray-500); line-height: 1.5;
  margin-top: 8px; text-align: center;
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0; background: none; border: none;
  font-size: 1rem; font-weight: 700; color: var(--dark);
  cursor: pointer; text-align: left; font-family: inherit;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  width: 20px; height: 20px; color: var(--gray-400); flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 0 20px; font-size: .92rem; color: var(--gray-600); line-height: 1.7;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.45);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: var(--dark); color: var(--gray-300);
  padding: 16px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.06);
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text p { font-size: .82rem; line-height: 1.5; margin: 0; }
.cookie-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cookie-btn { padding: 8px 20px; font-size: .82rem; }
.cookie-link { font-size: .78rem; color: var(--gray-400); text-decoration: underline; }
.cookie-link:hover { color: var(--accent); }

/* ── HONEYPOT ── */
.honeypot { position: absolute; left: -9999px; }
.form-status { margin-top: 12px; font-size: .88rem; text-align: center; }
.form-status.success { color: var(--accent); }
.form-status.error { color: #e74c3c; }

/* ── PILOT POPUP ── */
.pilot-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.pilot-overlay.visible { opacity: 1; pointer-events: auto; }
.pilot-popup {
  background: var(--white); border-radius: var(--radius);
  max-width: 680px; width: 90%; position: relative;
  transform: translateY(24px) scale(.96);
  transition: transform .3s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  display: flex; overflow: hidden;
}
.pilot-popup-img {
  width: 240px; flex-shrink: 0;
}
.pilot-popup-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pilot-popup-body {
  padding: 44px 36px; text-align: center; flex: 1;
}
.pilot-overlay.visible .pilot-popup { transform: translateY(0) scale(1); }
.pilot-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  font-size: 1.3rem; color: var(--gray-500); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.pilot-close:hover { background: var(--gray-200); color: var(--dark); }
.pilot-popup-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  background: var(--accent-glow); color: var(--accent-dark);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
  border: 1px solid rgba(46,204,113,.2);
}
.pilot-popup-body h2 {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; color: var(--dark);
}
.pilot-popup-body > p {
  font-size: .92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px;
}
.pilot-popup-perks { text-align: left; margin-bottom: 28px; }
.pilot-popup-perk {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: .88rem; color: var(--gray-600); line-height: 1.5;
}
.pilot-popup-perk .icon { flex-shrink: 0; margin-top: 2px; }
.pilot-popup-body .btn { width: 100%; justify-content: center; }
.pilot-popup-note {
  margin-top: 12px; font-size: .78rem; color: var(--gray-400);
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  background: var(--accent); width: 0; transition: width .1s linear;
}

/* ── STICKY MOBILE CTA ── */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 12px 16px; background: var(--primary);
  border-top: 1px solid rgba(46,204,113,.2);
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.mobile-cta .btn { width: 100%; justify-content: center; padding: 14px; font-size: .95rem; }
@media (max-width: 900px) {
  .mobile-cta { display: block; }
  .whatsapp-float { bottom: 76px; }
}

@keyframes tickerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

/* ── PROBLEM SOURCE ── */
.problem-source {
  display: block; margin-top: 4px; font-size: .75rem; font-weight: 600;
  color: var(--accent-dark); font-style: normal; letter-spacing: .3px;
}

/* ── LANDING SUBPAGES ── */
.landing-hero {
  background: var(--primary); color: var(--white); padding: 120px 0 80px;
}
.landing-hero-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.landing-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.landing-hero-text h1 em { font-style: normal; color: var(--accent); }
.landing-hero-text p {
  font-size: 1.05rem; opacity: .8; line-height: 1.7; margin-bottom: 32px; max-width: 480px;
}
.landing-hero-image img {
  border-radius: var(--radius); width: 100%; height: 400px; object-fit: cover;
}
.landing-problems {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.landing-problem {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 24px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}
.landing-problem .icon { flex-shrink: 0; margin-top: 3px; }
.landing-problem strong { display: block; margin-bottom: 6px; font-weight: 700; }
.landing-problem span { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }
.landing-solution-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.landing-solution {
  background: var(--gray-800); border: 1px solid rgba(255,255,255,.04);
  border-radius: var(--radius-sm); padding: 28px;
}
.landing-solution strong { display: block; color: var(--white); margin-bottom: 8px; }
.landing-solution span { font-size: .9rem; color: var(--gray-400); line-height: 1.6; }
@media (max-width: 900px) {
  .landing-hero-content, .landing-problems, .landing-solution-grid { grid-template-columns: 1fr; }
}

/* ── CTA BUTTONS ── */
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   LKM-STYLE REDESIGN — Service Cards v2
   ══════════════════════════════════════════════ */

/* ── SERVICES GRID V2 ── */
.services-grid-v2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.sc2 {
  background: var(--gray-800); border-radius: var(--radius); padding: 36px;
  border: 1px solid rgba(255,255,255,.05); transition: var(--transition);
  position: relative; overflow: hidden;
}
.sc2::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--accent); transition: height .4s ease;
}
.sc2:hover::before { height: 100%; }
.sc2:hover { border-color: rgba(46,204,113,.2); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.sc2-full { grid-column: 1 / -1; }
.sc2-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.sc2-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); opacity: .7; }
.sc2-num { color: var(--accent); font-weight: 800; }
.sc2-head-icon { width: 28px; height: 28px; color: var(--gray-500); opacity: .4; }
.sc2 h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.sc2-desc { font-size: .9rem; color: var(--gray-400); line-height: 1.7; }
.sc2-desc strong { color: var(--gray-300); }
.sc2-mockup {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm); padding: 24px; margin-bottom: 24px;
  overflow-x: auto;
}

/* ── MOCKUP STAGGER ANIMATION ── */
@keyframes mockupFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sc2 .mcl-item,
.sc2 .mst-card,
.sc2 .mfl-row,
.sc2 .mfl-bottom,
.sc2 .mkb-card,
.sc2 .mnet-label,
.sc2 .mnet-output,
.sc2 .mnet-agent {
  opacity: 0; transform: translateY(12px);
}
.sc2-mockup.mockup-active .mcl-item,
.sc2-mockup.mockup-active .mst-card,
.sc2-mockup.mockup-active .mfl-row,
.sc2-mockup.mockup-active .mfl-bottom,
.sc2-mockup.mockup-active .mkb-card,
.sc2-mockup.mockup-active .mnet-label,
.sc2-mockup.mockup-active .mnet-output,
.sc2-mockup.mockup-active .mnet-agent,
.sc2-mockup.mockup-active .mteam-agent {
  animation: mockupFadeIn .4s ease forwards;
}
.sc2-mockup.mockup-active .mcl-item:nth-child(1) { animation-delay: .15s; }
.sc2-mockup.mockup-active .mcl-item:nth-child(2) { animation-delay: .3s; }
.sc2-mockup.mockup-active .mcl-item:nth-child(3) { animation-delay: .45s; }
.sc2-mockup.mockup-active .mcl-item:nth-child(4) { animation-delay: .6s; }
.sc2-mockup.mockup-active .mcl-item:nth-child(5) { animation-delay: .75s; }
.sc2-mockup.mockup-active .mst-card:nth-child(1) { animation-delay: .15s; }
.sc2-mockup.mockup-active .mst-card:nth-child(2) { animation-delay: .3s; }
.sc2-mockup.mockup-active .mst-card:nth-child(3) { animation-delay: .45s; }
.sc2-mockup.mockup-active .mst-card:nth-child(4) { animation-delay: .6s; }
.sc2-mockup.mockup-active .mfl-row:nth-child(1) { animation-delay: .2s; }
.sc2-mockup.mockup-active .mfl-row:nth-child(2) { animation-delay: .5s; }
.sc2-mockup.mockup-active .mfl-bottom { animation-delay: .8s; }
.sc2-mockup.mockup-active .mkb-card:nth-child(1) { animation-delay: .15s; }
.sc2-mockup.mockup-active .mkb-card:nth-child(2) { animation-delay: .3s; }
.sc2-mockup.mockup-active .mkb-card:nth-child(3) { animation-delay: .45s; }
.sc2-mockup.mockup-active .mkb-card:nth-child(4) { animation-delay: .6s; }
.sc2-mockup.mockup-active .mnet-label:nth-child(1) { animation-delay: .2s; }
.sc2-mockup.mockup-active .mnet-label:nth-child(2) { animation-delay: .35s; }
.sc2-mockup.mockup-active .mnet-agent:nth-child(1) { animation-delay: .3s; }
.sc2-mockup.mockup-active .mnet-agent:nth-child(2) { animation-delay: .45s; }
.sc2-mockup.mockup-active .mnet-output:nth-child(1) { animation-delay: .5s; }
.sc2-mockup.mockup-active .mnet-output:nth-child(2) { animation-delay: .65s; }
.sc2-mockup.mockup-active .mnet-output:nth-child(3) { animation-delay: .8s; }
/* Progress bars animate in */
.sc2 .mst-bar-fill { width: 0; transition: width .8s ease .3s; }
.sc2-mockup.mockup-active .mst-bar-fill { width: 75%; }
.sc2 .mkb-progress-fill { width: 0; transition: width .6s ease .5s; }
.sc2-mockup.mockup-active .mkb-progress-fill { width: 60%; }
/* Network SVG lines draw in */
.sc2 .mnet-lines line {
  stroke-dashoffset: 200; transition: stroke-dashoffset 1s ease;
}
.sc2-mockup.mockup-active .mnet-lines line { stroke-dashoffset: 0; }
/* Center node pulse */
@keyframes centerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,.3); }
  50% { box-shadow: 0 0 0 10px rgba(46,204,113,0); }
}
.sc2-mockup.mockup-active .mnet-center { animation: centerPulse 2s ease-in-out 1s infinite; }

/* ── MOCKUP: CHECKLIST (Bereich 01) ── */
.mcl { border-left: 3px solid var(--accent); padding-left: 0; }
.mcl-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 16px;
  background: rgba(255,255,255,.04); border-radius: var(--radius-xs);
  margin-bottom: 6px; transition: background var(--transition);
}
.mcl-item:last-child { margin-bottom: 0; }
.mcl-item:hover { background: rgba(255,255,255,.07); }
.mcl-item-hl { background: rgba(46,204,113,.06); border: 1px solid rgba(46,204,113,.15); }
.mcl-icon {
  width: 32px; height: 32px; border-radius: 8px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.mcl-icon .icon { width: 16px; height: 16px; }
.mcl-green { background: rgba(46,204,113,.15); color: #2ecc71; }
.mcl-blue { background: rgba(52,152,219,.15); color: #3498db; }
.mcl-orange { background: rgba(230,126,34,.15); color: #e67e22; }
.mcl-yellow { background: rgba(241,196,15,.15); color: #f1c40f; }
.mcl-accent { background: rgba(46,204,113,.2); color: #2ecc71; }
.mcl-text { flex: 1; min-width: 0; }
.mcl-text strong { display: block; font-size: .82rem; color: var(--white); font-weight: 600; }
.mcl-text span { font-size: .7rem; color: var(--gray-500); }
.mcl-badge {
  font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 4px;
}
.mcl-badge .icon { width: 10px; height: 10px; }
.mcl-done { background: rgba(46,204,113,.12); color: #2ecc71; }
.mcl-amount { background: rgba(46,204,113,.15); color: #2ecc71; font-weight: 800; font-size: .75rem; }

/* ── MOCKUP: STEPS (Bereich 02) ── */
.mst-bar {
  height: 4px; background: rgba(255,255,255,.08); border-radius: 2px;
  margin-bottom: 20px; position: relative;
}
.mst-bar-fill {
  width: 75%; height: 100%; background: var(--accent); border-radius: 2px;
}
.mst-bar-dot {
  position: absolute; top: 50%; right: 25%; transform: translate(50%, -50%);
  width: 12px; height: 12px; border-radius: 50%; background: var(--accent);
  border: 2px solid var(--gray-800); box-shadow: 0 0 0 2px var(--accent);
}
.mst-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mst-card {
  background: rgba(255,255,255,.05); border-radius: var(--radius-sm); padding: 16px 12px;
  text-align: center; transition: var(--transition);
}
.mst-card:hover { background: rgba(255,255,255,.08); }
.mst-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.06); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 10px;
}
.mst-icon .icon { width: 22px; height: 22px; color: var(--accent); }
.mst-card strong { display: block; font-size: .78rem; color: var(--white); margin-bottom: 4px; }
.mst-card > span { display: block; font-size: .68rem; color: var(--gray-500); margin-bottom: 8px; }
.mst-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .62rem; font-weight: 700; padding: 3px 8px; border-radius: 50px;
}
.mst-badge .icon { width: 9px; height: 9px; }
.mst-blue { background: rgba(52,152,219,.15); color: #3498db; }
.mst-green { background: rgba(46,204,113,.12); color: #2ecc71; }

/* ── MOCKUP: FLOW DIAGRAM (Bereich 03) ── */
.mfl { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.mfl-row { display: flex; align-items: center; gap: 8px; justify-content: center; flex-wrap: wrap; }
.mfl-node {
  text-align: center; padding: 8px; min-width: 80px;
}
.mfl-node span { display: block; font-size: .7rem; color: var(--gray-400); line-height: 1.3; margin-top: 6px; }
.mfl-node strong { color: var(--accent); }
.mfl-node-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.06); display: flex; align-items: center;
  justify-content: center; margin: 0 auto;
}
.mfl-node-icon .icon { width: 18px; height: 18px; color: var(--gray-400); }
.mfl-node-green .icon { color: #2ecc71; }
.mfl-node-yellow { background: rgba(241,196,15,.12); }
.mfl-node-yellow .icon { color: #f1c40f; }
.mfl-node-hl .mfl-node-icon { border: 1px solid rgba(46,204,113,.2); }
.mfl-conn {
  width: 32px; height: 0; border-top: 2px dashed rgba(46,204,113,.25);
}
.mfl-bottom { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mfl-vert-conn {
  width: 0; height: 20px; border-left: 2px dashed rgba(46,204,113,.25);
}

/* ── MOCKUP: KANBAN (Bereich 04) ── */
.mkb-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; gap: 0;
}
.mkb-col {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1;
}
.mkb-col span:first-child {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray-400);
}
.mkb-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gray-600);
}
.mkb-dot-active { background: var(--accent); box-shadow: 0 0 8px rgba(46,204,113,.4); }
.mkb-col-active span:first-child { color: var(--accent); }
.mkb-line { flex: 1; height: 0; border-top: 2px solid rgba(255,255,255,.08); margin-top: 18px; }
.mkb-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mkb-card {
  background: rgba(255,255,255,.05); border-radius: var(--radius-sm); padding: 14px 10px;
  text-align: center; transition: var(--transition);
}
.mkb-card:hover { background: rgba(255,255,255,.08); }
.mkb-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.06); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 8px;
}
.mkb-card-icon .icon { width: 20px; height: 20px; color: var(--accent); }
.mkb-card strong { display: block; font-size: .72rem; color: var(--white); margin-bottom: 3px; }
.mkb-card > span { display: block; font-size: .64rem; color: var(--gray-500); margin-bottom: 6px; }
.mkb-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .6rem; font-weight: 700; padding: 3px 8px; border-radius: 50px;
  background: rgba(46,204,113,.12); color: #2ecc71;
}
.mkb-badge .icon { width: 9px; height: 9px; }
.mkb-progress { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; margin-top: 4px; }
.mkb-progress-fill { width: 60%; height: 100%; background: #e74c3c; border-radius: 2px; }

/* ── MOCKUP: AGENT TEAM (Bereich 05) ── */
.mteam-agents {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.mteam-agent {
  background: rgba(255,255,255,.05); border-radius: var(--radius-sm); padding: 20px 12px;
  text-align: center; transition: var(--transition);
  opacity: 0; transform: translateY(12px);
}
.mteam-agent:hover { background: rgba(255,255,255,.08); }
.sc2-mockup.mockup-active .mteam-agent:nth-child(1) { animation-delay: .15s; }
.sc2-mockup.mockup-active .mteam-agent:nth-child(2) { animation-delay: .3s; }
.sc2-mockup.mockup-active .mteam-agent:nth-child(3) { animation-delay: .45s; }
.sc2-mockup.mockup-active .mteam-agent:nth-child(4) { animation-delay: .6s; }
.mteam-avatar {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 12px;
  overflow: hidden; border: 2px solid rgba(46,204,113,.2);
  background: rgba(46,204,113,.1);
}
.mteam-avatar img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.mteam-agent strong { display: block; font-size: .8rem; color: var(--white); margin-bottom: 4px; }
.mteam-agent > span { display: block; font-size: .68rem; color: var(--gray-500); line-height: 1.4; margin-bottom: 8px; }
.mteam-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .62rem; font-weight: 700; color: #2ecc71;
}
.mteam-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #2ecc71;
  animation: dotPulse 2s ease-in-out infinite;
}

/* ── MOCKUP: NETWORK (Bereich 05 legacy) ── */
.mnet {
  position: relative; height: 280px; max-width: 600px; margin: 0 auto;
}
.mnet-lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.mnet-center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(46,204,113,.15); border: 2px solid rgba(46,204,113,.3);
  display: flex; align-items: center; justify-content: center;
}
.mnet-center .icon { width: 28px; height: 28px; color: var(--accent); }
.mnet-agent {
  position: absolute; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(46,204,113,.1); border: 1.5px solid rgba(46,204,113,.2);
  display: flex; align-items: center; justify-content: center;
}
.mnet-agent .icon { width: 20px; height: 20px; color: var(--accent); }
.mnet-top { left: 50%; top: 4%; transform: translateX(-50%); }
.mnet-bot { left: 50%; bottom: 4%; transform: translateX(-50%); }
.mnet-label {
  position: absolute; display: flex; align-items: center; gap: 8px;
  font-size: .75rem; color: var(--gray-300);
}
.mnet-label .icon { width: 24px; height: 24px; padding: 4px;
  background: rgba(255,255,255,.06); border-radius: 6px; color: var(--accent); flex-shrink: 0; }
.mnet-l1 { left: 2%; top: 42%; }
.mnet-l2 { left: 2%; top: 72%; }
.mnet-output {
  position: absolute; display: flex; align-items: center; gap: 6px;
  font-size: .72rem; color: var(--white); background: rgba(255,255,255,.06);
  border-radius: var(--radius-xs); padding: 6px 12px;
}
.mnet-output .icon { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.mnet-o1 { right: 4%; top: 12%; }
.mnet-o2 { right: 4%; top: 42%; }
.mnet-o3 { right: 4%; top: 72%; }

/* ── LEISTUNGEN TRUST BADGES ── */
.leistungen-trust {
  text-align: center; margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.leistungen-trust-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; margin-bottom: 28px;
}
.lt-badge-img { height: 48px; border-radius: 8px; }
.lt-google {
  display: flex; align-items: center; gap: 4px;
  font-size: .85rem; font-weight: 600; color: var(--gray-400);
}
.lt-google span { margin-left: 6px; }

/* ══════════════════════════════════════════════
   BAFA V2 — Light section with diagram decorations
   ══════════════════════════════════════════════ */
.foerderung-v2 {
  position: relative; padding: 100px 0; overflow: hidden;
  background: var(--gray-100);
}
.foerderung-v2-inner {
  text-align: center; max-width: 700px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius); padding: 64px 48px;
  border: 1px solid var(--gray-200); position: relative; z-index: 1;
}
.foerderung-v2-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 20px; color: var(--dark);
}
.foerderung-v2-inner p {
  font-size: .95rem; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.foerderung-v2-badge {
  display: block; height: 56px; margin: 0 auto 28px; border-radius: 8px;
}
.foerderung-v2-decor {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 200px; height: 400px; z-index: 0;
}
.foerderung-v2-decor-left { left: 5%; }
.foerderung-v2-decor-right { right: 5%; }
.foerderung-v2-decor svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════════
   AUTOMATISIERUNGEN · LIVE
   ══════════════════════════════════════════════ */
.auto-live-wrap {
  display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius);
  overflow: hidden; background: var(--gray-900);
  box-shadow: 0 24px 64px rgba(0,0,0,.15);
}
.auto-live-list { padding: 36px; }
.auto-live-header {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); padding: 8px 18px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--white); margin-bottom: 24px;
}
.auto-live-dot-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #e74c3c;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(231,76,60,.4); }
  50% { opacity: .7; box-shadow: 0 0 0 6px rgba(231,76,60,0); }
}
.auto-live-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.ali-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  border-radius: var(--radius-xs); transition: var(--transition);
  border: 1px solid rgba(255,255,255,.04);
}
.ali-item:hover { background: rgba(255,255,255,.04); border-color: rgba(46,204,113,.1); }
.ali-item-fade { opacity: .4; }
.ali-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.06); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.ali-icon .icon { width: 16px; height: 16px; color: var(--accent); }
.ali-text { flex: 1; min-width: 0; }
.ali-text strong { display: block; font-size: .82rem; color: var(--white); font-weight: 600; margin-bottom: 2px; }
.ali-text span { font-size: .72rem; color: var(--gray-500); line-height: 1.4; }
.ali-status {
  width: 8px; height: 8px; border-radius: 50%; background: #2ecc71;
  flex-shrink: 0; margin-top: 6px;
}
.auto-live-image {
  position: relative; overflow: hidden;
}
.auto-live-image img {
  width: 100%; height: 100%; object-fit: cover; min-height: 500px;
}
.auto-live-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  color: var(--white); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 8px 16px; border-radius: var(--radius-xs);
}

/* ══════════════════════════════════════════════
   QUIZ POPUP
   ══════════════════════════════════════════════ */
.quiz-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.quiz-overlay.visible { opacity: 1; visibility: visible; }
.quiz-popup {
  background: var(--white); border-radius: var(--radius);
  padding: 48px 40px; max-width: 560px; width: 90%;
  max-height: 90vh; overflow-y: auto;
  position: relative; transform: translateY(20px);
  transition: transform .3s ease;
}
.quiz-overlay.visible .quiz-popup { transform: translateY(0); }
.quiz-close {
  position: absolute; top: 16px; right: 16px; background: none;
  border: none; font-size: 1.8rem; color: var(--gray-500);
  cursor: pointer; line-height: 1; padding: 4px;
}
.quiz-close:hover { color: var(--dark); }
.quiz-popup-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); background: rgba(46,204,113,.08);
  border: 1px solid rgba(46,204,113,.15); padding: 6px 16px;
  border-radius: 50px; margin-bottom: 16px;
}
.quiz-popup h2 {
  font-size: 1.4rem; font-weight: 800; color: var(--dark);
  line-height: 1.3; margin-bottom: 24px;
}
.quiz-progress {
  height: 4px; background: var(--gray-200); border-radius: 2px;
  margin-bottom: 28px; overflow: hidden;
}
.quiz-progress-bar {
  height: 100%; background: var(--accent); border-radius: 2px;
  transition: width .4s ease;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: quizFadeIn .3s ease; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-question-text {
  font-size: 1.05rem; font-weight: 700; color: var(--dark);
  margin-bottom: 20px;
}
.quiz-option {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  background: var(--gray-100); border: 2px solid transparent;
  border-radius: var(--radius-xs); margin-bottom: 10px; cursor: pointer;
  transition: var(--transition); font-size: .92rem; color: var(--gray-700);
}
.quiz-option::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--gray-300); flex-shrink: 0;
  transition: var(--transition);
}
.quiz-option:hover { border-color: rgba(46,204,113,.3); background: rgba(46,204,113,.04); }
.quiz-option:hover::before { border-color: var(--accent); }
.quiz-option.selected { border-color: var(--accent); background: rgba(46,204,113,.06); color: var(--dark); font-weight: 600; }
.quiz-option.selected::before {
  background: var(--accent); border-color: var(--accent);
  box-shadow: inset 0 0 0 3px var(--white);
}
.quiz-option input { display: none; }
.quiz-option span { flex: 1; }
#quizResult {
  display: none; text-align: center;
}
#quizResult.active { display: block; }
.quiz-score {
  font-size: .85rem; font-weight: 700; color: var(--accent);
  margin-bottom: 16px;
}
.quiz-score span { font-size: 2rem; }
#quizResult h3 { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
#quizResult p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }

/* ── RESPONSIVE V2 ── */
@media (max-width: 900px) {
  .services-grid-v2 { grid-template-columns: 1fr; }
  .sc2-full { grid-column: auto; }
  .mst-grid { grid-template-columns: repeat(2, 1fr); }
  .mkb-cards { grid-template-columns: repeat(2, 1fr); }
  .mteam-agents { grid-template-columns: repeat(2, 1fr); }
  .mkb-header { flex-wrap: wrap; gap: 4px; }
  .mkb-line { display: none; }
  .auto-live-wrap { grid-template-columns: 1fr; }
  .auto-live-grid { grid-template-columns: 1fr; }
  .auto-live-image img { min-height: 300px; }
  .mnet { height: 220px; }
  .mnet-label, .mnet-output { font-size: .65rem; }
  .foerderung-v2-decor { display: none; }
  .pilot-popup { flex-direction: column; }
  .pilot-popup-img { width: 100%; height: 180px; }
}
@media (max-width: 480px) {
  .mst-grid { grid-template-columns: 1fr 1fr; }
  .mkb-cards { grid-template-columns: 1fr; }
  .mteam-agents { grid-template-columns: 1fr 1fr; }
  .mfl-row { flex-direction: column; gap: 4px; }
  .mfl-conn { width: 0; height: 16px; border-top: none; border-left: 2px dashed rgba(46,204,113,.25); }
  .mnet { display: none; }
  .sc2-mockup { padding: 16px; }
  .quiz-popup { padding: 32px 20px; }
}
