*, *::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; }
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(157,232,37,.6); } 50% { opacity:.8; box-shadow:0 0 0 6px rgba(157,232,37,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); }
.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); }

.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; }
.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(--accent); border-radius:2px; margin:12px 0 20px; }

/* ── Liquid Glass ── */
.liquid-glass {
  background:none;
  border:none;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
.liquid-glass::before { display:none; }

/* ════════════════════════════════════════════════
   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(157,232,37,.45); 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(--accent); color:#1a1a2e; display:flex; align-items:center; justify-content:center; flex-shrink:0; }

/* Logo-Banner (Marquee) */
.marquee-track { display:flex; width:max-content; animation:marquee 22s 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:#9de825; 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(157,232,37,.12); border-color:rgba(157,232,37,.4); color:#9de825; }
.pd-check { position:absolute; top:-5px; right:-5px; width:18px; height:18px; border-radius:50%; background:#9de825; color:#1a1a2e; display:flex; align-items:center; justify-content:center; opacity:0; transform:scale(0); transition:all .3s ease; pointer-events:none; }
.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(157,232,37,.8); }
.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(157,232,37,.35); }
.pd-shimmer { position:absolute; inset:0; background:linear-gradient(90deg,transparent,#9de825 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(157,232,37,.5); }

/* 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,.38); 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; }
}
