﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #2f52a0; --primary-dark: #0d1b3e; --primary-mid: #1e3a7a;
  --accent: #9de825; --accent-dark: #7ab81a; --secondary: #434549;
  --gray-light: #f8f9fa; --gray-mid: #e9ecef; --white: #ffffff;
  --text-dark: #1a1a2e; --text-mid: #4a5568; --text-light: #718096;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--secondary); line-height: 1.6; overflow-x: hidden; }

/* Bilder mit width/height-Attributen (CLS-Schutz) behalten ihr Seitenverhältnis.
   Verhindert Verzerrung, wenn die Breite per CSS auf 100% skaliert wird. */
img { height: auto; }

@keyframes fadeInUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes float    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes pulse-dot { 0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(255,255,255,.6); } 50% { opacity:.8; box-shadow:0 0 0 6px rgba(255,255,255,0); } }
@keyframes shimmer  { 0% { transform:translateX(-100%); } 100% { transform:translateX(100%); } }
@keyframes marquee  { from { transform:translateX(0); } to { transform:translateX(-50%); } }

.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--accent); color:var(--text-dark);
  font-weight:600; font-size:1rem; padding:13px 26px;
  border-radius:8px; border:none; cursor:pointer; text-decoration:none;
  transition:background .2s, transform .2s, box-shadow .2s; font-family:inherit;
}
.btn-primary:hover { background:var(--accent-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(157,232,37,.3); }
.hero-ctas .btn-primary { background:transparent; border:1px solid #ffffff; color:#ffffff; }
.hero-ctas .btn-primary:hover { background:rgba(255,255,255,.1); border-color:#ffffff; box-shadow:none; }
.cta-bar .btn-primary { background:var(--primary); color:#ffffff; }
.cta-bar .btn-primary:hover { background:var(--primary-mid); box-shadow:0 8px 24px rgba(47,82,160,.35); }
.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:white; font-weight:600; font-size:1rem;
  padding:12px 26px; border-radius:8px; border:2px solid rgba(255,255,255,.35);
  cursor:pointer; text-decoration:none; transition:all .2s; font-family:inherit;
}
.btn-ghost:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.7); }
.btn-ghost[data-module-toggle] { background:#ffffff; color:var(--primary); border-color:#ffffff; }
.btn-ghost[data-module-toggle]:hover { background:rgba(255,255,255,.85); border-color:#ffffff; }

.container { max-width:1160px; margin:0 auto; padding:0 24px; }
section { padding:88px 0; }

.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.hero-text { align-self:start; padding-top:32px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.grid-auto { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:20px; }

@media (max-width:900px) {
  .grid-2 { grid-template-columns:1fr; gap:36px; }
  .grid-4 { grid-template-columns:1fr 1fr; }
  .hero-screen { display:none !important; }
  .hero-text { text-align:center; }
  .hero-ctas { justify-content:center !important; }
  .hero-trust { justify-content:center !important; }
}
@media (max-width:600px) {
  section { padding:60px 0; }
  .grid-3 { grid-template-columns:1fr; }
  .grid-4 { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr !important; }
  .footer-inner { flex-direction:column; gap:12px !important; text-align:center; }
}

.reveal { opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal.show { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-24px); transition:opacity .6s ease, transform .6s ease; }
.reveal-left.show { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal-right.show { opacity:1; transform:translateX(0); }
.card-hover { transition:transform .25s ease, box-shadow .25s ease; cursor:default; }
.card-hover:hover { transform:translateY(-5px); }

.form-input { width:100%; padding:12px 16px; border-radius:8px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.07); color:white; font-size:.95rem; outline:none; font-family:inherit; transition:border-color .2s, background .2s; }
.form-input::placeholder { color:rgba(255,255,255,.35); }
.form-input:focus { border-color:var(--accent); background:rgba(255,255,255,.1); }
.form-label { display:block; margin-bottom:6px; font-size:.85rem; font-weight:500; color:rgba(255,255,255,.65); }
.form-group { margin-bottom:16px; }
.divider-accent { width:48px; height:4px; background:var(--primary); border-radius:2px; margin:12px 0 20px; }
.divider-accent--accent { background:#fff; }

/* ════════════════════════════════════════════════
   ZUSÄTZE FÜR DIE STATISCHE VARIANTE
   (ersetzt die früheren React-Inline-Logiken durch CSS)
   ════════════════════════════════════════════════ */

/* Nav */
#nav { position:fixed; top:0; left:0; right:0; z-index:1000; padding:14px 0; background:transparent; transition:background .3s ease, backdrop-filter .3s ease, border-color .3s ease; border-bottom:1px solid transparent; }
#nav.solid { background:rgba(13,27,62,.96); backdrop-filter:blur(14px); border-bottom:1px solid rgba(255,255,255,.08); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; }

/* Karten-Hover (Schatten) */
.prob-card { background:white; border-radius:12px; padding:26px 22px; box-shadow:0 2px 16px rgba(0,0,0,.06); border:1px solid rgba(0,0,0,.05); transition:transform .25s ease, box-shadow .25s ease; }
.prob-card:hover { box-shadow:0 10px 32px rgba(47,82,160,.14); transform:translateY(-5px); }
.benefit-card { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.11); border-radius:16px; padding:30px 24px; transition:background .25s, border-color .25s, transform .25s, box-shadow .25s; }
.benefit-card:hover { background:rgba(255,255,255,.13); border-color:rgba(255,255,255,.3); transform:translateY(-5px); }
.shot-card { border-radius:12px; overflow:hidden; box-shadow:0 8px 28px rgba(0,0,0,.09); border:1px solid rgba(0,0,0,.06); transition:transform .3s, box-shadow .3s; }
.shot-card:hover { box-shadow:0 18px 44px rgba(47,82,160,.16); transform:translateY(-5px); }

/* Feature-Liste */
.feature-row { display:flex; align-items:center; gap:12px; padding:11px 0; border-bottom:1px solid var(--gray-mid); }
.feature-row > span:last-child { font-size:.93rem; font-weight:500; color:var(--secondary); }
.feat-tick { width:22px; height:22px; border-radius:50%; background:var(--primary); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; }

/* Logo-Banner (Marquee) */
.marquee-track { display:flex; width:max-content; animation:marquee 55s linear infinite; }
.marquee-track:hover { animation-play-state:paused; }
.marquee-logo { height:44px; max-width:160px; object-fit:contain; filter:grayscale(100%) opacity(.45); transition:filter .3s ease; }
.marquee-logo:hover { filter:grayscale(0%) opacity(1); }

/* Prozess-Diagramm */
.pd-wrap { margin-top:44px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:22px 28px 18px; backdrop-filter:blur(12px); animation:fadeInUp .7s ease .6s both; }
.pd-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.pd-title { color:rgba(255,255,255,.45); font-size:.75rem; font-weight:600; letter-spacing:.05em; }
.pd-live { display:flex; align-items:center; gap:6px; }
.pd-dot { width:7px; height:7px; border-radius:50%; background:#fff; animation:pulse-dot 2s ease infinite; }
.pd-live span { color:rgba(255,255,255,.35); font-size:.7rem; font-weight:600; letter-spacing:.06em; }
.pd-track { display:flex; align-items:center; }
.pd-step { display:flex; flex-direction:column; align-items:center; gap:8px; flex-shrink:0; }
.pd-box { position:relative; width:56px; height:56px; border-radius:14px; display:flex; align-items:center; justify-content:center; border:2px solid rgba(255,255,255,.1); background:rgba(255,255,255,.05); color:rgba(255,255,255,.25); transition:all .45s ease; }
.pd-step.active .pd-box { background:rgba(47,82,160,.7); border-color:#2f52a0; color:#fff; box-shadow:0 0 22px rgba(47,82,160,.55),0 0 44px rgba(47,82,160,.2); }
.pd-step.done .pd-box { background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.55); color:#fff; box-shadow:0 0 16px rgba(255,255,255,.4); }
.pd-check { position:absolute; top:-5px; right:-5px; width:18px; height:18px; border-radius:50%; background:#fff; color:#2f52a0; display:flex; align-items:center; justify-content:center; opacity:0; transform:scale(0); transition:all .3s ease; pointer-events:none; box-shadow:0 0 10px rgba(255,255,255,.7); }
.pd-step.done .pd-check { opacity:1; transform:scale(1); }
.pd-label { font-size:.7rem; font-weight:600; text-align:center; color:rgba(255,255,255,.3); width:78px; line-height:1.3; transition:color .45s ease; }
.pd-step.active .pd-label { color:#fff; }
.pd-step.done .pd-label { color:rgba(255,255,255,.85); }
.pd-conn { flex:1; display:flex; align-items:center; margin-bottom:28px; }
.pd-conn-line { flex:1; height:2px; position:relative; overflow:hidden; border-radius:1px; background:rgba(255,255,255,.1); transition:background .45s ease; }
.pd-conn.done .pd-conn-line { background:rgba(255,255,255,.5); }
.pd-shimmer { position:absolute; inset:0; background:linear-gradient(90deg,transparent,#fff 50%,transparent); opacity:0; }
.pd-conn.active .pd-shimmer { opacity:1; animation:shimmer 1.2s ease-in-out infinite; }
.pd-arrow { width:0; height:0; flex-shrink:0; border-top:5px solid transparent; border-bottom:5px solid transparent; border-left:6px solid rgba(255,255,255,.12); transition:border-left-color .45s ease; }
.pd-conn.done .pd-arrow { border-left-color:rgba(255,255,255,.6); }

/* Impressum-Modal */
.modal-overlay { position:fixed; inset:0; z-index:2000; background:rgba(7,16,31,.75); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; padding:24px; animation:fadeIn .2s ease; }
.modal-overlay[hidden] { display:none; }
.modal-box { background:white; border-radius:16px; padding:40px 44px; max-width:600px; width:100%; max-height:85vh; overflow-y:auto; box-shadow:0 32px 80px rgba(0,0,0,.35); animation:fadeInUp .25s ease; position:relative; }
.modal-close { position:absolute; top:16px; right:16px; background:var(--gray-light); border:none; border-radius:8px; width:32px; height:32px; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--secondary); }
.link-muted { color:rgba(255,255,255,.55); text-decoration:none; font-size:.78rem; transition:color .2s; background:none; border:none; cursor:pointer; font-family:inherit; padding:0; }
.link-muted:hover { color:rgba(255,255,255,.75); }

/* ════════════════════════════════════════════════
   RESPONSIVE FIXES
   ════════════════════════════════════════════════ */

/* Hero-Kennzahlen umbrechen auf kleinen Geräten */
.hero-trust { flex-wrap:wrap; }

/* Prozess-Diagramm: mittlere Mobile-Größen (480–600px) */
@media (min-width:480px) and (max-width:600px) {
  .pd-wrap { padding:18px 16px 14px; }
  .pd-box { width:42px; height:42px; border-radius:11px; }
  .pd-label { font-size:.62rem; width:60px; }
  .pd-check { width:14px; height:14px; top:-4px; right:-4px; }
}

/* Prozess-Diagramm: sehr kleine Screens – kompakt statt ausblenden */
@media (max-width:479px) {
  .pd-wrap { padding:14px 12px 12px; margin-top:32px; }
  .pd-head { margin-bottom:12px; }
  .pd-title { font-size:.66rem; }
  .pd-box { width:32px; height:32px; border-radius:9px; border-width:1.5px; }
  .pd-box svg { width:15px !important; height:15px !important; }
  .pd-label { font-size:.5rem; width:46px; line-height:1.25; }
  .pd-check { width:11px; height:11px; top:-3px; right:-3px; }
  .pd-conn { margin-bottom:22px; }
}

/* Impressum-Modal: kompakteres Padding auf Mobile */
@media (max-width:600px) {
  .modal-box { padding:28px 22px; }
}

/* Nav-CTA: enger auf sehr kleinen Screens */
@media (max-width:400px) {
  #nav .btn-primary { padding:8px 12px; font-size:.82rem; }
}

/* ══════════════════════════════════════════════════════
   SEMANTIC LAYOUT CLASSES
   Ersetzt pervasive inline-style="…" Attribute durch
   wiederverwendbare CSS-Klassen. Alle Backgrounds,
   Hero-Layout, Eyebrows, Karten-Kinder, Stats-Row,
   CTA-Bar und Formular-Sektion sind jetzt wartbar.
   ══════════════════════════════════════════════════════ */

/* ── Backgrounds ───────────────────────────────────── */
.bg-hero  { background: linear-gradient(135deg, #0d1b3e 0%, #1e3a7a 55%, #2f52a0 100%); }
.bg-dark  { background: linear-gradient(135deg, #2f52a0, #1e3a7a); }
.bg-form  { background: linear-gradient(135deg, #0d1b3e 0%, #192e5b 100%); }
.bg-light { background: var(--gray-light); }
.bg-white { background: white; }

/* ── Section Layout ────────────────────────────────── */
.section-hero  { min-height: 75vh; display: flex; align-items: center; padding-top: 80px; }
.section-rel   { position: relative; overflow: hidden; }
.section-inner { width: 100%; position: relative; z-index: 1; }

/* ── Decorative Blobs ──────────────────────────────── */
.blob        { position: absolute; border-radius: 50%; pointer-events: none; }
.blob-hero-r { top: -15%; right: -5%;  width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 65%); }
.blob-hero-l { bottom: 5%; left: -8%;  width: 400px; height: 400px; background: radial-gradient(circle, rgba(30,58,122,.5) 0%, transparent 65%); }
.blob-form-r { top: -25%; right: -8%;  width: 520px; height: 520px; background: radial-gradient(circle, rgba(47,82,160,.35) 0%, transparent 65%); }

/* ── Hero ──────────────────────────────────────────── */
.hero-ctas   { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust  { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-screen { display: flex; justify-content: center; align-items: flex-end; }
.hero-title  { font-size: clamp(2.1rem, 4vw, 3.3rem); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 18px; }
.hero-lead   { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 460px; line-height: 1.75; margin-bottom: 32px; }
.hero-image  { width: 140%; max-width: 1260px; object-fit: contain; filter: drop-shadow(0 24px 48px rgba(0,0,0,.45)); animation: float 4s ease-in-out infinite, fadeIn 1s ease .5s both; }
.hero-scroll-label { position: absolute; bottom: 0; left: 0; right: 0; text-align: center; font-size: .75rem; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; padding: 12px 0 18px; }
.trust-val   { color: var(--accent); font-weight: 700; font-size: 1rem; }
.trust-lbl   { color: rgba(255,255,255,.45); font-size: .78rem; margin-top: 2px; }

/* ── Eyebrow Labels ────────────────────────────────── */
.eyebrow           { display: inline-flex; align-items: center; gap: 8px; border-radius: 100px; padding: 5px 14px; margin-bottom: 22px; }
.eyebrow--accent   { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); }
.eyebrow--blue     { background: rgba(47,82,160,.08);  border: 1px solid rgba(47,82,160,.18); }
.eyebrow-icon      { display: inline-block; width: 16px; height: 16px; flex-shrink: 0; }
.eyebrow-text      { font-size: .8rem; font-weight: 600; letter-spacing: .06em; }
.eyebrow-text--accent { color: #fff; }
.eyebrow-text--blue   { color: var(--primary); }

/* ── Logo Banner ───────────────────────────────────── */
.logo-banner    { background: white; border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); padding: 28px 0; overflow: hidden; }
.marquee-wrap   { overflow: hidden; position: relative; }
.marquee-fade-l { position: absolute; left: 0;  top: 0; bottom: 0; width: 120px; z-index: 1; background: linear-gradient(90deg,  white, transparent); pointer-events: none; }
.marquee-fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 120px; z-index: 1; background: linear-gradient(270deg, white, transparent); pointer-events: none; }
.marquee-set    { display: flex; }
.marquee-item   { display: flex; align-items: center; justify-content: center; padding: 0 48px; flex-shrink: 0; }

/* ── Section Text ──────────────────────────────────── */
.text-center           { text-align: center; }
.h-section             { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.h-section--primary    { color: var(--primary); }
.h-section--white      { color: white; }
.section-lead          { margin-top: 16px; font-size: 1rem; }
.section-lead--mid     { color: var(--text-mid); }
.section-lead--white   { color: rgba(255,255,255,.6); }
.text-center .section-lead { margin-left: auto; margin-right: auto; }
.img-shadow            { width: 100%; filter: drop-shadow(0 16px 40px rgba(0,0,0,.18)); }

/* ── Problem Cards (Kinder via Selektor) ───────────── */
.prob-card .card-icon { color: var(--primary); margin-bottom: 12px; }
.prob-card h3         { font-size: .95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.prob-card p          { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }

/* ── Workflow-Tag ──────────────────────────────────── */
.workflow-tag   { display: inline-flex; align-items: center; gap: 7px; border-radius: 100px; padding: 4px 13px; margin-bottom: 14px; background: rgba(47,82,160,.08); border: 1px solid rgba(47,82,160,.18); }
.workflow-title { font-size: 1.35rem; color: var(--text-dark); margin-bottom: 10px; font-weight: 700; }
.workflow-lead  { font-size: .93rem; color: var(--text-mid); line-height: 1.75; }

/* ── Benefit Cards (Kinder via Selektor) ───────────── */
.benefit-card .card-icon { color: #fff; margin-bottom: 14px; }
.benefit-card h3         { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 8px; }
.benefit-card p          { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── Stats Row ─────────────────────────────────────── */
.stats-row { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; padding: 32px 0 0; border-top: 1px solid rgba(255,255,255,.1); }
.stat-item { text-align: center; }
.stat-val  { font-size: 2.2rem; font-weight: 800; color: #fff; }
.stat-lbl  { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ── Screenshot ────────────────────────────────────── */
.screenshot-img { width: 100%; max-width: 940px; object-fit: contain; filter: drop-shadow(0 16px 40px rgba(0,0,0,.12)); }

/* ── CTA Bar ───────────────────────────────────────── */
.cta-bar       { background: white; padding: 36px 0; border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.cta-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.cta-bar-title { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.cta-bar-sub   { font-size: .88rem; color: var(--text-mid); }

/* ── Form Section ──────────────────────────────────── */
.form-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.form-title  { font-size: clamp(1.7rem, 3vw, 2.3rem); color: white; line-height: 1.2; margin-bottom: 14px; font-weight: 800; }
.form-lead   { font-size: .97rem; color: rgba(255,255,255,.62); line-height: 1.75; margin-bottom: 28px; }
.check-item  { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.check-icon  { color: #fff; }
.check-text  { color: rgba(255,255,255,.78); font-size: .93rem; }
.liquid-glass { padding: 36px 32px; }
#formular { display: none !important; }
