/* ============================================================
   gROwKI — Landing Page Styles
   ============================================================ */

.landing-body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    background: #ffffff;
}

/* ── Container (missing global!) ──────────────────────────── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Brand highlight (RO + KI) ────────────────────────────── */
.brand-hi {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    font-weight: 900;
}
.brand-hi-light {
    -webkit-text-fill-color: var(--accent);
}

/* ── Navbar ────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 32px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-brand:hover { text-decoration: none; }

.nav-brand-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.6875rem;
    color: white;
    letter-spacing: -0.02em;
}

.nav-brand-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.04em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links a {
    padding: 7px 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-2);
    border-radius: var(--r-sm);
    transition: all 0.15s;
    text-decoration: none;
}
.nav-links a:hover { color: var(--text); background: var(--border-light); text-decoration: none; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-btn-outline {
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-2);
    background: transparent;
    cursor: pointer;
    transition: all 0.15s;
}
.nav-btn-outline:hover { border-color: var(--text-3); color: var(--text); }

.nav-btn-primary {
    padding: 7px 16px;
    border: none;
    border-radius: var(--r);
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    background: var(--primary);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-btn-primary:hover { background: var(--primary-light); text-decoration: none; color: white; }

.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
}
.nav-burger i { width: 24px; height: 24px; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    padding: 130px 0 72px;
    position: relative;
    overflow: hidden;
    background: #f0f1f5;
}

/* Mapbox satellite background — right side, fading left */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://api.mapbox.com/styles/v1/mapbox/satellite-streets-v12/static/6.685,51.034,13.5,0,0/1280x720@2x?access_token=pk.eyJ1IjoibXJuc21scG56ciIsImEiOiJjbWhrYzVnbDQxaWtrMmxxdmh5dzV1czNyIn0.Dmk8NPZ12oCGmyDgcw-_1g');
    background-size: cover;
    background-position: center right;
    opacity: 0.12;
    mask-image: linear-gradient(to right, transparent 10%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,1) 70%);
    -webkit-mask-image: linear-gradient(to right, transparent 10%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,1) 70%);
    pointer-events: none;
}

/* Subtle tint overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(238,240,246,0.8) 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    pointer-events: none;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--primary-100);
    border-radius: var(--r-full);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero-h1 {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 18px;
}

.hero-accent {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border-radius: var(--r);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(47,62,116,0.3);
    border: none;
    cursor: pointer;
}
.btn-hero-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(47,62,116,0.35); color: white; text-decoration: none; }
.btn-hero-primary i { width: 18px; height: 18px; }

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.7);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    backdrop-filter: blur(8px);
}
.btn-hero-outline:hover { border-color: var(--text-3); transform: translateY(-2px); text-decoration: none; }
.btn-hero-outline i { width: 18px; height: 18px; }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--text-3);
}
.hero-trust strong { color: var(--text-2); }

.hero-trust-avatars {
    display: flex;
    gap: 4px;
}

.trust-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Hero Visual (floating cards) */
.hero-visual {
    position: relative;
    height: 460px;
}

.hero-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.6);
}

.hero-card-main {
    position: absolute;
    top: 80px;
    left: 40px;
    right: 40px;
    padding: 22px;
    z-index: 2;
}

.hc-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hero card icons — plain, no box */
.hc-ico {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.hc-label { font-size: 0.6875rem; color: var(--text-3); font-weight: 500; }
.hc-value { font-size: 1.125rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }

.hc-bar {
    height: 5px;
    background: var(--border-light);
    border-radius: 3px;
    margin-top: 14px;
    overflow: hidden;
}
.hc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 3px;
    transition: width 1s ease;
}

/* Floating fact cards — shared base */
.hero-card[class*="float"] {
    position: absolute;
    z-index: 3;
    text-align: center;
}

.hcf-icon {
    color: var(--accent);
    margin-bottom: 4px;
}
.hcf-value { font-weight: 800; color: var(--text); letter-spacing: -0.02em; line-height: 1.2; }
.hcf-label { color: var(--text-3); font-weight: 500; margin-top: 2px; }

/* ── Card 1 (large) — top-left corner ── */
.hero-card-float-1 {
    top: 0;
    left: -10px;
    padding: 16px 22px;
    animation: float1 4s ease-in-out infinite;
}
.hero-card-float-1 .hcf-icon { width: 24px; height: 24px; }
.hero-card-float-1 .hcf-value { font-size: 1.125rem; }
.hero-card-float-1 .hcf-label { font-size: 0.6875rem; }

/* ── Card 2 (small) — top-right corner ── */
.hero-card-float-2 {
    top: 10px;
    right: -6px;
    padding: 10px 14px;
    animation: float2 5s ease-in-out infinite;
}
.hero-card-float-2 .hcf-icon { width: 16px; height: 16px; }
.hero-card-float-2 .hcf-value { font-size: 0.8125rem; }
.hero-card-float-2 .hcf-label { font-size: 0.5625rem; }

/* ── Card 3 (medium) — bottom-left ── */
.hero-card-float-3 {
    bottom: 40px;
    left: -16px;
    padding: 14px 18px;
    animation: float3 4.5s ease-in-out infinite;
}
.hero-card-float-3 .hcf-icon { width: 20px; height: 20px; }
.hero-card-float-3 .hcf-value { font-size: 1rem; }
.hero-card-float-3 .hcf-label { font-size: 0.625rem; }

/* ── Card 4 (medium-large) — bottom-right ── */
.hero-card-float-4 {
    bottom: 20px;
    right: -10px;
    padding: 16px 20px;
    animation: float4 5.5s ease-in-out infinite;
}
.hero-card-float-4 .hcf-icon { width: 22px; height: 22px; }
.hero-card-float-4 .hcf-value { font-size: 1.0625rem; }
.hero-card-float-4 .hcf-label { font-size: 0.6875rem; }

/* ── Card 5 (smallest) — mid-right, between 2 and 4 ── */
.hero-card-float-5 {
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
    padding: 10px 14px;
    animation: float5 4.2s ease-in-out infinite;
}
.hero-card-float-5 .hcf-icon { width: 16px; height: 16px; }
.hero-card-float-5 .hcf-value { font-size: 0.8125rem; }
.hero-card-float-5 .hcf-label { font-size: 0.5625rem; }

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes float4 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes float5 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 9px)); }
}

/* ── Logos Section ─────────────────────────────────────────── */
.logos-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
    background: #fafbfc;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.logo-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--border);
}

/* ── Section ───────────────────────────────────────────────── */
.section {
    padding: 72px 0;
}

.section-alt {
    background: #f7f9fb;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--primary-50);
    border-radius: var(--r-full);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.section-h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/* ── Module Grid ───────────────────────────────────────────── */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.module-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--bg-white);
    transition: all 0.25s var(--ease);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
}
.module-card:hover { border-color: var(--primary-100); box-shadow: var(--shadow-md); transform: translateY(-3px); text-decoration: none; color: var(--text); }

/* Module card icons — plain, no box */
.mc-ico {
    width: 28px;
    height: 28px;
    color: var(--primary);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.module-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.module-card p {
    font-size: 0.8125rem;
    color: var(--text-2);
    line-height: 1.65;
    flex: 1;
}

.mc-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 14px;
}

.mc-badge {
    display: inline-flex;
    padding: 4px 10px;
    background: var(--border-light);
    border-radius: var(--r-full);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--text-3);
    margin-top: 14px;
    align-self: flex-start;
}

/* ── Stats Grid ────────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-block {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--bg-white);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.stat-block p {
    font-size: 0.75rem;
    color: var(--text-3);
    line-height: 1.6;
}

.stat-visual {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 280px;
}

.stat-map {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
}

/* Company map popup */
.company-popup .mapboxgl-popup-content {
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 220px;
}
.company-popup .mapboxgl-popup-tip {
    border-top-color: white;
}

/* ── Portal Grid ───────────────────────────────────────────── */
.portal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portal-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--bg-white);
    text-align: center;
    transition: all 0.25s var(--ease);
}
.portal-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* Portal card icons — plain, no box */
.portal-ico {
    width: 28px;
    height: 28px;
    color: var(--primary);
    margin-bottom: 14px;
}

.portal-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.portal-card p {
    font-size: 0.8125rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ── CTA ───────────────────────────────────────────────────── */
.section-cta {
    padding: 72px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--r-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
}

.cta-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 420px;
}

.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.cta-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.8125rem;
}
.cta-info-item i { width: 18px; height: 18px; color: rgba(255,255,255,0.5); flex-shrink: 0; margin-top: 2px; }
.cta-info-item strong { display: block; color: white; margin-bottom: 1px; font-size: 0.8125rem; }
.cta-info-item div { color: rgba(255,255,255,0.6); line-height: 1.5; font-size: 0.8125rem; }

/* ── Footer ────────────────────────────────────────────────── */
.landing-footer {
    background: #0f1419;
    color: rgba(255,255,255,0.5);
    padding: 48px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: white;
}

.footer-desc {
    font-size: 0.8125rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.625rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.footer-grid a {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    padding: 3px 0;
    transition: color 0.15s;
    text-decoration: none;
}
.footer-grid a:hover { color: white; text-decoration: none; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.2);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-visual { height: 400px; }
    .hero-card-main { left: 20px; right: 20px; }
    .hero-card-float-5 { right: -10px; }
    .hero-h1 { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-visual { grid-column: span 2; grid-row: auto; min-height: 220px; }
    .cta-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--border);
        padding: 12px 20px;
        box-shadow: var(--shadow);
    }
    .nav-burger { display: block; }
    .nav-right .nav-btn-outline { display: none; }

    .hero { padding: 100px 0 52px; }
    .hero-h1 { font-size: 2rem; }
    .hero-sub { font-size: 0.9375rem; }
    .hero-visual { display: none; }

    .section { padding: 52px 0; }
    .section-head { margin-bottom: 36px; }
    .section-h2 { font-size: 1.75rem; }
    .section-sub { font-size: 0.9375rem; }

    .modules-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-visual { grid-column: span 1; }
    .portal-grid { grid-template-columns: 1fr; }

    .cta-box { padding: 28px; }
    .cta-content h2 { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    .section-cta { padding: 52px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 90px 0 44px; }
    .hero-h1 { font-size: 1.75rem; }
    .hero-btns { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .logos-row { gap: 12px; }
    .stat-number { font-size: 1.875rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 4px; }
    .module-card { padding: 22px; }
    .stat-block { padding: 22px; }
    .portal-card { padding: 22px; }
    .cta-box { padding: 22px; }
    .wiz-grid { grid-template-columns: 1fr; }
    .wiz-radio-group { grid-template-columns: 1fr 1fr; }
    .fl-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Wizard (Ansiedlungs-Check)
   ============================================================ */
.wizard {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 32px;
    background: #f7f9fb;
    border-bottom: 1px solid var(--border-light);
}

.wizard-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--border-light);
    color: var(--text-3);
    transition: all 0.3s;
    flex-shrink: 0;
}
.wizard-step-dot.active { background: var(--primary); color: white; box-shadow: 0 2px 8px rgba(47,62,116,0.3); }
.wizard-step-dot.done { background: var(--accent); color: #1a2e05; }

.wizard-step-line {
    width: 32px;
    height: 2px;
    background: var(--border-light);
    transition: background 0.3s;
}
.wizard-step-line.done { background: var(--accent); }

.wizard-body { padding: 32px; }

.wiz-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.wiz-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    margin-bottom: 24px;
}

.wiz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.wiz-field-full { grid-column: 1 / -1; }

.wiz-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 6px;
}
.wiz-field input,
.wiz-field select,
.wiz-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 0.875rem;
    color: var(--text);
    background: var(--bg-white);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.wiz-field input:focus,
.wiz-field select:focus,
.wiz-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-50);
}
.wiz-field textarea { resize: vertical; }
.wiz-hint { font-size: 0.6875rem; color: var(--text-3); margin-top: 4px; display: block; }

/* Radio card group (building type) */
.wiz-radio-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.wiz-radio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 10px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.wiz-radio-card input { display: none; }
.wiz-radio-card i { color: var(--text-3); transition: color 0.2s; }
.wiz-radio-card span { font-size: 0.75rem; font-weight: 600; color: var(--text-2); }
.wiz-radio-card:hover { border-color: var(--primary-100); }
.wiz-radio-card.selected {
    border-color: var(--primary);
    background: var(--primary-50);
}
.wiz-radio-card.selected i { color: var(--primary); }
.wiz-radio-card.selected span { color: var(--primary); }

/* Toggle switches (infrastructure) */
.wiz-toggles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wiz-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    cursor: pointer;
    transition: all 0.2s;
}
.wiz-toggle:hover { border-color: var(--primary-100); }
.wiz-toggle input { display: none; }
.wiz-toggle strong { font-size: 0.875rem; display: block; }
.wiz-toggle small { font-size: 0.75rem; color: var(--text-3); display: block; margin-top: 2px; }

.wiz-toggle-visual {
    width: 40px;
    height: 22px;
    border-radius: 11px;
    background: var(--border);
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
}
.wiz-toggle-visual::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.wiz-toggle input:checked + .wiz-toggle-visual { background: var(--primary); }
.wiz-toggle input:checked + .wiz-toggle-visual::after { transform: translateX(18px); }

/* Summary (step 4) */
.wiz-summary {
    margin-top: 20px;
    padding: 16px;
    background: #f7f9fb;
    border-radius: var(--r);
    border: 1px solid var(--border-light);
}
.wiz-summary h4 { font-size: 0.75rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.wiz-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}
.wiz-summary-grid small { font-size: 0.625rem; color: var(--text-3); display: block; }
.wiz-summary-grid strong { font-size: 0.8125rem; display: block; margin-top: 2px; }

/* Wizard footer (buttons) */
.wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    border-top: 1px solid var(--border-light);
    background: #fafbfc;
}

.wiz-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.15s;
}
.wiz-btn-back:hover { border-color: var(--text-3); color: var(--text); }

.wiz-btn-next, .wiz-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.wiz-btn-next:hover, .wiz-btn-submit:hover { background: var(--primary-light); }
.wiz-btn-submit { background: var(--accent-dark); color: white; }
.wiz-btn-submit:hover { background: var(--accent); color: #1a2e05; }
.wiz-btn-next:disabled, .wiz-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success state */
.wiz-success {
    text-align: center;
    padding: 48px 32px;
}
.wiz-success h3 { font-size: 1.25rem; font-weight: 800; margin: 16px 0 8px; }
.wiz-success p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.6; max-width: 400px; margin: 0 auto; }
.wiz-ref { font-size: 0.75rem; color: var(--text-3); margin-top: 8px !important; }
.wiz-success .wiz-btn-next { margin-top: 20px; }

/* ============================================================
   Förder-Lotse
   ============================================================ */
.fl-form {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px;
}

.fl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fl-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 6px;
}
.fl-field input,
.fl-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 0.875rem;
    color: var(--text);
    background: var(--bg-white);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.fl-field input:focus,
.fl-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-50);
}

.fl-actions {
    margin-top: 20px;
    text-align: center;
}

.fl-btn-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--r);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(47,62,116,0.25);
}
.fl-btn-search:hover { background: var(--primary-light); transform: translateY(-1px); }
.fl-btn-search:disabled { opacity: 0.6; cursor: not-allowed; }

/* Spin animation for loader */
@keyframes spin { 100% { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }

/* Results */
.fl-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 32px auto 16px;
    max-width: 720px;
}
.fl-results-header h4 { font-size: 1rem; font-weight: 700; }

.fl-btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.15s;
}
.fl-btn-pdf:hover { border-color: var(--text-3); color: var(--text); }

.fl-results-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fl-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    transition: all 0.2s;
}
.fl-card:hover { box-shadow: var(--shadow); }

.fl-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.fl-card-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.fl-card-info { flex: 1; }
.fl-card-info h4 { font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.fl-card-provider { font-size: 0.75rem; color: var(--text-3); }

.fl-score {
    padding: 4px 10px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.fl-score-high { background: #e8f5e9; color: #2e7d32; }
.fl-score-mid { background: #fff3e0; color: #e65100; }
.fl-score-low { background: var(--border-light); color: var(--text-3); }

.fl-card-desc {
    font-size: 0.8125rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 12px;
}

.fl-card-meta {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 10px;
}
.fl-meta-item small { font-size: 0.625rem; color: var(--text-3); display: block; }
.fl-meta-item strong { font-size: 0.8125rem; display: block; margin-top: 2px; }
.fl-meta-highlight strong { color: var(--primary); }

.fl-card-reasons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.fl-reason {
    padding: 3px 8px;
    background: var(--primary-50);
    border-radius: var(--r-full);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--primary);
}

.fl-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fl-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.fl-link:hover { text-decoration: underline; }
.fl-valid { font-size: 0.6875rem; color: var(--text-3); }

.fl-empty {
    text-align: center;
    padding: 40px 20px;
    max-width: 720px;
    margin: 20px auto 0;
}
.fl-empty p { font-size: 0.9375rem; color: var(--text-2); margin-top: 12px; }
