        :root {
            --primary: #336699;
            --primary-dark: #003757;
            --accent: #5b9bd5;
            /* K1: Aliase, damit gemeinsam genutzte Komponenten (footer.css) die
               global erwarteten Tokennamen finden. var() loest bei Nutzung auf,
               folgt also automatisch dem Dark-Mode-Wert von --primary/--accent. */
            --primary-color: var(--primary);
            --accent-color: var(--accent);
            --bg: #eef2f6;
            --bg-2: #f6f9fc;
            --surface: #ffffff;
            --text: #243244;
            --text-muted: #647082;
            --border: #dbe3ec;
            --shadow: 0 20px 55px -25px rgba(20, 50, 80, 0.4);
            --transition: all 0.3s ease;
            --secondary-color: #d2dee4;
            --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }
        @media (prefers-color-scheme: dark) {
            :root {
                --primary: #5b9bd5;
                /* Button-Grund fuer weissen Text (.btn-primary): --primary ist
                   im Dark Mode zu hell (weiss 2,96:1); dunklerer Ton -> ~5,3:1.
                   --primary bleibt als Akzent unveraendert; Light Mode faellt
                   ohne Token auf --primary zurueck. */
                --btn-primary-bg: #2f6cab;
                --primary-dark: #4d8dff;
                --accent: #7cb3e8;
                --bg: #0d1521;
                --bg-2: #111c2a;
                --surface: #16212f;
                --text: #e8eef5;
                --text-muted: #9fadbd;
                --border: #28384b;
                --shadow: 0 20px 55px -25px rgba(0, 0, 0, 0.75);
                --secondary-color: #5b9bd5;
            }
        }
        * { box-sizing: border-box; }
        /* [hidden] muss display-Regeln schlagen: sonst zeigen .btn[hidden]
           (inline-flex) im Wizard trotz hidden-Attribut -> Nav-Buttons
           ueberlappen + Overflow. */
        [hidden] { display: none !important; }
        html, body { margin: 0; min-height: 100%; }
        /* Tastatur-Fokus sichtbar (WCAG 2.4.7) – nur bei Tastatur, nicht Maus */
        :focus-visible {
            outline: 2px solid var(--primary, #336699) !important;
            outline-offset: 2px !important;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text);
            background: radial-gradient(1100px 520px at 80% -10%, var(--bg-2), var(--bg) 65%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            line-height: 1.6;
        }
        a { color: inherit; text-decoration: none; }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 32px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        .nav img { height: 34px; width: auto; }
        .nav-brand { display: inline-flex; align-items: center; }
        .nav-links { display: flex; align-items: center; gap: 26px; }
        .nav-links > a:not(.btn) {
            font-size: 15px; font-weight: 600; color: var(--text-muted);
            transition: var(--transition);
        }
        .nav-links > a:not(.btn):hover { color: var(--primary); }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 22px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .btn-primary { background: var(--btn-primary-bg, var(--primary)); color: #fff; }
        .btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
        .btn-ghost { border-color: var(--border); color: var(--text); }
        .btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 64px 32px 56px;
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-text { min-width: 0; }
        .hero .badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 999px;
            background: color-mix(in srgb, var(--primary) 14%, transparent);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 22px;
        }
        .hero h1 {
            font-size: clamp(32px, 5vw, 52px);
            line-height: 1.12;
            margin: 0 0 18px;
            color: var(--text);
            letter-spacing: -0.5px;
        }
        .hero h1 span { color: var(--primary); }
        .hero p {
            font-size: clamp(16px, 2.2vw, 20px);
            color: var(--text-muted);
            margin: 0 0 32px;
            max-width: 560px;
        }
        .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
        .hero-trust {
            display: flex; flex-wrap: wrap; gap: 18px 24px;
            margin-top: 28px; color: var(--text-muted); font-size: 14px; font-weight: 500;
        }
        .hero-trust i { color: var(--primary); margin-right: 7px; }
        .hero-visual { min-width: 0; }
        .hero-visual img { width: 100%; height: auto; display: block; }

        .features {
            max-width: 1100px;
            margin: 0 auto;
            padding: 30px 24px 70px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 22px;
            /* body ist flex-column: ohne min-width:0 faellt das Grid als
               Flex-Item auf seine min-content-Breite (auto-fit rechnet dann
               4 Spalten = 1074px) und die Seite scrollt auf Phones seitlich.
               Gleiches Muster wie .hero-text/.showcase-text. */
            min-width: 0;
            width: 100%;
            box-sizing: border-box;
        }
        .feature {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .feature:hover { transform: translateY(-4px); }
        .feature .icon {
            width: 50px; height: 50px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px; color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            margin-bottom: 16px;
        }
        .feature h3 { margin: 0 0 8px; font-size: 18px; color: var(--text); }
        .feature p { margin: 0; color: var(--text-muted); font-size: 15px; }

        .btn-light { background: #fff; color: var(--primary-dark); }
        .btn-light:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(0,0,0,0.45); }

        /* ---- Showcase ---- */
        .showcase {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px 24px 40px;
            display: flex;
            flex-direction: column;
            gap: 70px;
        }
        .showcase-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .showcase-row.reverse .showcase-media { order: 2; }
        .showcase-media img {
            width: 100%; height: auto; display: block;
            border-radius: 16px;
        }
        .showcase-text { min-width: 0; }
        .pill {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 7px 14px; border-radius: 999px;
            background: color-mix(in srgb, var(--primary) 13%, transparent);
            color: var(--primary); font-size: 13px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.4px;
            margin-bottom: 14px;
        }
        .showcase-text h2 {
            font-size: clamp(24px, 3.4vw, 34px);
            line-height: 1.18; margin: 0 0 14px; color: var(--text);
            letter-spacing: -0.4px;
        }
        .showcase-text p { margin: 0 0 18px; color: var(--text-muted); font-size: 16px; }
        .check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
        .check-list li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 15px; }
        .check-list i {
            color: #16a34a; font-size: 13px;
            background: color-mix(in srgb, #16a34a 16%, transparent);
            width: 22px; height: 22px; border-radius: 50%;
            display: inline-flex; align-items: center; justify-content: center;
            flex: 0 0 auto;
        }

        /* ---- CTA ---- */
        .cta { padding: 20px 24px 80px; }
        .cta-inner {
            max-width: 1100px; margin: 0 auto;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 22px; padding: 54px 40px; text-align: center; color: #fff;
            box-shadow: var(--shadow);
        }
        .cta-inner h2 { font-size: clamp(24px, 3.6vw, 34px); margin: 0 0 12px; letter-spacing: -0.4px; }
        .cta-inner p { margin: 0 auto 26px; max-width: 560px; font-size: 17px; opacity: 0.92; }

        @media (max-width: 900px) {
            .hero { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 36px; }
            .hero-visual { order: -1; max-width: 560px; }
            .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 22px; }
            .showcase-row.reverse .showcase-media { order: 0; }
            .showcase-media { max-width: 560px; }
        }

        @media (max-width: 600px) {
            .nav { padding: 16px 20px; }
            .nav-links { gap: 16px; }
            .nav-links > a:not(.btn) { display: none; }
            .hero { padding: 40px 20px 30px; }
            .cta-inner { padding: 40px 24px; }
        }

/* Logo: helle Variante im Dark Mode */
.brand-logo-dark { display: none; }
@media (prefers-color-scheme: dark) {
    .brand-logo-light { display: none; }
    .brand-logo-dark { display: inline-block; }
}

/* ============================================================================
   "Jetzt anfragen"-Assistent (Landing-Wizard). Nutzt dieselben Tokens wie der
   Rest der Landingpage -> Dark-Mode automatisch ueber die :root-Umschaltung.
   ============================================================================ */
.cta-sub { margin: 16px 0 0; font-size: 14px; opacity: 0.9; }
.cta-sub a { text-decoration: underline; font-weight: 600; }

.inquiry { padding: 8px 24px 84px; }
.inquiry-card {
    max-width: 760px; margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 40px 40px 32px;
    box-shadow: var(--shadow);
}
.inquiry-head { text-align: center; margin-bottom: 26px; }
.inquiry-head .pill { margin-bottom: 14px; }
.inquiry-head h2 {
    font-size: clamp(22px, 3.4vw, 30px); margin: 0 0 8px;
    color: var(--text); letter-spacing: -0.3px;
}
.inquiry-head > p { margin: 0 auto; max-width: 480px; color: var(--text-muted); font-size: 15px; }

/* Schritt-Anzeige */
.wiz-steps {
    list-style: none; margin: 24px 0 0; padding: 0;
    display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 22px;
}
.wiz-steps li {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 14px; font-weight: 600; color: var(--text-muted);
}
.wiz-dot {
    width: 26px; height: 26px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--text-muted) 18%, transparent);
    color: var(--text-muted); font-size: 13px; font-weight: 700;
    transition: var(--transition);
}
.wiz-steps li.is-active { color: var(--primary); }
.wiz-steps li.is-active .wiz-dot { background: var(--primary); color: #fff; }
.wiz-steps li.is-done .wiz-dot { background: color-mix(in srgb, var(--primary) 30%, transparent); color: var(--primary); }

/* Honeypot unsichtbar (nicht display:none -> Bots fuellen es dennoch) */
.wiz-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.wiz-step { border: 0; margin: 0; padding: 0; min-width: 0; }
.wiz-step legend {
    font-size: 18px; font-weight: 700; color: var(--text);
    padding: 0; margin: 0 0 4px;
}
.wiz-hint { margin: 0 0 16px; color: var(--text-muted); font-size: 14px; }

/* Auswahl-Karten (Schritt 1) */
.wiz-choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice-card {
    position: relative;
    display: flex; align-items: center; gap: 13px;
    padding: 14px 15px; border: 1.5px solid var(--border); border-radius: 14px;
    background: var(--surface); cursor: pointer; transition: var(--transition);
}
.choice-card:hover { border-color: var(--primary); transform: translateY(-1px); }
.choice-card.choice-wide { grid-column: 1 / -1; }
.choice-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice-ic {
    flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 17px; color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.choice-tx { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.choice-tx strong { color: var(--text); font-size: 15px; }
.choice-tx small { color: var(--text-muted); font-size: 13px; }
.choice-check {
    flex: 0 0 auto; margin-left: auto;
    width: 22px; height: 22px; border-radius: 50%;
    border: 1.5px solid var(--border);
    display: inline-flex; align-items: center; justify-content: center;
    color: transparent; font-size: 11px; transition: var(--transition);
}
.choice-card.is-checked { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, var(--surface)); }
.choice-card.is-checked .choice-check { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Formularfelder (Schritt 2/3) */
.wiz-field { margin-bottom: 15px; }
.wiz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 4px; }
.wiz-field label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.wiz-field .req { color: #dc2626; }
.wiz-opt { color: var(--text-muted); font-weight: 400; }
.wiz-field input, .wiz-field select, .wiz-field textarea {
    width: 100%; padding: 11px 13px;
    border: 1px solid var(--border); border-radius: 10px;
    background: var(--surface); color: var(--text);
    font-family: inherit; font-size: 15px; transition: var(--transition);
}
.wiz-field textarea { resize: vertical; min-height: 76px; }
.wiz-field input:focus, .wiz-field select:focus, .wiz-field textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}
.wiz-field input.has-err { border-color: #dc2626; }
.wiz-err { display: block; margin-top: 6px; color: #dc2626; font-size: 13px; font-weight: 600; }

.wiz-consent { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 0; font-size: 14px; color: var(--text-muted); cursor: pointer; }
.wiz-consent input { margin-top: 3px; flex: 0 0 auto; width: 17px; height: 17px; accent-color: var(--primary); }
.wiz-consent a { color: var(--primary); text-decoration: underline; }

/* Navigation + Erfolg */
.wiz-nav { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.wiz-nav-spacer { flex: 1 1 auto; }
.wiz-formerr { margin: 14px 0 0; color: #dc2626; font-size: 14px; font-weight: 600; text-align: center; }
.wiz-done { text-align: center; padding: 22px 8px 8px; }
.wiz-done-icon { font-size: 46px; color: #16a34a; margin-bottom: 10px; }
.wiz-done h3 { margin: 0 0 8px; font-size: 22px; color: var(--text); }
.wiz-done p { margin: 0 auto; max-width: 420px; color: var(--text-muted); font-size: 15px; }

@media (max-width: 600px) {
    .inquiry { padding: 4px 16px 60px; }
    .inquiry-card { padding: 28px 20px 24px; border-radius: 18px; }
    .wiz-choices { grid-template-columns: 1fr; }
    .wiz-grid { grid-template-columns: 1fr; }
    .wiz-steps { gap: 6px 14px; }
    .wiz-steps li { font-size: 13px; }
    .wiz-nav .btn { flex: 1 1 auto; justify-content: center; }
    .wiz-nav-spacer { display: none; }
}

/* ── "Jetzt anfragen"-Modus: Übersicht ausblenden, nur den Assistenten zeigen ──
   Der Wizard ist standardmäßig verborgen und erscheint erst per Klick auf
   "Jetzt anfragen" (body.inquiry-mode); "Zurück" hebt den Modus wieder auf. */
.inquiry { display: none; }
body.inquiry-mode .hero,
body.inquiry-mode .features,
body.inquiry-mode .showcase,
body.inquiry-mode .cta { display: none; }
body.inquiry-mode .inquiry { display: block; padding-top: 32px; }

.inquiry-head { position: relative; }
.wiz-back-top {
    position: absolute; left: 0; top: -4px;
    display: inline-flex; align-items: center; gap: 7px;
    background: transparent; border: 0; cursor: pointer;
    color: var(--text-muted); font: inherit; font-size: 14px; font-weight: 600;
    padding: 6px 10px; border-radius: 8px; transition: var(--transition);
}
.wiz-back-top:hover { color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, transparent); }
@media (max-width: 600px) {
    .wiz-back-top { position: static; margin: 0 0 10px; padding: 6px 8px; }
}
