/* ═══════════════════════════════════════════════════════════════════════
   site.css – BelegeApp / scantax Global Stylesheet
   Konsolidiert aus: _Layout, Belege/Index, Home/Index, Faq, SoFunktionierts,
                     Ueberblick, Abonnieren, _RatgeberStyles
   ═══════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════
   1. CSS VARIABLES & BASE
   ═══════════════════════════════════════════════════════════════════════ */
:root {
    --brand-green: #123047;
    --brand-green-light: #EEF2F3;
    --brand-green-hover: #0d2235;
    --brand-accent: #3FA66B;
    --brand-accent-light: #62bc89;
    --brand-bg: #F7F5EF;
    --brand-text: #1E252B;
    --brand-muted: #5E7283;
    --brand-border: #ccd7dc;
    --brand-shadow: 0 2px 8px rgba(18,48,71,.08);
    --brand-shadow-lg: 0 8px 32px rgba(18,48,71,.14);
    --brand-radius: .75rem;
    --brand-radius-sm: .5rem;
    --t: .2s ease;
}

html {
    font-size: 14px;
    scroll-behavior: inherit;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html { font-size: 16px; }
}

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    background: var(--brand-bg);
    color: var(--brand-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 60px;
    background-color: #F7F5EF;
}

main {
    flex: 1;
}

/* A11y – Skip-to-Content */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: .75rem 1.5rem;
    background: var(--brand-green);
    color: #fff;
    border-radius: var(--brand-radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: top var(--t);
}

    .skip-to-content:focus {
        top: .5rem;
        outline: 3px solid var(--brand-accent);
        outline-offset: 2px;
    }

/* A11y – Focus */
:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 2px;
}

/* A11y – Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* A11y – High Contrast */
@media (prefers-contrast: high) {
    :root {
        --brand-green: #0a3622;
        --brand-border: #000;
    }
}

/* Print */
@media print {
    .navbar, .footer-m1a, .btn, .no-print {
        display: none !important;
    }
    body {
        background: #fff;
        color: #000;
    }
}


/* ═══════════════════════════════════════════════════════════════════════
   2. NAVBAR
   ═══════════════════════════════════════════════════════════════════════ */
.navbar-m1a {
    background: linear-gradient(135deg, #123047 0%, #0d2235 100%) !important;
    box-shadow: 0 2px 12px rgba(18,48,71,.22);
    border-bottom: none !important;
}

    .navbar-m1a .navbar-brand {
        font-weight: 700;
        font-size: 1.25rem;
        color: #fff !important;
        letter-spacing: -.01em;
    }

        .navbar-m1a .navbar-brand .brand-dot {
            color: #1F6F73;
        }

    .navbar-m1a .nav-link {
        color: rgba(255,255,255,.85) !important;
        font-weight: 450;
        transition: color var(--t);
    }

        .navbar-m1a .nav-link:hover,
        .navbar-m1a .nav-link:focus {
            color: #fff !important;
        }

/* ═══ Navbar CTA (Abonnieren) ═══ */
.navbar-m1a .nav-link-cta {
    background: #3FA66B;
    color: #fff !important;
    border-radius: 100px;
    padding: 4px 14px !important;
    font-weight: 600;
    margin-left: 4px;
    transition: background var(--t), transform var(--t);
}

    .navbar-m1a .nav-link-cta:hover,
    .navbar-m1a .nav-link-cta:focus {
        background: #2d8a58;
        color: #fff !important;
        transform: translateY(-1px);
    }

/* ═══ Kompakte Nav-Links (nav-link-sm) ═══ */
.navbar-m1a .nav-link-sm {
    color: rgba(255,255,255,.85) !important;
    font-size: .78rem;
    font-weight: 450;
    padding: .4rem .45rem !important;
    display: flex;
    align-items: center;
    gap: .28rem;
    white-space: nowrap;
    transition: color var(--t);
    line-height: 1;
}

.navbar-m1a .nav-link-sm:hover,
.navbar-m1a .nav-link-sm:focus {
    color: #fff !important;
}

.navbar-m1a .nav-link-sm i {
    font-size: .82rem;
    flex-shrink: 0;
}

.navbar-m1a .nav-link-sm .nav-label {
    font-size: .78rem;
}

/* Ab 1200px: Label sichtbar, Icon klein */
@media (max-width: 1199px) {
    .navbar-m1a .nav-link-sm .nav-label {
        display: none;
    }
    .navbar-m1a .nav-link-sm {
        padding: .4rem .35rem !important;
    }
    .navbar-m1a .nav-link-sm i {
        font-size: 1rem;
    }
}

/* Ab sm-Breakpoint collapsed: alles normal */
@media (max-width: 575px) {
    .navbar-m1a .nav-link-sm .nav-label {
        display: inline !important;
    }
    .navbar-m1a .nav-link-sm {
        padding: .5rem 1rem !important;
        font-size: .88rem;
    }
}


/* ═══════════════════════════════════════════════════════════════════════
   3. FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer-m1a {
    background: #123047;
    color: rgba(255,255,255,.8);
    padding: 1.25rem 0;
    margin-top: auto;
}

    .footer-m1a a {
        color: rgba(255,255,255,.8);
        text-decoration: none;
        transition: color var(--t);
    }

        .footer-m1a a:hover {
            color: #fff;
        }


/* ═══════════════════════════════════════════════════════════════════════
   4. AUTH / IDENTITY PAGES
   ═══════════════════════════════════════════════════════════════════════ */
.auth-wrapper {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    background: #fff;
    border-radius: var(--brand-radius);
    box-shadow: var(--brand-shadow-lg);
    border: 1px solid var(--brand-border);
    overflow: hidden;
    width: 100%;
    max-width: 460px;
}

.auth-card-header {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-hover) 100%);
    padding: 1.75rem 2rem 1.5rem;
    text-align: center;
    color: #fff;
}

    .auth-card-header .auth-icon {
        font-size: 2.25rem;
        margin-bottom: .5rem;
        display: block;
        opacity: .95;
    }

    .auth-card-header h1 {
        font-size: 1.35rem;
        font-weight: 700;
        margin: 0;
        letter-spacing: -.02em;
        color: #fff;
    }

    .auth-card-header p {
        margin: .3rem 0 0;
        opacity: .78;
        font-size: .875rem;
    }

.auth-card-body {
    padding: 2rem;
}

.auth-card-footer {
    border-top: 1px solid var(--brand-border);
    padding: .875rem 2rem;
    background: #f8faf9;
    font-size: .875rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

    .auth-card-footer a {
        color: var(--brand-green);
        font-weight: 500;
        text-decoration: none;
    }

        .auth-card-footer a:hover {
            color: var(--brand-green-hover);
            text-decoration: underline;
        }

.auth-card-body .form-floating {
    margin-bottom: 1rem;
}

.auth-card-body .form-floating label {
    color: var(--brand-muted);
}

.auth-card-body .form-control:focus,
.auth-card-body .form-select:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 .2rem rgba(82, 183, 136, .2);
}

.btn-auth {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-hover) 100%);
    border: none;
    color: #fff !important;
    font-weight: 600;
    padding: .75rem;
    font-size: 1rem;
    border-radius: var(--brand-radius-sm);
    transition: all var(--t);
    box-shadow: 0 2px 8px rgba(27, 67, 50, .18);
    width: 100%;
    margin-top: .25rem;
}

    .btn-auth:hover {
        background: linear-gradient(135deg, var(--brand-green-hover) 0%, var(--brand-green) 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(27, 67, 50, .28);
        color: #fff;
    }

    .btn-auth:active {
        transform: translateY(0);
    }

.auth-divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 1.25rem 0;
    color: var(--brand-muted);
    font-size: .82rem;
}

    .auth-divider::before,
    .auth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--brand-border);
    }

.auth-success-icon {
    width: 68px;
    height: 68px;
    background: var(--brand-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--brand-green);
    font-size: 1.9rem;
}

.auth-card-body .text-danger {
    font-size: .8rem;
}

.auth-card-body .validation-summary-errors ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: .875rem;
}

.auth-card-body .form-label-static {
    font-size: .875rem;
    color: var(--brand-muted);
    margin-bottom: .35rem;
    display: block;
}

.auth-card-body .form-select {
    border-radius: var(--brand-radius-sm);
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.25rem;
    font-size: .9rem;
    color: var(--brand-text);
}


/* ═══════════════════════════════════════════════════════════════════════
   5. SHARED COMPONENTS (Badges, Buttons, Tables, Cards)
   ═══════════════════════════════════════════════════════════════════════ */

/* Rechnungsart-Badges */
.badge-art-er { background-color: #B03A2E; color: #fff; }
.badge-art-ar { background-color: #1F6F73; color: #fff; }
.badge-art-kb { background-color: #2471A3; color: #fff; }
.badge-art-gs { background-color: #D99A2B; color: #fff; }
.badge-art-other { background-color: #5E7283; color: #fff; }

/* Kamera-Buttons */
#btnTakePhoto, #btnAddPhoto {
    background-color: #1F6F73 !important;
    border-color: #1F6F73 !important;
    color: #fff !important;
}
#btnTakePhoto:hover, #btnAddPhoto:hover {
    background-color: #165a5d !important;
    border-color: #165a5d !important;
}

/* Pagination */
.page-item.active .page-link {
    z-index: 3;
    color: #fff !important;
    background-color: #123047 !important;
    border-color: #123047 !important;
}

.pagination .page-link {
    color: var(--brand-green);
}

.pagination .page-item.active .page-link {
    background: var(--brand-green);
    border-color: var(--brand-green);
}

/* Card Brand (card-m1a) */
.card-m1a {
    border: 1px solid var(--brand-border);
    border-radius: var(--brand-radius);
    box-shadow: var(--brand-shadow);
    overflow: hidden;
    transition: box-shadow var(--t);
}

    .card-m1a:hover {
        box-shadow: var(--brand-shadow-lg);
    }

    .card-m1a > .card-header {
        background: var(--brand-green);
        color: #fff;
        font-weight: 600;
        border-bottom: none;
        padding: .75rem 1.25rem;
    }

        .card-m1a > .card-header h5 {
            color: #fff;
            margin: 0;
            font-size: 1rem;
        }

        .card-m1a > .card-header a,
        .card-m1a > .card-header .btn-outline-success {
            color: rgba(255,255,255,.9) !important;
            border-color: rgba(255,255,255,.4) !important;
        }

            .card-m1a > .card-header a:hover,
            .card-m1a > .card-header .btn-outline-success:hover {
                color: #fff !important;
                background: rgba(255,255,255,.15) !important;
            }

        .card-m1a > .card-header .badge.bg-secondary {
            background: rgba(255,255,255,.2) !important;
            color: #fff !important;
        }

/* Table Brand (table-m1a) */
.table-m1a thead {
    background: var(--brand-green-light);
}

    .table-m1a thead th {
        color: var(--brand-green);
        font-weight: 600;
        font-size: .85rem;
        border: none;
        padding: .625rem .75rem;
    }

        .table-m1a thead th a {
            color: var(--brand-green) !important;
        }

.table-m1a tbody tr {
    transition: background var(--t);
}

    .table-m1a tbody tr:hover {
        background: rgba(82,183,136,.06);
    }

/* Button Brand (btn-m1a) */
.btn-m1a {
    background: var(--brand-green);
    color: #fff;
    border: none;
    border-radius: var(--brand-radius-sm);
    font-weight: 600;
    transition: all var(--t);
}

    .btn-m1a:hover {
        background: var(--brand-green-hover);
        color: #fff;
        transform: translateY(-1px);
    }

/* Upload Overlay */
.upload-overlay {
    background: rgba(27,67,50,.85);
    backdrop-filter: blur(4px);
}

/* Spinner */
.spinner-border { color: #1F6F73 !important; }


/* ═══════════════════════════════════════════════════════════════════════
   6. BELEGE/INDEX – Animations
   ═══════════════════════════════════════════════════════════════════════ */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}


/* ═══════════════════════════════════════════════════════════════════════
   7. FAQ PAGE (.faq-*)
   ═══════════════════════════════════════════════════════════════════════ */
.faq-root { font-family: 'DM Sans', system-ui, -apple-system, sans-serif; color: #1E252B; background: #F7F5EF; padding: 28px 20px 0; }

.faq-hero {
    background: linear-gradient(150deg, #123047 0%, #1F6F73 100%);
    padding: 56px 28px 48px;
    text-align: center;
    position: relative; overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 14px;
}
.faq-hero::before {
    content: '?';
    position: absolute; right: 5%; top: -10px;
    font-size: 14rem; font-weight: 900;
    color: rgba(255,255,255,.04); line-height: 1;
    pointer-events: none; user-select: none;
}
.faq-hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9); border-radius: 100px;
    padding: 5px 16px; font-size: .78rem; font-weight: 500;
    letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px;
}
.faq-hero h1 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800; color: #fff; line-height: 1.2;
    margin: 0 auto 14px; max-width: 660px;
}
.faq-hero-sub {
    color: rgba(255,255,255,.72); font-size: .97rem; font-weight: 300;
    max-width: 500px; margin: 0 auto; line-height: 1.65;
}
.faq-jumps {
    max-width: 780px; margin: 0 auto;
    padding: 26px 20px 0;
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.faq-jump {
    background: #fff; border: 1px solid #ccd7dc;
    color: #1F6F73; border-radius: 100px;
    padding: 5px 14px; font-size: .8rem; font-weight: 500;
    text-decoration: none; transition: background .15s, border-color .15s;
    white-space: nowrap;
}
.faq-jump:hover { background: #EEF2F3; border-color: #1F6F73; color: #123047; }
.faq-body { max-width: 780px; margin: 0 auto; padding: 40px 20px 64px; }
.faq-group { margin-bottom: 40px; }
.faq-group-title {
    display: flex; align-items: center; gap: 10px;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: #1F6F73; margin-bottom: 14px;
    padding-bottom: 8px; border-bottom: 2px solid #EEF2F3;
}
.faq-group-title i { font-size: 1rem; }
.faq-item {
    background: #fff; border: 1px solid #dde5e8;
    border-radius: 10px; margin-bottom: 8px; overflow: hidden;
    transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 3px 14px rgba(18,48,71,.08); }
.faq-item.open { box-shadow: 0 4px 18px rgba(18,48,71,.1); border-color: #b8cdd4; }
.faq-q {
    width: 100%; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    padding: 17px 20px;
    font-size: .97rem; font-weight: 600; color: #123047;
    cursor: pointer; text-align: left; font-family: inherit;
    transition: background .15s; gap: 12px;
}
.faq-q:hover { background: #F7F5EF; }
.faq-item.open .faq-q { background: #F7F5EF; color: #1F6F73; }
.faq-q-icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: #EEF2F3; border: 1.5px solid #ccd7dc;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background .2s, border-color .2s, transform .25s;
    color: #1F6F73;
}
.faq-item.open .faq-q-icon {
    background: #1F6F73; border-color: #1F6F73; color: #fff;
    transform: rotate(45deg);
}
.faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-a-wrap.open { max-height: 600px; }
.faq-a {
    padding: 0 20px 18px;
    font-size: .91rem; color: #5E7283;
    line-height: 1.75; font-weight: 300;
    border-top: 1px solid #EEF2F3;
}
.faq-a p { margin: 12px 0 0; }
.faq-a p:first-child { margin-top: 14px; }
.faq-a strong { color: #1E252B; font-weight: 600; }
.faq-a .faq-note {
    margin-top: 12px;
    background: #FAF0DB; border-left: 3px solid #D99A2B;
    border-radius: 0 6px 6px 0; padding: 9px 13px;
    font-size: .84rem; color: #7A4E0D;
}
.faq-a .faq-tip {
    margin-top: 12px;
    background: #E6F5EE; border-left: 3px solid #3FA66B;
    border-radius: 0 6px 6px 0; padding: 9px 13px;
    font-size: .84rem; color: #1E5C38;
}
.faq-a-wrap.init-open { max-height: 600px; transition: none; }
.faq-cta {
    background: linear-gradient(135deg, #123047 0%, #1F6F73 100%);
    border-radius: 14px; padding: 36px 32px;
    text-align: center; margin-top: 8px;
}
.faq-cta h2 { font-size: 1.5rem; font-weight: 900; color: #fff; margin: 0 0 10px; }
.faq-cta p { color: rgba(255,255,255,.72); font-size: .93rem; margin: 0 0 22px; font-weight: 300; }
.faq-cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.faq-btn-p { display: inline-flex; align-items: center; gap: 7px; background: #3FA66B; color: #fff !important; font-weight: 600; font-size: .93rem; padding: 11px 24px; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 18px rgba(63,166,107,.35); transition: transform .2s; }
.faq-btn-p:hover { transform: translateY(-2px); }
.faq-btn-s { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.9) !important; font-weight: 500; font-size: .93rem; padding: 10px 22px; border-radius: 50px; text-decoration: none; transition: background .2s; }
.faq-btn-s:hover { background: rgba(255,255,255,.18); }
.faq-trust { background: #EEF2F3; border-top: 1px solid #dde5e8; padding: 16px 20px; }
.faq-trust-inner { max-width: 780px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 32px; }
.faq-trust-item { display: flex; align-items: center; gap: 7px; font-size: .79rem; font-weight: 500; color: #5E7283; }
.faq-trust-item i { color: #3FA66B; }


/* ═══════════════════════════════════════════════════════════════════════
   8. SO FUNKTIONIERTS PAGE (.sf-*)
   ═══════════════════════════════════════════════════════════════════════ */
.sf-root { font-family:'DM Sans',system-ui,-apple-system,sans-serif; color:#1E252B; background:#F7F5EF; padding: 28px 20px 0; }

.sf-hero { background:linear-gradient(150deg,#123047 0%,#1F6F73 100%); padding:64px 28px 56px; text-align:center; position:relative; overflow:hidden; max-width:900px; margin:0 auto; border-radius:14px; }
.sf-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 70% 50%,rgba(63,166,107,.15) 0%,transparent 65%); pointer-events:none; }
.sf-hero-badge { display:inline-flex; align-items:center; gap:7px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.9); border-radius:100px; padding:5px 16px; font-size:.78rem; font-weight:500; letter-spacing:.04em; margin-bottom:22px; }
.sf-hero h1 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:900; color:#fff; line-height:1.2; margin:0 auto 18px; max-width:720px; }
.sf-hero-sub { font-size:clamp(.95rem,1.8vw,1.08rem); color:rgba(255,255,255,.78); max-width:620px; margin:0 auto 32px; line-height:1.7; font-weight:300; }
.sf-hero-cta { display:inline-flex; align-items:center; gap:8px; background:#3FA66B; color:#fff !important; font-weight:600; font-size:1rem; padding:14px 30px; border-radius:50px; text-decoration:none; box-shadow:0 8px 24px rgba(63,166,107,.35); transition:transform .2s,box-shadow .2s; }
.sf-hero-cta:hover { transform:translateY(-2px); box-shadow:0 12px 32px rgba(63,166,107,.5); }

.sf-section-label { text-align:center; font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#1F6F73; margin-bottom:10px; }
.sf-section-title { text-align:center; font-size:clamp(1.4rem,2.8vw,2rem); font-weight:900; color:#123047; margin:0 auto 48px; max-width:560px; line-height:1.3; }

.sf-steps-section { max-width:860px; margin:0 auto; padding:64px 20px 48px; }
.sf-step { display:grid; grid-template-columns:72px 1fr; gap:0 28px; position:relative; }
.sf-step:not(:last-child) .sf-step-line { position:absolute; left:35px; top:56px; bottom:-32px; width:2px; background:linear-gradient(to bottom,#1F6F73,rgba(31,111,115,.08)); }
.sf-step-num-wrap { display:flex; flex-direction:column; align-items:center; padding-top:4px; }
.sf-step-num { width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,#123047,#1F6F73); color:#fff; font-size:1.3rem; font-weight:900; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 16px rgba(18,48,71,.25); flex-shrink:0; position:relative; z-index:1; }
.sf-step-body { background:#fff; border-radius:14px; border:1px solid #dde5e8; padding:24px 26px 26px; margin-bottom:32px; box-shadow:0 2px 12px rgba(18,48,71,.05); transition:box-shadow .2s; }
.sf-step-body:hover { box-shadow:0 6px 24px rgba(18,48,71,.1); }
.sf-step-icon { width:40px; height:40px; background:linear-gradient(135deg,#EEF2F3,#d4e8ea); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; float:right; margin:0 0 8px 16px; }
.sf-step-tag { font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#1F6F73; margin-bottom:5px; }
.sf-step-h { font-size:1.15rem; font-weight:700; color:#123047; margin:0 0 10px; line-height:1.3; }
.sf-step-p { font-size:.92rem; color:#5E7283; line-height:1.7; margin:0 0 14px; font-weight:300; }
.sf-step-bullets { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:6px; }
.sf-step-bullets li { display:flex; align-items:flex-start; gap:9px; font-size:.88rem; color:#1E252B; line-height:1.55; }
.sf-step-bullets li::before { content:''; width:6px; height:6px; border-radius:50%; background:#3FA66B; flex-shrink:0; margin-top:7px; }
.sf-step-note { margin-top:14px; background:#FAF0DB; border-left:3px solid #D99A2B; border-radius:0 6px 6px 0; padding:9px 13px; font-size:.82rem; color:#7A4E0D; }
.sf-step-note strong { color:#8A5D10; }

.sf-prereq-section { background:#fff; border-top:1px solid #dde5e8; border-bottom:1px solid #dde5e8; padding:52px 20px; }
.sf-prereq-inner { max-width:860px; margin:0 auto; }
.sf-prereq-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:32px; }
@media (max-width:900px) { .sf-prereq-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:580px) { .sf-prereq-grid { grid-template-columns:1fr; } .sf-step { grid-template-columns:48px 1fr; gap:0 14px; } .sf-step-num { width:40px; height:40px; font-size:1rem; } .sf-step:not(:last-child) .sf-step-line { left:19px; } }
.sf-prereq-card { background:#F7F5EF; border-radius:10px; border:1px solid #e0e8eb; padding:18px 18px 16px; }
.sf-prereq-icon { font-size:1.5rem; margin-bottom:8px; }
.sf-prereq-title { font-size:.88rem; font-weight:700; color:#123047; margin-bottom:5px; }
.sf-prereq-text { font-size:.82rem; color:#5E7283; line-height:1.6; }
.sf-prereq-text strong { color:#1E252B; font-weight:600; }

.sf-faq-section { max-width:720px; margin:0 auto; padding:56px 20px 48px; }
.sf-faq-item { border-bottom:1px solid #dde5e8; }
.sf-faq-q { width:100%; background:none; border:none; display:flex; justify-content:space-between; align-items:center; padding:18px 4px; font-size:.97rem; font-weight:600; color:#123047; cursor:pointer; text-align:left; font-family:inherit; transition:color .15s; }
.sf-faq-q:hover { color:#1F6F73; }
.sf-faq-q i { transition:transform .25s; color:#1F6F73; flex-shrink:0; margin-left:12px; }
.sf-faq-q.open i { transform:rotate(45deg); }
.sf-faq-a { display:none; padding:0 4px 18px; font-size:.9rem; color:#5E7283; line-height:1.75; font-weight:300; }
.sf-faq-a.open { display:block; }

.sf-cta-section { background:linear-gradient(135deg,#123047 0%,#0d2235 60%,#1F6F73 100%); padding:56px 20px 52px; text-align:center; }
.sf-cta-section h2 { font-size:clamp(1.5rem,3vw,2.2rem); font-weight:900; color:#fff; margin:0 auto 12px; max-width:540px; line-height:1.25; }
.sf-cta-section p { color:rgba(255,255,255,.72); font-size:.97rem; margin:0 auto 28px; max-width:440px; font-weight:300; }
.sf-cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.sf-btn-primary { display:inline-flex; align-items:center; gap:8px; background:#3FA66B; color:#fff !important; font-weight:600; font-size:.97rem; padding:13px 28px; border-radius:50px; text-decoration:none; box-shadow:0 6px 20px rgba(63,166,107,.35); transition:transform .2s,box-shadow .2s; }
.sf-btn-primary:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(63,166,107,.5); }
.sf-btn-secondary { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.1); border:1.5px solid rgba(255,255,255,.3); color:rgba(255,255,255,.9) !important; font-weight:500; font-size:.97rem; padding:12px 24px; border-radius:50px; text-decoration:none; transition:background .2s; }
.sf-btn-secondary:hover { background:rgba(255,255,255,.18); }

.sf-trust { background:#EEF2F3; border-top:1px solid #dde5e8; padding:18px 20px; }
.sf-trust-inner { max-width:860px; margin:0 auto; display:flex; flex-wrap:wrap; justify-content:center; gap:16px 36px; }
.sf-trust-item { display:flex; align-items:center; gap:8px; font-size:.8rem; font-weight:500; color:#5E7283; }
.sf-trust-item i { color:#3FA66B; font-size:.95rem; }


/* ═══════════════════════════════════════════════════════════════════════
   9. UEBERBLICK PAGE (.ueb-*)
   ═══════════════════════════════════════════════════════════════════════ */
.ueb-root { max-width: 900px; margin: 0 auto; padding: 28px 16px 80px; }
.ueb-header {
    background: linear-gradient(135deg, #123047 0%, #1F6F73 100%);
    border-radius: 14px; padding: 28px 28px 22px;
    color: #fff; margin-bottom: 22px; position: relative; overflow: hidden;
}
.ueb-header::before {
    content: '\20AC'; position: absolute; right: 20px; top: -10px;
    font-size: 8rem; font-weight: 900; color: rgba(255,255,255,.06); pointer-events: none;
}
.ueb-header h1 { font-size: 1.45rem; font-weight: 700; margin: 0 0 4px; }
.ueb-header .sub { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0 0 16px; }
.jahr-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.jahr-pill {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.85); border-radius: 100px; padding: 4px 14px;
    font-size: .82rem; font-weight: 500; text-decoration: none; transition: background .15s;
}
.jahr-pill:hover { background: rgba(255,255,255,.22); color: #fff; }
.jahr-pill.aktiv { background: rgba(255,255,255,.95); color: #123047; font-weight: 700; }
.kpi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
@media (max-width: 580px) { .kpi-grid { grid-template-columns: 1fr 1fr; } }
.kpi-card { background: #fff; border-radius: 10px; border: 1px solid #ccd7dc; padding: 13px 15px; }
.kpi-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: #5E7283; font-weight: 600; margin-bottom: 4px; }
.kpi-value { font-size: 1.35rem; font-weight: 800; letter-spacing: -.4px; line-height: 1.15; }
.kpi-sub   { font-size: .72rem; color: #5E7283; margin-top: 3px; }
.ueb-card { background: #fff; border-radius: 10px; border: 1px solid #ccd7dc; margin-bottom: 16px; overflow: hidden; }
.ueb-card-hdr {
    display: flex; align-items: center; gap: 8px; padding: 12px 16px 9px;
    border-bottom: 1px solid #EEF2F3; font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em; color: #123047;
}
.ueb-hinweis {
    background: #FAF0DB; border-left: 4px solid #D99A2B;
    border-radius: 0 8px 8px 0; padding: 11px 15px;
    font-size: .83rem; color: #5C3E0C; margin-bottom: 16px;
}
.ueb-hinweis strong { color: #8A5D10; }
.chart-outer { padding: 16px 16px 8px; overflow-x: auto; }
.chart-grid { display: flex; gap: 5px; min-width: 440px; }
.chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; }
.bar-top { width: 100%; height: 80px; display: flex; align-items: flex-end; justify-content: center; gap: 2px; }
.bar-ein { flex: 1; border-radius: 3px 3px 0 0; background: #1F6F73; min-height: 0; }
.chart-axis { width: 100%; height: 2px; background: #ccd7dc; flex-shrink: 0; }
.bar-bot { width: 100%; height: 80px; display: flex; align-items: flex-start; justify-content: center; gap: 2px; }
.bar-aus { flex: 1; border-radius: 0 0 3px 3px; background: #B03A2E; min-height: 0; }
.bar-ein:hover, .bar-aus:hover { opacity: .8; }
.chart-lbl { font-size: .62rem; color: #5E7283; margin-top: 5px; text-align: center; }
.chart-dim .bar-ein, .chart-dim .bar-aus { opacity: .25; }
.chart-legend { display: flex; gap: 14px; padding: 0 16px 12px; font-size: .76rem; color: #5E7283; }
.ldot { width: 9px; height: 9px; border-radius: 2px; display: inline-block; margin-right: 3px; vertical-align: middle; }
.mon-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.mon-table th { padding: 7px 14px; text-align: left; color: #5E7283; font-weight: 600; font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; background: #F7F5EF; border-bottom: 1px solid #EEF2F3; }
.mon-table td { padding: 7px 14px; border-bottom: 1px solid #EEF2F3; }
.mon-table tr:last-child td { border-bottom: none; }
.mon-dim td { opacity: .38; }
.gpill { display: inline-block; border-radius: 100px; padding: 2px 9px; font-size: .74rem; font-weight: 600; }
.kat-row { padding: 9px 16px; border-bottom: 1px solid #EEF2F3; }
.kat-row:last-child { border-bottom: none; }
.kat-top { display: flex; justify-content: space-between; font-size: .84rem; font-weight: 500; margin-bottom: 4px; }
.kat-amt { color: #5E7283; font-weight: 400; }
.kat-bg { height: 6px; background: #EEF2F3; border-radius: 3px; overflow: hidden; }
.kat-fill { height: 100%; background: linear-gradient(90deg,#1F6F73,#3FA66B); border-radius: 3px; }
.info-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 16px; }
@media (max-width: 500px) { .info-tiles { grid-template-columns: 1fr; } }
.info-tile { background: #F7F5EF; border-radius: 8px; padding: 12px 14px; border: 1px solid #e0e8eb; }
.info-tile-ico   { font-size: 1.2rem; margin-bottom: 5px; }
.info-tile-title { font-size: .79rem; font-weight: 700; color: #123047; margin-bottom: 3px; }
.info-tile-text  { font-size: .78rem; color: #5E7283; line-height: 1.55; }
.ueb-leer { text-align: center; padding: 38px 20px; color: #5E7283; }
.ueb-leer i { font-size: 2.4rem; display: block; margin-bottom: 10px; color: #ccd7dc; }
.sum-row td { background: #EEF2F3; font-weight: 700; }


/* ═══════════════════════════════════════════════════════════════════════
   10. ABONNIEREN PAGE (.abo-*)
   ═══════════════════════════════════════════════════════════════════════ */
.abo-card {
    background: #fff;
    border-radius: var(--brand-radius);
    box-shadow: var(--brand-shadow-lg);
    border: 1px solid var(--brand-border);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
}
.abo-card-header {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-hover) 100%);
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    color: #fff;
}
.abo-card-header h2 {
    font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em;
    margin: 0 0 .5rem; color: #fff;
}
.abo-badge {
    display: inline-block; background: rgba(255,255,255,.18); color: #fff;
    border: 1px solid rgba(255,255,255,.35); border-radius: 2rem;
    font-size: .78rem; font-weight: 600; letter-spacing: .05em;
    text-transform: uppercase; padding: .25rem .9rem;
}
.abo-price-block { padding: 1.75rem 2rem 0; text-align: center; }
.abo-price { font-size: 3rem; font-weight: 800; color: var(--brand-green); line-height: 1; letter-spacing: -.04em; }
.abo-price sup { font-size: 1.4rem; vertical-align: super; font-weight: 700; }
.abo-price-unit { font-size: .95rem; color: var(--brand-muted); font-weight: 400; }
.abo-permonth { font-size: .875rem; color: var(--brand-muted); margin-top: .35rem; }
.abo-features { padding: 1.25rem 2rem; margin: 0; }
.abo-features li {
    display: flex; align-items: center; gap: .6rem; padding: .45rem 0;
    font-size: .95rem; color: var(--brand-text); border-bottom: 1px solid #f0f4f2;
}
.abo-features li:last-child { border-bottom: none; }
.abo-features .feat-icon {
    width: 20px; height: 20px; background: var(--brand-green-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--brand-green); font-size: .7rem;
}
.abo-payment { padding: .75rem 2rem 1.25rem; text-align: center; }
.abo-payment-label {
    font-size: .8rem; color: var(--brand-muted); margin-bottom: .6rem;
    display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.abo-payment-methods { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.pay-chip {
    display: inline-flex; align-items: center; gap: .35rem;
    border: 1px solid var(--brand-border); border-radius: .4rem;
    padding: .3rem .75rem; font-size: .8rem; font-weight: 500;
    color: var(--brand-text); background: #f8faf9;
}
.abo-cta { padding: 0 2rem 1.75rem; }
.btn-abo {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-hover) 100%);
    border: none; color: #fff; font-weight: 700; font-size: 1.05rem;
    padding: .85rem; border-radius: var(--brand-radius-sm); width: 100%;
    transition: all var(--t); box-shadow: 0 3px 10px rgba(27,67,50,.22); cursor: pointer;
}
.btn-abo:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(27,67,50,.32); color: #fff; }
.abo-disclaimer { font-size: .78rem; color: var(--brand-muted); margin-top: .75rem; text-align: center; }
.abo-trust {
    display: flex; justify-content: center; gap: 1.25rem;
    padding: .75rem 2rem; border-top: 1px solid var(--brand-border); background: #f8faf9;
}
.trust-item { display: flex; align-items: center; gap: .35rem; font-size: .78rem; color: var(--brand-muted); }


/* ═══════════════════════════════════════════════════════════════════════
   11. RATGEBER PAGES (.rg-*)
   ═══════════════════════════════════════════════════════════════════════ */
.rg-root { font-family: 'DM Sans', system-ui, sans-serif; color: #1E252B; background: #F7F5EF; }

.rg-breadcrumb { background: #EEF2F3; border-bottom: 1px solid #dde5e8; padding: 9px 0; font-size: .78rem; color: #5E7283; }
.rg-breadcrumb a { color: #1F6F73; text-decoration: none; }
.rg-breadcrumb a:hover { text-decoration: underline; }
.rg-breadcrumb-sep { margin: 0 6px; }

.rg-hero { background: linear-gradient(150deg, #123047 0%, #1F6F73 100%); padding: 48px 28px 40px; max-width: 900px; margin: 20px auto 0; border-radius: 14px; }
.rg-hero-inner { max-width: 820px; margin: 0 auto; }
.rg-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); border-radius: 100px; padding: 4px 14px; font-size: .74rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px; }
.rg-hero h1 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 900; color: #fff; line-height: 1.2; margin: 0 0 14px; }
.rg-hero-sub { color: rgba(255,255,255,.72); font-size: .95rem; font-weight: 300; line-height: 1.65; margin: 0 0 20px; max-width: 620px; }
.rg-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .77rem; color: rgba(255,255,255,.55); }
.rg-meta span { display: flex; align-items: center; gap: 5px; }

.rg-layout { max-width: 820px; margin: 0 auto; padding: 40px 20px 64px; display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
@media (max-width: 780px) { .rg-layout { grid-template-columns: 1fr; } .rg-sidebar { display: none; } }

.rg-article h2 { font-size: 1.35rem; font-weight: 800; color: #123047; margin: 36px 0 12px; line-height: 1.3; }
.rg-article h2:first-child { margin-top: 0; }
.rg-article h3 { font-size: 1rem; font-weight: 700; color: #1E252B; margin: 24px 0 8px; }
.rg-article p { font-size: .93rem; color: #3E4D58; line-height: 1.78; margin: 0 0 14px; }
.rg-article ul, .rg-article ol { padding-left: 22px; margin: 0 0 14px; }
.rg-article li { font-size: .93rem; color: #3E4D58; line-height: 1.75; margin-bottom: 4px; }
.rg-article strong { color: #1E252B; font-weight: 600; }
.rg-article a { color: #1F6F73; text-decoration: none; border-bottom: 1px solid rgba(31,111,115,.3); transition: border-color .15s; }
.rg-article a:hover { border-color: #1F6F73; }

.rg-box { border-radius: 8px; padding: 14px 16px; margin: 20px 0; font-size: .88rem; line-height: 1.65; }
.rg-box-note { background: #FAF0DB; border-left: 3px solid #D99A2B; color: #6B4407; }
.rg-box-note strong { color: #8A5D10; }
.rg-box-tip  { background: #E6F5EE; border-left: 3px solid #3FA66B; color: #1E5C38; }
.rg-box-tip strong { color: #17492C; }
.rg-box-info { background: #EEF2F3; border-left: 3px solid #1F6F73; color: #1E3B45; }
.rg-box-info strong { color: #123047; }
.rg-box-warn { background: #FDECEA; border-left: 3px solid #B03A2E; color: #6B1A14; }

.rg-sources { margin-top: 36px; padding-top: 20px; border-top: 2px solid #EEF2F3; }
.rg-sources h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #5E7283; margin: 0 0 10px; }
.rg-sources ul { list-style: none; padding: 0; margin: 0; }
.rg-sources li { font-size: .79rem; color: #5E7283; padding: 4px 0; border-bottom: 1px solid #EEF2F3; display: flex; gap: 8px; align-items: baseline; }
.rg-sources li::before { content: '↗'; color: #1F6F73; flex-shrink: 0; font-size: .85rem; }
.rg-sources a { color: #1F6F73; text-decoration: none; border: none; }
.rg-sources a:hover { text-decoration: underline; }

.rg-disclaimer { margin-top: 28px; background: #F7F5EF; border: 1px solid #dde5e8; border-radius: 8px; padding: 13px 16px; font-size: .8rem; color: #697A87; line-height: 1.65; }
.rg-disclaimer strong { color: #5E7283; }

.rg-sidebar { position: sticky; top: 24px; }
.rg-sidebar-card { background: #fff; border-radius: 10px; border: 1px solid #dde5e8; padding: 18px 18px 16px; margin-bottom: 14px; box-shadow: 0 2px 10px rgba(18,48,71,.05); }
.rg-sidebar-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #5E7283; margin-bottom: 12px; }
.rg-sidebar-toc { list-style: none; padding: 0; margin: 0; }
.rg-sidebar-toc li { padding: 5px 0; border-bottom: 1px solid #EEF2F3; font-size: .83rem; }
.rg-sidebar-toc li:last-child { border-bottom: none; }
.rg-sidebar-toc a { color: #1F6F73; text-decoration: none; display: flex; gap: 7px; align-items: baseline; }
.rg-sidebar-toc a::before { content: '#'; color: #ccd7dc; font-size: .75rem; flex-shrink: 0; }
.rg-sidebar-toc a:hover { color: #123047; }
.rg-cta-card { background: linear-gradient(135deg, #123047, #1F6F73); border-radius: 10px; padding: 18px; text-align: center; }
.rg-cta-card p { color: rgba(255,255,255,.75); font-size: .83rem; margin: 0 0 12px; line-height: 1.6; }
.rg-cta-card .rg-btn { display: block; background: #3FA66B; color: #fff !important; font-weight: 600; font-size: .88rem; padding: 10px 16px; border-radius: 8px; text-decoration: none; margin-bottom: 7px; transition: opacity .15s; border: none; }
.rg-cta-card .rg-btn:hover { opacity: .88; }
.rg-cta-card .rg-btn-out { display: block; background: rgba(255,255,255,.12); color: rgba(255,255,255,.85) !important; font-weight: 500; font-size: .83rem; padding: 9px 16px; border-radius: 8px; text-decoration: none; transition: background .15s; border: none; }
.rg-cta-card .rg-btn-out:hover { background: rgba(255,255,255,.2); }

.rg-related { background: #EEF2F3; border-top: 1px solid #dde5e8; padding: 36px 20px; }
.rg-related-inner { max-width: 820px; margin: 0 auto; }
.rg-related h3 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #5E7283; margin-bottom: 16px; }
.rg-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
@media (max-width: 640px) { .rg-related-grid { grid-template-columns: 1fr; } }
.rg-related-card { background: #fff; border-radius: 8px; border: 1px solid #dde5e8; padding: 14px 16px; text-decoration: none; display: block; transition: box-shadow .15s; }
.rg-related-card:hover { box-shadow: 0 4px 14px rgba(18,48,71,.1); }
.rg-related-card-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #1F6F73; margin-bottom: 5px; }


/* ═══════════════════════════════════════════════════════════════════════
   12. AGB PAGE (.agb-*)
   ═══════════════════════════════════════════════════════════════════════ */
.agb-root {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1a1a1a;
}
.agb-header {
    background: linear-gradient(135deg, #123047 0%, #1F6F73 100%);
    border-radius: 14px;
    padding: 36px 36px 28px;
    margin-bottom: 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.agb-header::before {
    content: '§';
    position: absolute; right: 24px; top: -10px;
    font-size: 9rem; font-weight: 900;
    color: rgba(255,255,255,.07); line-height: 1;
    pointer-events: none;
}
.agb-header h1 { font-size: 1.75rem; font-weight: 700; margin: 0 0 6px; color: #fff; }
.agb-header .subtitle { font-size: .95rem; color: rgba(255,255,255,.80); margin: 0 0 20px; }
.agb-header .stand {
    display: inline-block;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    border-radius: 100px; font-size: .78rem; padding: 4px 12px; color: rgba(255,255,255,.9);
}
.agb-info {
    background: #EEF2F3; border: 1px solid #ccd7dc;
    border-radius: 12px; overflow: hidden; margin-bottom: 32px;
}
.agb-info table { width: 100%; border-collapse: collapse; margin: 0; }
.agb-info tr + tr { border-top: 1px solid #dde5e8; }
.agb-info td { padding: 10px 16px; font-size: .9rem; }
.agb-info td:first-child { font-weight: 600; color: #123047; background: #dce8ee; width: 180px; white-space: nowrap; }
.agb-info td:last-child { color: #1a1a1a; }
.agb-toc { background: #fff; border: 1px solid #ccd7dc; border-radius: 12px; padding: 20px 24px; margin-bottom: 36px; }
.agb-toc h2 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #5E7283; margin: 0 0 12px; }
.agb-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 24px; }
.agb-toc li { margin-bottom: 5px; font-size: .87rem; }
.agb-toc a { color: #123047; text-decoration: none; }
.agb-toc a:hover { text-decoration: underline; }
.agb-section { margin-bottom: 32px; scroll-margin-top: 80px; }
.agb-section h2 { font-size: 1.1rem; font-weight: 700; color: #123047; border-bottom: 2px solid #dce8ee; padding-bottom: 6px; margin: 0 0 14px; }
.agb-section h3 { font-size: .95rem; font-weight: 600; color: #123047; margin: 16px 0 8px; }
.agb-section p { font-size: .925rem; line-height: 1.75; color: #2c2c2c; margin: 0 0 10px; text-align: justify; }
.agb-section ul { margin: 8px 0 12px 0; padding-left: 24px; }
.agb-section ul li { font-size: .925rem; line-height: 1.7; color: #2c2c2c; margin-bottom: 4px; }
.agb-section ul li::marker { color: #3FA66B; }
.agb-hint { background: #fff8e1; border-left: 4px solid #ffc107; border-radius: 0 8px 8px 0; padding: 12px 16px; margin: 12px 0; font-size: .875rem; color: #4a3800; }
.agb-hint i { color: #ffc107; margin-right: 6px; }
.agb-footer { border-top: 1px solid #ccd7dc; padding-top: 20px; margin-top: 40px; font-size: .85rem; color: #5E7283; }
@media (max-width: 600px) {
    .agb-toc ol { columns: 1; }
    .agb-info td:first-child { width: 130px; }
    .agb-header { padding: 24px 20px 20px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   13. IMPRESSUM PAGE (.impressum-*)
   ═══════════════════════════════════════════════════════════════════════ */
.impressum-root {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1a1a1a;
}
.impressum-header {
    background: linear-gradient(135deg, #123047 0%, #1F6F73 100%);
    border-radius: 14px;
    padding: 36px 36px 28px;
    margin-bottom: 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.impressum-header::before {
    content: '§';
    position: absolute; right: 24px; top: -10px;
    font-size: 9rem; font-weight: 900;
    color: rgba(255,255,255,.07); line-height: 1;
    pointer-events: none;
}
.impressum-header h1 { font-size: 1.75rem; font-weight: 700; margin: 0 0 6px; color: #fff; }
.impressum-header .subtitle { font-size: .95rem; color: rgba(255,255,255,.80); margin: 0 0 20px; }
.impressum-header .stand {
    display: inline-block;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    border-radius: 100px; font-size: .78rem; padding: 4px 12px; color: rgba(255,255,255,.9);
}
.impressum-info {
    background: #EEF2F3; border: 1px solid #ccd7dc;
    border-radius: 12px; overflow: hidden; margin-bottom: 32px;
}
.impressum-info table { width: 100%; border-collapse: collapse; margin: 0; }
.impressum-info tr + tr { border-top: 1px solid #dde5e8; }
.impressum-info td { padding: 10px 16px; font-size: .9rem; }
.impressum-info td:first-child { font-weight: 600; color: #123047; background: #dce8ee; width: 200px; white-space: nowrap; }
.impressum-info td:last-child { color: #1a1a1a; }
.impressum-section { margin-bottom: 32px; scroll-margin-top: 80px; }
.impressum-section h2 { font-size: 1.1rem; font-weight: 700; color: #123047; border-bottom: 2px solid #dce8ee; padding-bottom: 6px; margin: 0 0 14px; }
.impressum-section p { font-size: .925rem; line-height: 1.75; color: #2c2c2c; margin: 0 0 10px; }
.impressum-section ul { margin: 8px 0 12px 0; padding-left: 24px; }
.impressum-section ul li { font-size: .925rem; line-height: 1.7; color: #2c2c2c; margin-bottom: 4px; }
.impressum-section ul li::marker { color: #3FA66B; }
.impressum-hint { background: #EEF2F3; border-left: 4px solid #1F6F73; border-radius: 0 8px 8px 0; padding: 12px 16px; margin: 12px 0; font-size: .875rem; color: #123047; }
.impressum-hint i { color: #1F6F73; margin-right: 6px; }
.impressum-footer { border-top: 1px solid #ccd7dc; padding-top: 20px; margin-top: 40px; font-size: .85rem; color: #5E7283; }
@media (max-width: 600px) {
    .impressum-info td:first-child { width: 130px; }
    .impressum-header { padding: 24px 20px 20px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   14. KONTAKT PAGE (.kontakt-*)
   ═══════════════════════════════════════════════════════════════════════ */
.kontakt-root {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.kontakt-header {
    background: linear-gradient(135deg, #123047 0%, #1F6F73 100%);
    border-radius: 14px;
    padding: 48px 36px 40px;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.kontakt-header::before {
    content: '✉';
    position: absolute; right: 28px; top: 0;
    font-size: 8rem; line-height: 1;
    color: rgba(255,255,255,.06); pointer-events: none;
}
.kontakt-header-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9); border-radius: 100px;
    padding: 5px 16px; font-size: .78rem; font-weight: 500;
    letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px;
}
.kontakt-header h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800; color: #fff; margin: 0 0 12px; line-height: 1.2;
}
.kontakt-header-sub {
    color: rgba(255,255,255,.75); font-size: .97rem;
    font-weight: 300; max-width: 480px; margin: 0 auto;
    line-height: 1.65;
}
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 700px) {
    .kontakt-grid { grid-template-columns: 1fr; }
}
.kontakt-form-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dde5e8;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(18,48,71,.06);
}
.kontakt-form-card h2 {
    font-size: 1.1rem; font-weight: 700; color: #123047;
    margin: 0 0 22px;
}
.kontakt-form-group { margin-bottom: 18px; }
.kontakt-form-group label {
    display: block; font-size: .85rem; font-weight: 600;
    color: #1E252B; margin-bottom: 6px;
}
.kontakt-form-group .form-control {
    border-radius: 8px; border-color: #ccd7dc;
    font-size: .93rem; transition: border-color .15s, box-shadow .15s;
}
.kontakt-form-group .form-control:focus {
    border-color: #1F6F73;
    box-shadow: 0 0 0 .2rem rgba(31,111,115,.15);
}
.kontakt-sicherheit {
    background: #EEF2F3; border-radius: 8px;
    padding: 14px 16px; margin-bottom: 18px;
    border: 1px solid #ccd7dc;
}
.kontakt-sicherheit-frage {
    font-size: .88rem; color: #123047; font-weight: 600; margin-bottom: 8px;
}
.kontakt-sicherheit input {
    width: 90px; border-radius: 6px; text-align: center;
    font-size: 1rem; font-weight: 600;
}
.btn-kontakt-send {
    background: linear-gradient(135deg, #123047 0%, #1F6F73 100%);
    border: none; color: #fff; font-weight: 700;
    font-size: 1rem; padding: .8rem 2rem;
    border-radius: 50px; width: 100%;
    transition: all .2s; box-shadow: 0 3px 10px rgba(18,48,71,.2);
}
.btn-kontakt-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(18,48,71,.3);
    color: #fff;
}
.kontakt-success {
    background: #E6F5EE; border: 1px solid #a8d8bc;
    border-radius: 12px; padding: 28px 32px;
    text-align: center;
}
.kontakt-success i { font-size: 2.5rem; color: #3FA66B; display: block; margin-bottom: 12px; }
.kontakt-success h3 { font-size: 1.2rem; font-weight: 700; color: #123047; margin: 0 0 8px; }
.kontakt-success p { font-size: .93rem; color: #3E5C3E; margin: 0; }
.kontakt-sidebar-card {
    background: #fff; border-radius: 12px;
    border: 1px solid #dde5e8; padding: 22px;
    box-shadow: 0 2px 10px rgba(18,48,71,.05);
    margin-bottom: 16px;
}
.kontakt-sidebar-title {
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: #5E7283; margin-bottom: 14px;
}
.kontakt-info-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .88rem; color: #1E252B;
    padding: 8px 0; border-bottom: 1px solid #EEF2F3;
}
.kontakt-info-item:last-child { border-bottom: none; }
.kontakt-info-item i { color: #1F6F73; margin-top: 2px; flex-shrink: 0; }
.kontakt-info-item a { color: #1F6F73; text-decoration: none; }
.kontakt-info-item a:hover { text-decoration: underline; }
.kontakt-field-error {
    font-size: .8rem; color: #B03A2E; margin-top: 4px;
}

.rg-related-card-title { font-size: .88rem; font-weight: 600; color: #123047; line-height: 1.4; }


/* ═══════════════════════════════════════════════════════════════
   15. ANLAGEVERZEICHNIS (.av-*)
   ═══════════════════════════════════════════════════════════════ */
.av-header    { background: linear-gradient(135deg, #123047, #1F6F73); color: #fff; border-radius: 12px; padding: 1.5rem 2rem; margin-bottom: 1.5rem; }
.av-stat      { background: rgba(255,255,255,.12); border-radius: 8px; padding: .6rem 1.1rem; text-align: center; min-width: 130px; }
.av-stat-val  { font-size: 1.6rem; font-weight: 800; color: #4ecdc4; }
.av-stat-lbl  { font-size: .7rem; opacity: .7; text-transform: uppercase; letter-spacing: .06em; }
.gwg-badge    { background: #fef3c7; color: #92400e; border-radius: 20px; padding: 1px 8px; font-size: .72rem; font-weight: 700; }
.abgang-badge { background: #fee2e2; color: #991b1b; border-radius: 20px; padding: 1px 8px; font-size: .72rem; font-weight: 700; }
.progress-afa      { height: 6px; border-radius: 4px; background: #e5e7eb; }
.progress-afa-fill { height: 6px; border-radius: 4px; background: linear-gradient(90deg, #4ecdc4, #2bb8af); }

/* E1a-Vorschau */
.jahr-card    { border: 1px solid #dee2e6; border-radius: 10px; margin-bottom: 1.2rem; overflow: hidden; }
.jahr-header  { padding: .65rem 1rem; font-weight: 700; font-size: .95rem; display: flex; justify-content: space-between; align-items: center; }
.jahr-current { background: #dbeafe; border-color: #93c5fd; }
.jahr-future  { background: #f0fdf4; border-color: #86efac; }
.jahr-past    { background: #f9fafb; border-color: #e5e7eb; color: #6b7280; }
.kz-badge     { background: #123047; color: #fff; border-radius: 6px; padding: 2px 8px; font-size: .75rem; font-weight: 700; font-family: monospace; }
.afa-sum      { font-size: 1.1rem; font-weight: 800; }


/* ═══════════════════════════════════════════════════════════════
   16. AUSGANGSRECHNUNG (.ar-*)
   ═══════════════════════════════════════════════════════════════ */
.ar-header {
    background: linear-gradient(135deg, #123047 0%, #1F6F73 100%);
    color: #fff; border-radius: 12px; padding: 1.5rem 2rem; margin-bottom: 1.5rem;
}
.ar-section-card { border: none; box-shadow: 0 1px 4px rgba(0,0,0,.08); border-radius: 10px; margin-bottom: 1.2rem; }
.ar-section-card .card-header {
    background: #f8f9fa; border-radius: 10px 10px 0 0 !important;
    font-weight: 600; font-size: .9rem; color: #123047;
}
.ar-pos-row {
    background: #fff; border: 1px solid #dee2e6; border-radius: 8px;
    padding: .75rem 1rem; margin-bottom: .5rem;
}
.ar-betrag-preview { background: #eaf4f4; border-radius: 8px; padding: 1rem 1.25rem; }


/* ═══════════════════════════════════════════════════════════════
   17. NEWSLETTER (.nl-*)
   ═══════════════════════════════════════════════════════════════ */
/* Index */
.nl-header     { background: linear-gradient(135deg, #123047 0%, #1F6F73 100%); color: #fff; border-radius: 12px; padding: 1.5rem 2rem; margin-bottom: 1.5rem; }
.nl-stat       { background: rgba(255,255,255,.12); border-radius: 8px; padding: .75rem 1.25rem; text-align: center; min-width: 110px; }
.nl-stat-val   { font-size: 2rem; font-weight: 800; color: #4ecdc4; }
.nl-stat-lbl   { font-size: .72rem; opacity: .7; text-transform: uppercase; letter-spacing: .06em; }
.nl-card       { border: 1px solid #e5e7eb; border-radius: 10px; padding: 1rem 1.25rem; background: #fff; transition: box-shadow .15s; }
.nl-card:hover { box-shadow: 0 4px 16px rgba(18,48,71,.1); }
.nl-card-title { font-weight: 700; color: #123047; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 340px; }
.nl-card-meta  { font-size: .76rem; color: #6c757d; margin-top: 3px; }
.badge-entwurf  { background: #fff3cd; color: #856404; border-radius: 20px; padding: 2px 10px; font-size: .72rem; font-weight: 700; }
.badge-gesendet { background: #d1fae5; color: #065f46; border-radius: 20px; padding: 2px 10px; font-size: .72rem; font-weight: 700; }
.badge-oeffnung { background: #e8f4fd; color: #1565c0; border-radius: 20px; padding: 2px 10px; font-size: .72rem; font-weight: 700; }
.emp-badge     { background: #e8f4fd; color: #1565c0; border-radius: 20px; padding: 2px 10px; font-size: .76rem; font-weight: 600; }
.table-emp th  { font-size: .73rem; text-transform: uppercase; letter-spacing: .05em; color: #6c757d; border-bottom: 2px solid #dee2e6; }
.section-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #6c757d; margin-bottom: .75rem; }

/* Editor */
.nl-editor       { max-width: 1100px; }
.nl-preview-wrap { border: 1px solid #dee2e6; border-radius: 10px; overflow: hidden; background: #f0f2f5; min-height: 300px; }
.nl-preview-wrap iframe { width: 100%; border: none; min-height: 520px; }
.nl-send-bar     { background: linear-gradient(135deg, #123047, #1e4a6e); border-radius: 12px; padding: 1.25rem 1.5rem; color: #fff; }
.char-counter    { font-size: .74rem; color: #6c757d; text-align: right; margin-top: 2px; }
.modus-badge     { font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.modus-entwurf   { background: #fff3cd; color: #856404; }
.modus-kopie     { background: #e0f2fe; color: #0369a1; }
.modus-neu       { background: #d1fae5; color: #065f46; }


/* ═══════════════════════════════════════════════════════════════
   18. INLANDSDIÄTEN (.id-*)
   ═══════════════════════════════════════════════════════════════ */
.id-header-card { background: linear-gradient(135deg, #123047, #1F6F73); color: #fff; border-radius: 12px; padding: 1.5rem 2rem; margin-bottom: 1.5rem; }
.id-stat      { background: rgba(255,255,255,.12); border-radius: 8px; padding: .6rem 1.1rem; text-align: center; min-width: 130px; }
.id-stat-val  { font-size: 1.6rem; font-weight: 800; color: #4ecdc4; }
.id-stat-lbl  { font-size: .7rem; opacity: .7; text-transform: uppercase; letter-spacing: .06em; }
.table-diaeten th { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: #6c757d; border-bottom: 2px solid #dee2e6; }
.table-diaeten td { vertical-align: middle; }
.h-badge    { background: #e8f4fd; color: #1565c0; border-radius: 20px; padding: 2px 10px; font-weight: 600; font-size: .82rem; }
.betrag-cell { font-weight: 700; color: #1a3a52; }


/* ═══════════════════════════════════════════════════════════════
   19. REISEPAUSCHALEN (.rp-*)
   ═══════════════════════════════════════════════════════════════ */
.rp-header-card { background: linear-gradient(135deg, #123047 0%, #1F6F73 100%); color: #fff; border-radius: 12px; padding: 1.5rem 2rem; margin-bottom: 1.5rem; }
.rp-stat      { background: rgba(255,255,255,.12); border-radius: 8px; padding: .6rem 1.1rem; text-align: center; min-width: 130px; }
.rp-stat-val  { font-size: 1.6rem; font-weight: 800; color: #4ecdc4; }
.rp-stat-lbl  { font-size: .7rem; opacity: .7; text-transform: uppercase; letter-spacing: .06em; }
.table-reisen th { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: #6c757d; border-bottom: 2px solid #dee2e6; }
.table-reisen td { vertical-align: middle; }
.km-badge  { background: #e8f4fd; color: #1565c0; border-radius: 20px; padding: 2px 10px; font-weight: 600; font-size: .82rem; }


/* ═══════════════════════════════════════════════════════════════
   20. HILFE PAGE (.hilfe-*)
   ═══════════════════════════════════════════════════════════════ */
.hilfe-root { max-width: 860px; margin: 0 auto; padding: 0 1rem 4rem; }

.hilfe-hero {
    background: linear-gradient(150deg, #123047 0%, #1F6F73 100%);
    padding: 56px 28px 48px; text-align: center; position: relative;
    overflow: hidden; max-width: 900px; margin: 28px auto 0; border-radius: 14px;
}
.hilfe-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(63,166,107,.15) 0%, transparent 65%);
    pointer-events: none;
}
.hilfe-hero-badge {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9); font-size: .78rem; font-weight: 500;
    letter-spacing: .04em; text-transform: uppercase; padding: 5px 16px;
    border-radius: 2rem; margin-bottom: 1.2rem;
}
.hilfe-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: .75rem; line-height: 1.2; }
.hilfe-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 600px; margin: 0 auto 1.8rem; line-height: 1.6; font-weight: 300; }
.hilfe-hero-nav { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.hilfe-hero-navbtn {
    display: inline-flex; align-items: center; padding: .4rem .85rem;
    border: 1.5px solid rgba(255,255,255,.3); border-radius: 2rem;
    font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.9);
    text-decoration: none; background: rgba(255,255,255,.1);
    transition: background var(--t), border-color var(--t), color var(--t);
}
.hilfe-hero-navbtn:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); color: #fff; }
.hilfe-steps { display: flex; flex-direction: column; gap: 0; margin: 0 0 2rem; }
.hilfe-step { display: grid; grid-template-columns: 56px 1fr; gap: 0 1.5rem; padding: 2rem 0; border-top: 1px solid var(--brand-border); }
.hilfe-step:first-child { border-top: none; }
.hilfe-step-aside { display: flex; flex-direction: column; align-items: center; padding-top: .25rem; }
.hilfe-step-num { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-green); color: #fff; font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 8px rgba(18,48,71,.18); }
.hilfe-step-line { flex: 1; width: 2px; background: var(--brand-border); margin-top: .5rem; min-height: 24px; }
.hilfe-step-body { padding: .25rem 0; }
.hilfe-step-icon { font-size: 2rem; line-height: 1; margin-bottom: .4rem; }
.hilfe-step-tag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-accent); margin-bottom: .3rem; }
.hilfe-step-h { font-size: 1.35rem; font-weight: 800; color: var(--brand-green); margin-bottom: .7rem; }
.hilfe-step-p { color: var(--brand-text); line-height: 1.65; margin-bottom: 1.1rem; }
.hilfe-substeps { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.1rem; }
.hilfe-substep { display: flex; gap: .75rem; align-items: flex-start; background: #fff; border: 1px solid var(--brand-border); border-radius: var(--brand-radius-sm); padding: .7rem .9rem; font-size: .9rem; line-height: 1.55; }
.hilfe-substep-num { width: 24px; height: 24px; border-radius: 50%; background: var(--brand-green-light); color: var(--brand-green); font-size: .75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .05rem; }
.hilfe-fields-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .6rem; margin-bottom: 1.1rem; }
.hilfe-field { background: #fff; border: 1px solid var(--brand-border); border-radius: var(--brand-radius-sm); padding: .65rem .85rem; }
.hilfe-field--important { border-left: 3px solid var(--brand-accent); }
.hilfe-field-label { font-size: .82rem; font-weight: 700; color: var(--brand-green); margin-bottom: .2rem; }
.hilfe-field-desc { font-size: .8rem; color: var(--brand-muted); line-height: 1.45; }
.hilfe-tip, .hilfe-warn, .hilfe-info-box { display: flex; gap: .6rem; align-items: flex-start; border-radius: var(--brand-radius-sm); padding: .75rem 1rem; font-size: .86rem; line-height: 1.55; margin-top: .6rem; }
.hilfe-tip { background: rgba(63,166,107,.08); border: 1px solid rgba(63,166,107,.25); color: #1e5c36; }
.hilfe-tip i { color: var(--brand-accent); margin-top: .15rem; flex-shrink: 0; }
.hilfe-warn { background: rgba(239,183,0,.08); border: 1px solid rgba(239,183,0,.35); color: #7a5c00; }
.hilfe-warn i { color: #c99c00; margin-top: .15rem; flex-shrink: 0; }
.hilfe-info-box { background: rgba(18,48,71,.06); border: 1px solid rgba(18,48,71,.14); color: var(--brand-green); }
.hilfe-info-box i { color: var(--brand-green); margin-top: .15rem; flex-shrink: 0; font-size: 1rem; }
.hilfe-platform-block { margin-bottom: 1.25rem; border: 1px solid var(--brand-border); border-radius: var(--brand-radius); overflow: hidden; background: #fff; }
.hilfe-platform-header { display: flex; align-items: center; gap: .6rem; background: var(--brand-green-light); border-bottom: 1px solid var(--brand-border); padding: .65rem 1rem; font-size: .92rem; color: var(--brand-green); }
.hilfe-platform-icon { font-size: 1.2rem; line-height: 1; }
.hilfe-platform-block .hilfe-substeps { padding: .75rem .75rem 0; margin-bottom: 0; }
.hilfe-platform-block .hilfe-tip { margin: 0 .75rem .75rem; border-radius: var(--brand-radius-sm); }
.hilfe-platform-block code { background: var(--brand-green-light); color: var(--brand-green); border-radius: 4px; padding: .1rem .4rem; font-size: .85em; font-family: monospace; }
.hilfe-faq-section { padding: 3rem 0 2rem; border-top: 2px solid var(--brand-border); margin-top: 1rem; }
.hilfe-section-label { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-accent); margin-bottom: .4rem; }
.hilfe-section-title { text-align: center; font-size: 1.6rem; font-weight: 800; color: var(--brand-green); margin-bottom: 1.8rem; }
.hilfe-faq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.hilfe-faq-card { background: #fff; border: 1px solid var(--brand-border); border-radius: var(--brand-radius); padding: 1.1rem 1.2rem; box-shadow: var(--brand-shadow); }
.hilfe-faq-icon { font-size: 1.3rem; color: var(--brand-accent); margin-bottom: .5rem; }
.hilfe-faq-card h3 { font-size: .95rem; font-weight: 700; color: var(--brand-green); margin-bottom: .4rem; }
.hilfe-faq-card p { font-size: .85rem; color: var(--brand-muted); line-height: 1.55; margin: 0; }
.hilfe-cta-section { text-align: center; background: var(--brand-green); color: #fff; border-radius: var(--brand-radius); padding: 2.5rem 2rem; margin-top: 3rem; }
.hilfe-cta-section h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; }
.hilfe-cta-section p { color: rgba(255,255,255,.75); margin-bottom: 1.4rem; }
.hilfe-cta-btns { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.hilfe-btn-p, .hilfe-btn-s { display: inline-flex; align-items: center; gap: .45rem; padding: .65rem 1.4rem; border-radius: 2rem; font-size: .9rem; font-weight: 700; text-decoration: none; transition: opacity var(--t), background var(--t); }
.hilfe-btn-p { background: var(--brand-accent); color: #fff; }
.hilfe-btn-p:hover { opacity: .88; color: #fff; }
.hilfe-btn-s { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.hilfe-btn-s:hover { background: rgba(255,255,255,.22); color: #fff; }
@media (max-width: 560px) {
    .hilfe-step { grid-template-columns: 40px 1fr; gap: 0 1rem; }
    .hilfe-step-num { width: 34px; height: 34px; font-size: .95rem; }
    .hilfe-step-h { font-size: 1.15rem; }
    .hilfe-fields-grid { grid-template-columns: 1fr; }
    .hilfe-hero-nav { flex-direction: column; align-items: center; }
}


/* ═══════════════════════════════════════════════════════════════
   21. LANDING PAGE (.lp-*) – Home/Index.cshtml (nicht authentifiziert)
   ═══════════════════════════════════════════════════════════════ */
.lp-root {
    font-family: 'DM Sans', sans-serif;
    background: #F7F5EF;
    min-height: calc(100vh - 56px);
    overflow-x: hidden;
}

/* HERO */
.lp-hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 40%, rgba(255,255,255,.45) 0%, transparent 70%),
                radial-gradient(ellipse 40% 50% at 10% 80%, rgba(58,95,60,.10) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.lp-hero .container { position: relative; z-index: 1; }
.lp-hero .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.65); border: 1px solid rgba(58,95,60,.25);
    border-radius: 100px; padding: 5px 14px 5px 10px;
    font-size: .78rem; font-weight: 500; color: #123047;
    letter-spacing: .04em;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}
.lp-hero .eyebrow i { font-size: 1rem; color: #3FA66B; }
.lp-hero h1 {
    font-family: 'DM Sans', sans-serif; font-size: clamp(2.1rem, 4.2vw, 3.1rem);
    font-weight: 900; line-height: 1.12; color: #2e2e2e; margin-bottom: 22px;
}
.lp-hero h1 em { font-style: normal; position: relative; display: inline-block; }
.lp-hero h1 em::after {
    content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
    height: 6px; background: linear-gradient(90deg, #1F6F73, #3FA66B);
    border-radius: 3px; z-index: -1;
}
.lp-hero .lead {
    font-size: 1.05rem; font-weight: 300; color: #1E252B; line-height: 1.7;
    max-width: 520px; margin-bottom: 28px;
    position: relative; z-index: 1;
}
.lp-hero .trust-line { font-size: .82rem; color: #5a6e5c; margin-top: 16px; margin-bottom: 0; }

.lp-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #123047 0%, #1F6F73 100%);
    color: #fff !important; font-weight: 500; font-size: 1rem;
    padding: 14px 30px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 8px 24px rgba(18,48,71,.30); transition: transform .2s, box-shadow .2s;
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(18,48,71,.45); }
.lp-btn-primary:focus-visible { outline: 3px solid #3FA66B; outline-offset: 3px; }

.lp-btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.7); color: #123047 !important; font-weight: 500; font-size: 1rem;
    padding: 13px 26px; border-radius: 50px; border: 1.5px solid rgba(18,48,71,.30);
    text-decoration: none; backdrop-filter: blur(6px); transition: background .2s, transform .2s;
}
.lp-btn-secondary:hover { background: rgba(255,255,255,.95); transform: translateY(-2px); }

/* Mock-UI */
.lp-mockui {
    background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.9);
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 60px rgba(58,95,60,.12), inset 0 1px 0 rgba(255,255,255,.8);
    backdrop-filter: blur(12px); overflow: hidden;
    transform: perspective(900px) rotateY(-4deg) rotateX(2deg); transition: transform .4s ease;
}
.lp-mockui:hover { transform: perspective(900px) rotateY(-1deg) rotateX(0deg); }
.lp-mockui-bar {
    background: rgba(238,242,243,.9); border-bottom: 1px solid rgba(18,48,71,.15);
    padding: 10px 14px; display: flex; align-items: center; gap: 6px;
}
.lp-mockui-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-mock-row {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px;
    border-bottom: 1px solid rgba(58,95,60,.08); animation: slideIn .5s ease both;
}
.lp-mock-row:nth-child(2) { animation-delay: .1s; }
.lp-mock-row:nth-child(3) { animation-delay: .2s; }
.lp-mock-row:nth-child(4) { animation-delay: .3s; }
.lp-mock-row:nth-child(5) { animation-delay: .4s; }
.lp-mock-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.lp-mock-line  { height: 8px; border-radius: 4px; background: #d0e5c0; }
.lp-mock-badge { font-size: .65rem; font-weight: 600; padding: 2px 7px; border-radius: 100px; margin-left: auto; flex-shrink: 0; }
.lp-kz { font-size: .6rem; font-weight: 700; background: #d8eec8; color: #2e2e2e; border: 1px solid #a8cc65; border-radius: 4px; padding: 1px 5px; margin-left: 4px; }

/* Trust Bar */
.lp-trust-bar {
    background: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.7);
    border-bottom: 1px solid rgba(255,255,255,.7); backdrop-filter: blur(8px); padding: 20px 0;
}
.lp-trust-badge { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 500; color: #123047; }
.lp-trust-badge i { color: #3FA66B; font-size: 1rem; }

/* Sections */
.lp-section { padding: 56px 0 48px; }
.lp-section-title { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 900; color: #123047; margin-bottom: 10px; }
.lp-section-sub { color: #5E7283; font-size: .95rem; font-weight: 300; max-width: 500px; }

/* Problem Block */
.lp-problem-card {
    background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.85);
    border-radius: 16px; padding: 22px; height: 100%; backdrop-filter: blur(8px);
    transition: background .6s ease, border-color .6s ease, box-shadow .6s ease, transform .4s ease;
}
.lp-problem-card:hover {
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.85);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(58,95,60,.14);
}
.lp-problem-card:hover h6 { color: #2e2e2e; }
.lp-problem-card:hover p  { color: #5a6e5c; }
.lp-problem-card:hover .lp-prob-icon { background: linear-gradient(135deg, #EEF2F3, #c5dde0); color: #123047; }
.lp-prob-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 12px;
    background: linear-gradient(135deg, #EEF2F3, #c5dde0); color: #123047;
}
.lp-problem-card h6 { font-weight: 700; color: #2e2e2e; margin-bottom: 6px; font-size: .95rem; }
.lp-problem-card p  { font-size: .85rem; color: #5a6e5c; margin: 0; line-height: 1.6; }
.lp-problem-resolution {
    transition: background .6s ease, color .6s ease, box-shadow .6s ease, transform .4s ease;
}


/* Lösungsblock */
.lp-solution { background: linear-gradient(135deg, #123047 0%, #0d2235 60%, #1F6F73 100%); padding: 60px 0 52px; color: #fff; border-radius: 16px; margin: 0 16px; }
.lp-solution-point {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12);
}
.lp-solution-point:last-child { border-bottom: none; }
.lp-solution-num {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    background: rgba(31,111,115,.25); border: 1.5px solid #1F6F73; color: #62bc89;
    font-size: 1rem; font-weight: 900; display: flex; align-items: center; justify-content: center;
}
.lp-solution-point p { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.65; margin: 0; }
.lp-solution-point p strong { color: #fff; font-weight: 600; }
.lp-solution-visual {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px; padding: 24px; backdrop-filter: blur(8px);
}
.lp-sv-header {
    font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em;
    color: rgba(255,255,255,.5); margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    display: flex; justify-content: space-between; align-items: center;
}
.lp-sv-stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; }
.lp-sv-stat:last-child { margin-bottom: 0; }
.lp-sv-stat-label { font-size: .7rem; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.lp-sv-stat-value { font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1; }
.lp-sv-stat-sub { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 3px; }
.lp-sv-bar { height: 5px; border-radius: 3px; background: rgba(255,255,255,.12); margin-top: 8px; overflow: hidden; }
.lp-sv-bar-fill {
    height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, #1F6F73, #3FA66B);
    animation: barGrow 1.2s ease both;
}
@keyframes barGrow { from { width: 0 !important; } }

/* Steps */
.lp-steps {
    background: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.6);
    border-bottom: 1px solid rgba(255,255,255,.6); padding: 56px 0 48px;
}
.lp-step { display: flex; gap: 16px; align-items: flex-start; }
.lp-step-num {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #123047, #1F6F73); color: #fff;
    font-size: 1.2rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(18,48,71,.30);
}
.lp-step-body h5 { font-size: 1rem; font-weight: 700; color: #2e2e2e; margin-bottom: 5px; }
.lp-step-body p  { font-size: .875rem; color: #5a6e5c; line-height: 1.6; margin: 0; }
.lp-step-connector {
    width: 2px; background: linear-gradient(to bottom, #1F6F73, transparent);
    height: 28px; margin: 4px 0 4px 21px;
}

/* Benefits */
.lp-benefit-card {
    background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.85);
    border-radius: 16px; padding: 22px; height: 100%; backdrop-filter: blur(8px);
    transition: transform .25s, box-shadow .25s;
}
.lp-benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(58,95,60,.14); }
.lp-benefit-icon {
    width: 44px; height: 44px; background: linear-gradient(135deg, #EEF2F3, #c5dde0);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #123047; margin-bottom: 12px;
}
.lp-benefit-card h5 { font-size: .95rem; font-weight: 700; color: #2e2e2e; margin-bottom: 6px; }
.lp-benefit-card p  { font-size: .85rem; color: #5a6e5c; line-height: 1.6; margin: 0; }

/* Control/Security */
.lp-control { background: linear-gradient(135deg, #123047 0%, #0d2235 60%, #1F6F73 100%); padding: 56px 0 48px; color: #fff; border-radius: 16px; margin: 0 16px; }
.lp-control h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; margin-bottom: 10px; }
.lp-control .lead { font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.80); line-height: 1.7; max-width: 500px; margin-bottom: 28px; }
.lp-control-point { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.lp-control-point i { font-size: 1.2rem; color: #62bc89; flex-shrink: 0; margin-top: 2px; }
.lp-control-point p { font-size: .875rem; color: rgba(255,255,255,.85); line-height: 1.6; margin: 0; }
.lp-control-screen {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
    border-radius: 16px; padding: 20px; backdrop-filter: blur(8px);
}
.lp-control-screen .lp-screen-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.6); margin-bottom: 8px; }

/* Preis */
.lp-price-section { padding: 56px 0 48px; }
.lp-price-box {
    background: rgba(255,255,255,.7); border: 2px solid rgba(18,48,71,.18);
    border-radius: 20px; padding: 36px 40px; text-align: center;
    backdrop-filter: blur(8px); box-shadow: 0 4px 24px rgba(18,48,71,.10);
}
.lp-price-tag { font-size: 3rem; font-weight: 900; color: #123047; line-height: 1; }
.lp-price-tag span { font-size: 1.2rem; font-weight: 400; color: #5a6e5c; }
.lp-price-sub { font-size: .85rem; color: #5a6e5c; margin-top: 4px; margin-bottom: 20px; }
.lp-price-features { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
.lp-price-features li {
    display: flex; gap: 8px; align-items: flex-start;
    font-size: .875rem; color: #1E252B; padding: 5px 0;
    border-bottom: 1px solid rgba(18,48,71,.10);
}
.lp-price-features li i { color: #3FA66B; flex-shrink: 0; margin-top: 2px; }

/* CTA */
.lp-cta { padding: 64px 0 72px; text-align: center; }
.lp-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: #123047; margin-bottom: 14px; }
.lp-cta p  { color: #5E7283; font-size: 1rem; font-weight: 300; margin-bottom: 30px; }


/* ═══════════════════════════════════════════════════════════════
   22. BANKGEBÜHREN (.bank-*, .ki-badge, .kz-9220, .kz-9090)
   ═══════════════════════════════════════════════════════════════ */
.bank-header {
    background: linear-gradient(135deg, #1a3a52 0%, #0d6efd 100%);
    color: #fff; border-radius: 12px; padding: 1.5rem 2rem; margin-bottom: 1.5rem;
}
.kz-9220   { background: #d1ecf1; color: #0c5460; }
.kz-9090   { background: #d4edda; color: #155724; }
.betrag-input { text-align: right; font-weight: 600; }
.summe-box { background: #f8f9fa; border-radius: 8px; padding: 1rem 1.5rem; }
#belegSucheErgebnisse {
    position: absolute; z-index: 1000; width: 100%;
    background: #fff; border: 1px solid #dee2e6; border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1); max-height: 300px; overflow-y: auto;
}
.ki-badge {
    background: linear-gradient(135deg, #6f42c1, #0d6efd);
    color: #fff; border-radius: 20px; padding: 2px 10px;
    font-size: .72rem; font-weight: 700;
}
