/* ═══════════════════════════════════════════════════════════════════════
   VoltageAI — site.css (v2-Neubau, 04.09.2026)
   EINZIGE Stylesheet-Quelle der gesamten Website. Konsolidiert die alte
   style.css + SPA-Design-Alignment zu einem System: Slate-Navy-Grund,
   Voltage-Verlauf (#5e6bf9 → #b937e2), Inter, Nav fix 72px.
   Klassennamen bewusst kompatibel zu den bestehenden Seiteninhalten
   (.page-hero, .features-grid, .card, ...), damit Inhalte 1:1 einziehen.
   ═══════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #5e6bf9;
  --violet: #b937e2;
  --violet-light: #d97ef7;
  --grad:  linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
  --grad2: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
  /* Slate-Skala (Namen historisch --zinc-*, Werte = Tailwind slate) */
  --zinc-950: #0f172a;
  --zinc-900: #1e293b;
  --zinc-800: #334155;
  --zinc-700: #475569;
  --zinc-500: #64748b;
  --zinc-400: #94a3b8;
  --zinc-300: #cbd5e1;
  --zinc-100: #f8fafc;
  --nav-h: 72px;
}

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 100 900;
  font-display: swap; src: url('/inter-latin.woff2') format('woff2'); }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--zinc-950); color: #fff; line-height: 1.6; overflow-x: hidden; }
main { display: block; }
img { max-width: 100%; }

/* ── Utilities ── */
.grad-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-btn { background: var(--grad2); color: #fff; border: none; cursor: pointer; transition: opacity .2s, transform .2s, box-shadow .2s; }
.grad-btn:hover { opacity: .95; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(185, 55, 226, .35); }
.ghost-btn { background: transparent; color: var(--zinc-300); border: 1px solid var(--zinc-700); cursor: pointer; transition: all .2s; }
.ghost-btn:hover { border-color: var(--zinc-500); color: #fff; }
.card { background: rgba(30, 41, 59, .6); border: 1px solid rgba(255, 255, 255, .05); border-radius: 1.25rem; transition: border-color .2s, transform .2s, box-shadow .2s; }
.card:hover { border-color: rgba(255, 255, 255, .1); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0, 0, 0, .4); }
.container { max-width: 1180px; margin: 0 auto; }
section { padding: 5rem 1.5rem; }
:where(a, button, input, textarea, select):focus-visible { outline: 2px solid var(--violet-light); outline-offset: 2px; border-radius: 2px; }

/* ── Navbar (fix 72px auf jeder Seite — kein Sprung) ── */
nav#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  padding: 0 1.5rem; display: flex; align-items: center;
  background: rgba(15, 23, 42, .8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .05); }
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; filter: drop-shadow(0 0 15px rgba(94, 107, 249, .5)); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { color: var(--zinc-300); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-cta { padding: .5rem 1.25rem; border-radius: 9999px; font-size: .875rem; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; box-shadow: 0 0 20px rgba(185, 55, 226, .3); transition: transform .2s, box-shadow .2s; }
.nav-cta.grad-btn:hover { opacity: 1; transform: scale(1.05); box-shadow: 0 0 30px rgba(185, 55, 226, .5); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; border-radius: 2px; }

/* ── Page-Hero ── */
.page-hero { padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem; position: relative; overflow: hidden; }
/* 04.09.2026 Perf: radial-gradient statt filter:blur(120px) — blur kostete
   in Lighthouse massiv Paint-Zeit (Speed Index 4,1s). Optisch identisch weich. */
.hero-glow { position: absolute; pointer-events: none; }
.glow-1 { width: 900px; height: 900px; top: -300px; left: calc(30% - 150px);
  background: radial-gradient(circle closest-side, rgba(94, 107, 249, .16), transparent 70%); }
.glow-2 { width: 700px; height: 700px; bottom: -230px; right: -200px;
  background: radial-gradient(circle closest-side, rgba(185, 55, 226, .12), transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .9rem; border-radius: 100px;
  background: rgba(185, 55, 226, .12); border: 1px solid rgba(185, 55, 226, .3); font-size: .8rem; font-weight: 600; color: var(--violet-light); margin-bottom: 1.5rem; }
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--violet-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1.25rem; }
.page-hero .hero-sub { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--zinc-400); line-height: 1.7; max-width: 640px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-lg { padding: .85rem 2rem; border-radius: 9999px; font-size: 1rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-image { border-radius: 1.25rem; overflow: hidden; border: 1px solid var(--zinc-800); }
.hero-image img { width: 100%; height: 350px; object-fit: cover; display: block; }

/* ── Sektionen ── */
.section-label { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #c084fc; margin-bottom: .75rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--zinc-400); /* A11y 1.4.3: zinc-500 nur 3.75:1 */ max-width: 600px; line-height: 1.7; margin-bottom: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.features-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature-card { padding: 2rem; }
.feature-icon { width: 52px; height: 52px; border-radius: .875rem; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--zinc-400); line-height: 1.7; }
.feature-link { display: inline-flex; align-items: center; gap: .3rem; color: #c084fc; font-size: .85rem; font-weight: 600; text-decoration: none; margin-top: .75rem; transition: gap .2s; }
.feature-link:hover { gap: .6rem; }
.benefits-section { background: linear-gradient(180deg, var(--zinc-950) 0%, rgba(185, 55, 226, .05) 50%, var(--zinc-950) 100%); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-check { width: 32px; height: 32px; border-radius: 50%; background: rgba(185, 55, 226, .15); border: 1px solid rgba(185, 55, 226, .3);
  display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; margin-top: .2rem; color: #c084fc; }
.benefit-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.benefit-item p { font-size: .875rem; color: var(--zinc-400); line-height: 1.6; }
.img-text-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.img-text-section.reverse { direction: rtl; }
.img-text-section.reverse > * { direction: ltr; }
.section-img { border-radius: 1.25rem; overflow: hidden; border: 1px solid var(--zinc-800); }
.section-img img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--zinc-800); border: 1px solid var(--zinc-800); border-radius: 1.25rem; overflow: hidden; }
.stat-cell { background: var(--zinc-900); padding: 1.5rem 1rem; text-align: center; }
.stat-cell .wert { font-size: 1.8rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-cell .label { font-size: .75rem; color: var(--zinc-400); font-weight: 500; margin-top: .25rem; }

/* ── CTA-Box ── */
.cta-section { text-align: center; padding: 5rem 1.5rem; }
.cta-box { background: rgba(30, 41, 59, .5); border: 1px solid rgba(255, 255, 255, .06); border-radius: 1.5rem; padding: 4rem 2rem; max-width: 700px; margin: 0 auto; }
.cta-box h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 1rem; }
.cta-box p { color: var(--zinc-400); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Kontakt-Formular (Home #contact) ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; background: rgba(30, 41, 59, .35); border: 1px solid rgba(255, 255, 255, .06); border-radius: 1.5rem; padding: 2.5rem; }
.contact-info-item { display: flex; align-items: center; gap: .75rem; color: var(--zinc-300); font-size: .9rem; margin-bottom: .9rem; }
.contact-info-item .ico { width: 34px; height: 34px; border-radius: .6rem; background: rgba(185, 55, 226, .12); border: 1px solid rgba(185, 55, 226, .3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-feld { display: flex; flex-direction: column; gap: .35rem; }
.form-feld.breit { grid-column: 1 / -1; }
.form-feld label { font-size: .8rem; font-weight: 600; color: var(--zinc-300); }
.form-feld input, .form-feld select, .form-feld textarea { background: rgba(15, 23, 42, .7); border: 1px solid var(--zinc-700); border-radius: .6rem; padding: .65rem .85rem; color: #fff; font: inherit; font-size: .9rem; }
.form-feld textarea { min-height: 110px; resize: vertical; }
.form-hinweis { grid-column: 1 / -1; font-size: .72rem; color: var(--zinc-400); text-align: center; }
.form-senden { grid-column: 1 / -1; padding: .8rem; border-radius: 9999px; font-size: .95rem; font-weight: 700; }
.form-meldung { grid-column: 1 / -1; font-size: .85rem; border-radius: .6rem; padding: .7rem 1rem; display: none; }
.form-meldung.ok { display: block; background: rgba(52, 211, 153, .12); border: 1px solid rgba(52, 211, 153, .4); color: #6ee7b7; }
.form-meldung.fehler { display: block; background: rgba(248, 113, 113, .1); border: 1px solid rgba(248, 113, 113, .4); color: #fca5a5; }

/* ── FAQ ── */
.faq-item { border: 1px solid rgba(255, 255, 255, .06); border-radius: 1rem; padding: 1.25rem 1.5rem; margin-bottom: 1rem; background: rgba(30, 41, 59, .35); }
.faq-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.faq-item p { font-size: .9rem; color: var(--zinc-400); line-height: 1.7; }

/* ── Footer (identisch auf jeder Seite) ── */
.site-footer { background: #0a0f1e; border-top: 1px solid rgba(255, 255, 255, .05); padding: 3.5rem 1.5rem 1rem; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer-col h2 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--zinc-300); margin-bottom: 1.25rem; }
.footer-col a { display: block; color: var(--zinc-400); text-decoration: none; font-size: .875rem; margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col p { color: var(--zinc-400); font-size: .875rem; line-height: 1.6; }
.footer-brand { display: inline-block; margin-bottom: 1rem; }
.footer-brand img { height: 30px; width: auto; }
.footer-contact-item { color: var(--zinc-400); font-size: .875rem; margin-bottom: .6rem; }
.footer-contact-item a { display: inline; color: inherit; text-decoration: none; margin: 0; }
.footer-social { display: flex; gap: .6rem; margin-top: .9rem; }
.social-btn { display: inline-flex !important; align-items: center; gap: .4rem; padding: .45rem .9rem; border-radius: .5rem; color: #fff !important; font-size: .78rem; font-weight: 600; text-decoration: none; margin: 0 !important; transition: opacity .2s; }
.social-btn:hover { opacity: .9; }
.social-wa { background: #25D366; }
.social-li { background: #0A66C2; }
.footer-status { display: flex; align-items: flex-start; gap: .5rem; margin-top: 1rem; padding: .75rem 1rem; background: rgba(30, 41, 59, .6); border: 1px solid var(--zinc-800); border-radius: .75rem; }
.footer-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--zinc-500); margin-top: .4rem; flex-shrink: 0; }
.footer-status-dot.online { background: #34d399; box-shadow: 0 0 6px rgba(52, 211, 153, .6); }
.footer-status-text { font-size: .8rem; color: var(--zinc-400); }
.footer-status-text strong { color: #e2e8f0; display: block; font-size: .82rem; }
.footer-trust { max-width: 1180px; margin: 2.5rem auto 0; display: flex; justify-content: center; }
.trustpilot-widget { min-height: 44px; width: 100%; display: flex; justify-content: center; }
.tp-knopf { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.15rem; border-radius: 9999px;
  background: rgba(30, 41, 59, .6); border: 1px solid var(--zinc-800); color: var(--zinc-300); text-decoration: none;
  font-size: .875rem; font-weight: 600; transition: border-color .2s, color .2s, background .2s; }
.tp-knopf:hover { border-color: var(--zinc-500); color: #fff; background: rgba(51, 65, 85, .7); }
.tp-knopf svg { flex-shrink: 0; }
.footer-bottom { max-width: 1180px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom span { font-size: .82rem; color: var(--zinc-400); } /* A11y: zinc-700 war 2.5:1 */
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: var(--zinc-400); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--zinc-300); }

/* ── Scroll-Animation ── */
.js .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.js .fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ── Legal-Seiten ── */
.legal-content { max-width: 780px; margin: 0 auto; padding: calc(var(--nav-h) + 2.5rem) 1.5rem 4rem; }
.legal-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; margin-bottom: .75rem;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.legal-meta { font-size: .85rem; color: var(--zinc-400); margin-bottom: 2.5rem; }
.legal-divider { border: none; border-top: 1px solid var(--zinc-800); margin: 1.5rem 0; }
.legal-summary { background: rgba(30, 41, 59, .5); border: 1px solid var(--zinc-800); border-left: 3px solid var(--violet);
  border-radius: 0 .75rem .75rem 0; padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; font-size: .9rem; color: var(--zinc-400); line-height: 1.7; }
.legal-summary strong { color: var(--zinc-300); }
.legal-section { margin-bottom: 2.5rem; }
.legal-section-title { font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: .5rem; color: #fff; }
.legal-section-title .num { color: var(--violet); font-weight: 800; }
.legal-section h3 { font-size: .95rem; font-weight: 600; color: var(--zinc-300); margin: 1.25rem 0 .5rem; }
.legal-section p { font-size: .9rem; color: var(--zinc-400); line-height: 1.8; margin-bottom: .75rem; }
.legal-section ul { list-style: none; padding: 0; margin-bottom: 1rem; }
.legal-section ul li { font-size: .9rem; color: var(--zinc-400); line-height: 1.8; padding: .3rem 0 .3rem 1.5rem; position: relative; }
.legal-section ul li::before { content: '–'; position: absolute; left: .4rem; color: var(--violet); font-weight: 700; }
.legal-section a { color: #c084fc; text-decoration: underline; transition: color .2s; }
.legal-section a:hover { color: #fff; }
.legal-section strong { color: var(--zinc-300); }

/* ── Responsive (Umschaltpunkt 767px = Tailwind md, site-weit einheitlich) ── */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--zinc-950); border-bottom: 1px solid rgba(255, 255, 255, .05); padding: 1.5rem; gap: 1.25rem; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .features-grid, .features-grid-4, .benefits-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-split, .img-text-section, .contact-wrap, .form-grid { grid-template-columns: 1fr; }
  .img-text-section.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid, .features-grid, .features-grid-4, .stats-grid, .benefits-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2rem; }
}

/* ── Förderseite: Förder-Check, Faktentabelle, Lead-Formular ──
   (04.09.2026 aus dem frueheren Seiten-Style-Block hierher zentralisiert) */
/* Seitenspezifisch — Foerder-Check + Faktentabelle */
    .fact-table{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:.95rem}
    .fact-table th,.fact-table td{text-align:left;padding:.85rem 1rem;border-bottom:1px solid var(--zinc-800)}
    .fact-table th{color:#a78bfa;font-size:.75rem;text-transform:uppercase;letter-spacing:.05em;font-weight:700}
    .fact-table td{color:var(--zinc-300)}
    .fact-table td strong{color:#fff}
    .fact-table tr:last-child td{border-bottom:none}
    .check-card{background:var(--zinc-900);border:1px solid var(--zinc-800);border-radius:1.25rem;padding:2rem;max-width:780px;margin:0 auto}
    .check-q{display:flex;align-items:flex-start;gap:.9rem;padding:.9rem 0;border-bottom:1px solid var(--zinc-800);cursor:pointer}
    .check-q:last-of-type{border-bottom:none}
    .check-q input{margin-top:.25rem;width:18px;height:18px;accent-color:#a78bfa;cursor:pointer;flex-shrink:0}
    .check-q label{cursor:pointer;color:var(--zinc-300);font-size:.95rem;line-height:1.55}
    .check-q label b{color:#fff}
    .check-result{margin-top:1.5rem;padding:1.25rem 1.5rem;border-radius:.9rem;font-size:.95rem;display:none}
    .check-result.show{display:block}
    .check-result.good{background:rgba(16,185,129,.08);border:1px solid rgba(16,185,129,.35);color:#6ee7b7}
    .check-result.mid{background:rgba(245,158,11,.08);border:1px solid rgba(245,158,11,.35);color:#fcd34d}
    .check-result.bad{background:rgba(239,68,68,.08);border:1px solid rgba(239,68,68,.35);color:#fca5a5}
    .check-result strong{display:block;margin-bottom:.35rem;font-size:1.05rem}
    .lead-form{display:grid;grid-template-columns:1fr 1fr;gap:1rem;max-width:780px;margin:0 auto}
    .lead-form .full{grid-column:1 / -1}
    .lead-form label{display:block;font-size:.8rem;color:var(--zinc-400);margin-bottom:.35rem;font-weight:600}
    .lead-form input,.lead-form textarea{width:100%;background:var(--zinc-900);border:1px solid var(--zinc-800);border-radius:.6rem;padding:.8rem 1rem;color:#fff;font-family:inherit;font-size:.95rem}
    .lead-form input:focus,.lead-form textarea:focus{outline:none;border-color:#a78bfa}
    .lead-form textarea{resize:vertical;min-height:110px}
    .form-note{font-size:.78rem;color:var(--zinc-400);line-height:1.6}
    .form-msg{padding:1rem 1.25rem;border-radius:.75rem;font-size:.92rem;margin-top:.5rem}
    .form-msg.ok{background:rgba(16,185,129,.1);border:1px solid rgba(16,185,129,.4);color:#6ee7b7}
    .form-msg.err{background:rgba(239,68,68,.1);border:1px solid rgba(239,68,68,.4);color:#fca5a5}
    .two-col{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
    .mini-card{background:var(--zinc-900);border:1px solid var(--zinc-800);border-radius:1rem;padding:1.5rem}
    .mini-card h3{font-size:1.05rem;color:#fff;margin-bottom:.75rem}
    .mini-card ul{list-style:none;padding:0;margin:0}
    .mini-card li{padding:.4rem 0 .4rem 1.5rem;position:relative;color:var(--zinc-300);font-size:.92rem;line-height:1.55}
    .mini-card li::before{content:"▸";position:absolute;left:0;color:#a78bfa}
    .mini-card.warn{border-color:rgba(239,68,68,.3)}
    .mini-card.warn li::before{content:"✕";color:#f87171}
    .mini-card.ok{border-color:rgba(16,185,129,.3)}
    .mini-card.ok li::before{content:"✓";color:#34d399}
    .steps{counter-reset:s;list-style:none;padding:0;max-width:820px}
    .steps li{counter-increment:s;position:relative;padding:.9rem 0 .9rem 3.25rem;color:var(--zinc-300);border-bottom:1px solid var(--zinc-800);font-size:.95rem;line-height:1.6}
    .steps li:last-child{border-bottom:none}
    .steps li::before{content:counter(s);position:absolute;left:0;top:.85rem;width:2.1rem;height:2.1rem;border-radius:50%;background:var(--grad2);color:#fff;font-weight:700;font-size:.85rem;display:flex;align-items:center;justify-content:center}
    .steps li strong{color:#fff}
    .disclaimer{background:rgba(245,158,11,.05);border:1px solid rgba(245,158,11,.25);border-radius:1rem;padding:1.5rem;color:#d4b483;font-size:.86rem;line-height:1.7;margin-top:2.5rem}
    .disclaimer strong{color:#fcd34d}
    .disclaimer a{color:#a78bfa}
    .deadline-bar{background:var(--grad2);border-radius:1rem;padding:1.1rem 1.5rem;display:flex;align-items:center;gap:1rem;flex-wrap:wrap;justify-content:center;text-align:center;margin-bottom:2rem}
    .deadline-bar strong{color:#fff;font-size:1.02rem}
    .deadline-bar span{color:rgba(255,255,255,.85);font-size:.9rem}
    @media(max-width:760px){.two-col,.lead-form{grid-template-columns:1fr}}

/* Bild-Kacheln (ersetzen die frueheren Emoji-Platzhalter) */
.foto-kachel { width: 100%; height: 350px; object-fit: cover; border-radius: 1.25rem; border: 1px solid var(--zinc-800); }

/* ── Accessibility (Audit 04.09.2026) ── */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--violet);
  color: #fff; padding: .6rem 1.2rem; border-radius: 0 0 .6rem 0; font-weight: 700; text-decoration: none; }
.skip-link:focus { left: 0; }
@media (max-width: 767px) {
  .nav-links.open a { display: block; padding: .6rem 0; }   /* Touch-Ziel >= 24px (WCAG 2.5.8) */
  .footer-col a { padding: .3rem 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
