:root {
    --bg: #F0F4FA;
    --surface: #ffffff;
    --surface-soft: #F8FAFD;
    --line: #D3DBE8;
    --line-strong: #9EAFC6;
    --text: #111827;
    --muted: #607184;
    --primary: #0F2544;
    --primary-soft: #EDF0F8;
    --accent: #C9A961;
    --success-bg: #EDF0F8;
    --success-text: #0F2544;
    --neutral-bg: #EEF2F7;
    --neutral-text: #5f6f7f;
    --shadow: 0 18px 40px rgba(9, 21, 36, 0.08);
    --tenant-accent-custom: #0F2544;
    --radius-sm: 4px;
    --radius-md: 4px;
    --radius-lg: 4px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(15, 37, 68, 0.06), transparent 28%),
        radial-gradient(circle at top right, rgba(17, 24, 39, 0.03), transparent 26%),
        linear-gradient(180deg, #F8FAFD 0%, var(--bg) 100%);
    color: var(--text);
}

body {
    min-height: 100vh;
}

.login-body {
    display: grid;
    place-items: center;
    padding: 24px;
}

/* Hidden honeypot field for spam protection (CSP-safe, no inline style). */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

a {
    color: inherit;
}

input,
select,
textarea,
button,
.btn,
.primary-action-button,
.detail-button,
.settings-input,
.settings-select,
.settings-textarea,
.settings-btn,
.iia-topbar-btn,
.iia-lang-btn,
.iia-sidebar-toggle,
.iia-nav-item,
.iia-nav-subitem,
.iia-nav-company-btn,
.iia-company-toggle,
.iia-company-sublink,
.dashboard-feedback,
.dashboard-feedback-neutral,
.content-card,
.invoice-action-card,
.invoice-meta-box,
.dash-panel,
.dash-metric-card,
.dash-highlight-card,
.dash-pill,
.login-card,
.login-feedback-error,
.login-feedback-neutral {
    border-radius: 4px !important;
}

.top-banner {
    padding: 28px 32px 20px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 24%),
        linear-gradient(135deg, #18324a 0%, var(--tenant-accent-custom) 60%, #557394 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 1440px;
    margin: 0 auto;
}

.brand-wrap-split {
    justify-content: space-between;
    width: 100%;
}

.brand-mark {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tenant-accent-custom);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, #e8f0f6 100%);
    box-shadow: 0 10px 24px rgba(14, 27, 40, 0.14);
}

.brand-title {
    margin: 0 0 6px;
    font-size: 31px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.brand-subtitle {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
}

.tenant-panel {
    min-width: 260px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(9, 22, 35, 0.12);
}

.tenant-label {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.tenant-name {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.tenant-switch-form {
    margin: 0;
}

.tenant-user-meta {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.tenant-logout-form {
    margin: 0 0 12px;
}

.tenant-logout-button {
    width: 100%;
}

.tenant-select {
    width: 100%;
}

.tenant-color-input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    padding: 6px;
}

.tenant-hint {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted);
}

.tenant-textarea {
    width: 100%;
    min-height: 110px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text);
    padding: 12px 14px;
    resize: vertical;
}

.top-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-item {
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-item:hover,
.nav-item.active {
    background: var(--primary-soft);
    color: var(--tenant-accent-custom);
    transform: translateY(-1px);
}

.hidden {
    display: none;
}

@media (max-width: 640px) {
    .top-banner,
    .top-nav,
    .layout-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand-wrap {
        align-items: flex-start;
    }

    .brand-mark {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .brand-title {
        font-size: 24px;
    }

    .top-nav {
        gap: 8px;
    }

    .nav-item {
        font-size: 13px;
    }
}
.info-card,
.content-card {
    background: rgba(255, 252, 246, 0.92);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.info-card {
    padding: 22px;
}

.info-card h3 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}

.info-number {
    margin: 0;
    font-size: 38px;
    line-height: 1;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.info-number-money {
    font-size: 30px;
}

.content-card {
    padding: 26px;
    overflow-x: auto;
}

.content-card h3 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #f4efe5;
    padding: 18px 18px;
    white-space: nowrap;
}

.table tbody td {
    color: #3f493e;
    font-size: 14px;
    font-weight: 500;
    padding: 18px 18px;
    line-height: 1.5;
    background: rgba(255, 252, 246, 0.84);
}

.table tbody tr {
    height: 78px;
}

.table > :not(caption) > * > * {
    border-color: #ddd4c4;
}

.table tbody tr:hover td {
    background: #f9f5ee;
}

.table td,
.table th {
    vertical-align: middle;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.detail-item {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
}

.detail-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}

.detail-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #314352;
}

.detail-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.dokument-liste {
    display: grid;
    gap: 14px;
}

.dokument-eintrag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface-soft);
}

.dokument-eintrag strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.dokument-eintrag p {
    margin: 0 0 4px;
    color: #3d5060;
    font-size: 14px;
}

.dokument-eintrag small {
    color: var(--muted);
    font-size: 12px;
}

.summary-button {
    text-align: left;
    cursor: pointer;
}

.summary-button .info-number {
    width: 100%;
}

.geraete-search-form {
    justify-content: flex-start;
}

.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.list-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.list-pagination-meta {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.list-pagination-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inline-form-reset {
    display: inline;
    margin: 0;
}

.form-reset-margin {
    margin: 0;
}

.inline-flex-wrap-gap-md {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.inline-flex-wrap-gap-sm {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.min-height-520 {
    min-height: 520px;
}

.truncate-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.company-caret-text {
    font-size: 0.7rem;
    color: var(--iia-muted);
    flex-shrink: 0;
    margin-left: 0.25rem;
}

.iia-nav-icon-sm {
    width: 14px;
    height: 14px;
}

.mt-xxs {
    margin-top: 0.2rem;
}

.mt-1rem {
    margin-top: 1rem;
}

.mt-0 {
    margin-top: 0;
}

.cockpit-text {
    color: var(--cockpit-text);
}

.mf-summary-value-md {
    font-size: 0.78rem;
}

.mf-summary-value-sm {
    font-size: 0.66rem;
    line-height: 1.2;
}

.invoice-note-muted {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 980px) {
    .detail-section-grid {
        grid-template-columns: 1fr;
    }

    .list-pagination {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    /* Section-Card */
    .dashboard-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .dashboard-header {
        margin-bottom: 1rem;
    }

    .dashboard-title {
        font-size: 1.3rem;
    }

    /* Info-Card */
    .info-card {
        padding: 14px;
    }

    .info-number {
        font-size: 26px;
    }

    /* Content-Card */
    .content-card {
        padding: 14px;
    }

    /* Detail-Item */
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Dokument-Eintrag: vertikal */
    .dokument-eintrag {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    /* Pagination: vertikal */
    .list-pagination {
        gap: 0.75rem;
    }

    .list-pagination-links {
        gap: 6px;
    }
}

/* ── Page header ─────────────────────────────────────────────────────── */
.dashboard-header {
    margin-bottom: 1.75rem;
}

.dashboard-title {
    margin: 0 0 0.25rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0a1628;
}

/* ── Section card ────────────────────────────────────────────────────── */
.dashboard-section {
    background: #ffffff;
    border: 1px solid var(--line, #d7edf3);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(9, 21, 36, 0.06);
    margin-bottom: 1.5rem;
}

.section-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0a1628;
}

/* ── Data table ──────────────────────────────────────────────────────── */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.data-table thead th {
    padding: 0.6rem 0.9rem;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted, #607184);
    background: #f8fafc;
    border-bottom: 2px solid var(--line, #d7edf3);
    white-space: nowrap;
}

.data-table tbody td {
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    color: #1e293b;
    font-size: 0.875rem;
    line-height: 1.4;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:hover td {
    background: #f5fafd;
}

/* ── Parser Training: Pruef-Queue ───────────────────────────────────── */
#pruef-queue-table {
    table-layout: fixed;
    width: 100%;
    font-size: 0.82rem;
}
#pruef-queue-table col:nth-child(1) { width: 200px; }
#pruef-queue-table col:nth-child(2) { width: 85px; }
#pruef-queue-table col:nth-child(3) { width: 115px; }
#pruef-queue-table col:nth-child(4) { width: 75px; }
#pruef-queue-table col:nth-child(5) { width: 180px; }
#pruef-queue-table col:nth-child(6) { width: 125px; }
#pruef-queue-table tbody td:nth-child(5),
#pruef-queue-table tbody td:nth-child(6) {
    vertical-align: top;
    padding-top: 0.65rem;
    overflow: hidden;
}
.pruef-kat-form-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.3rem;
}
.pruef-kat-form-list label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
}
.pruef-kat-actions {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.pruef-kat-actions .detail-button {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.76rem;
    white-space: nowrap;
}

/* ── Badges ──────────────────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2em 0.65em;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.badge-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.badge-neutral {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.badge-magenta {
    background: #f3e8ff;
    color: #6b21a8;
    border: 1px solid #d8b4fe;
}

.badge-a1 {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}
/* ═══════════════════════════════════════════════════════════
   IIA Analysis Suite – Landing Page v2
   Dark Navy B2B SaaS Design
═══════════════════════════════════════════════════════════ */

:root {
    --lp-navy:        #0F2544;
    --lp-navy-dark:   #081A38;
    --lp-navy-deeper: #040E20;
    --lp-blue:        #0F2544;
    --lp-blue-light:  #1B3A6B;
    --lp-accent:      #C9A961;
    --lp-accent-glow: #D4BC7A;
    --lp-white:       #FFFFFF;
    --lp-gray:        #6B7280;
    --lp-gray-light:  #9CA3AF;
    --lp-bg-light:    #F9FAFB;
    --lp-bg-blue:     #F0F4FA;
    --lp-success:     #2E8B57;
    --lp-danger:      #C0392B;
    --lp-text:        #1A1A2E;
    --lp-border:      rgba(255,255,255,0.12);
    --lp-r:           12px;
    --lp-shadow:      0 20px 60px rgba(15,37,68,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.landing-body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--lp-text);
    background: var(--lp-white);
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ── Container ─────────────────────────────────────────── */
.lp-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

/* ── Badges ─────────────────────────────────────────────── */
.lp-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.lp-badge-navy {
    background: rgba(201,169,97,0.18);
    color: var(--lp-accent-glow);
    border: 1px solid rgba(201,169,97,0.3);
}
.lp-badge-blue {
    background: rgba(15,37,68,0.12);
    color: var(--lp-blue);
    border: 1px solid rgba(15,37,68,0.2);
}

/* ── Buttons ─────────────────────────────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 22px;
    border-radius: var(--lp-r);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
    text-decoration: none;
}
.lp-btn:hover  { transform: translateY(-1px); }
.lp-btn:active { transform: scale(0.98); }

.lp-btn-primary {
    background: var(--lp-blue);
    color: var(--lp-white);
    box-shadow: 0 8px 24px rgba(15,37,68,0.35);
}
.lp-btn-primary:hover { background: var(--lp-blue-light); box-shadow: 0 12px 32px rgba(15,37,68,0.45); }

.lp-btn-outline {
    background: transparent;
    color: var(--lp-white);
    border: 1.5px solid rgba(255,255,255,0.45);
}
.lp-btn-outline:hover { border-color: var(--lp-white); background: rgba(255,255,255,0.08); }

.lp-btn-outline-blue {
    background: transparent;
    color: var(--lp-blue);
    border: 1.5px solid var(--lp-blue);
}
.lp-btn-outline-blue:hover { background: var(--lp-blue); color: var(--lp-white); }

.lp-btn-ghost {
    background: transparent;
    color: var(--lp-accent);
    padding: 10px 0;
    font-weight: 600;
}
.lp-btn-ghost:hover { color: var(--lp-accent-glow); transform: none; }

/* ── Navbar ─────────────────────────────────────────────── */
.lp-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid #E8EDF5;
    backdrop-filter: blur(12px);
    transition: box-shadow 0.25s ease;
}
.lp-navbar.is-scrolled {
    box-shadow: 0 4px 24px rgba(15,37,68,0.12);
}
.lp-navbar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 64px;
}
.lp-logo {
    display: flex;
    align-items: center;
    line-height: 1;
    margin-right: 20px;
    text-decoration: none;
    flex-shrink: 0;
}
.lp-logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}
.lp-logo-img-dark {
    filter: brightness(0) invert(1);
}
.lp-logo-iia {
    font-size: 22px;
    font-weight: 800;
    color: var(--lp-navy);
    letter-spacing: -0.02em;
}
.lp-logo-suite {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-blue);
}
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.lp-nav-link {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    line-height: 1.25;
    color: #374151;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.lp-nav-link:hover { color: var(--lp-blue); background: var(--lp-bg-blue); }

/* Dropdown */
.lp-dropdown { position: relative; }
.lp-dropdown-trigger {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    line-height: 1.25;
    color: #374151;
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s, background 0.15s;
}
.lp-dropdown-trigger:hover { color: var(--lp-blue); background: var(--lp-bg-blue); }
.lp-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    background: var(--lp-white);
    border: 1px solid #E5EBF5;
    border-radius: var(--lp-r);
    box-shadow: 0 12px 40px rgba(15,37,68,0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.18s ease;
    z-index: 200;
}
.lp-dropdown:hover .lp-dropdown-menu,
.lp-dropdown.is-open .lp-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lp-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: #374151;
    transition: background 0.12s, color 0.12s;
}
.lp-dropdown-menu a:first-child { border-radius: var(--lp-r) var(--lp-r) 0 0; }
.lp-dropdown-menu a:last-child  { border-radius: 0 0 var(--lp-r) var(--lp-r); }
.lp-dropdown-menu a:hover { background: var(--lp-bg-blue); color: var(--lp-blue); }

.lp-nav-spacer { flex: 1; }
.lp-hamburger {
    display: none;
    background: none;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 18px;
    cursor: pointer;
    color: var(--lp-navy);
    line-height: 1;
}
.lp-lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 4px;
}
.lp-lang-switch a {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 6px;
    color: #6B7280;
    border: 1px solid #E5E7EB;
    transition: all 0.15s;
}
.lp-lang-switch a.active, .lp-lang-switch a:hover {
    color: var(--lp-blue);
    border-color: var(--lp-blue);
    background: var(--lp-bg-blue);
}

/* Mobile Drawer */
.lp-drawer {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
}
.lp-drawer.is-open { display: block; }
.lp-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,37,68,0.5);
}
.lp-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 90vw);
    height: 100%;
    background: var(--lp-white);
    box-shadow: -8px 0 32px rgba(0,0,0,0.2);
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.lp-drawer.is-open .lp-drawer-panel { transform: translateX(0); }
.lp-drawer-close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}
.lp-drawer-close button {
    background: none;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 20px;
    cursor: pointer;
    color: var(--lp-navy);
}
.lp-drawer-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.lp-drawer-links a, .lp-drawer-links button {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    background: none;
    border: none;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: background 0.12s;
}
.lp-drawer-links a:hover, .lp-drawer-links button:hover { background: var(--lp-bg-blue); color: var(--lp-blue); }

/* ── Coming Banner ──────────────────────────────────────── */
.lp-coming-banner {
    background: linear-gradient(90deg, var(--lp-navy-dark), var(--lp-navy), var(--lp-navy-dark));
    color: rgba(255,255,255,0.85);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 9px 20px;
}

/* ── Hero ────────────────────────────────────────────────── */
.lp-hero {
    background: linear-gradient(145deg, var(--lp-navy-dark) 0%, var(--lp-navy) 60%, #0F3570 100%);
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,169,97,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.lp-hex-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.lp-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.lp-hero-text { color: var(--lp-white); }
.lp-hero-h1 {
    margin: 16px 0 20px;
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}
.lp-hero-h1 em {
    font-style: normal;
    color: var(--lp-accent);
}
.lp-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 24px;
}
.lp-launch-info {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 0 0 16px;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(7,20,44,0.35);
    backdrop-filter: blur(2px);
}
.lp-launch-info .lp-launch-label {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.94);
}
.lp-launch-info strong {
    font-size: clamp(30px, 4.6vw, 72px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: #F4EA4A;
    text-shadow: 0 0 18px rgba(244,234,74,0.42);
}
.lp-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.lp-checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.88);
}

.lp-section-link {
    display: inline-block;
    margin-top: 4px;
    color: var(--lp-blue);
    font-weight: 700;
    text-decoration: none;
}

.lp-section-link:hover {
    text-decoration: underline;
}
.lp-check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(46,139,87,0.9);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.lp-checks-dark li { color: var(--lp-text); }
.lp-checks-dark .lp-check-icon { background: var(--lp-blue); }

.lp-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── App Mockup ──────────────────────────────────────────── */
.lp-hero-mockup {
    position: relative;
}
.lp-app-mockup {
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 32px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 1px 0 rgba(255,255,255,0.15);
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.4s ease;
    background: #1A2744;
}
.lp-app-mockup:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

/* Browser Chrome */
.lp-browser-chrome {
    background: #0F1D36;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-browser-dots { display: flex; gap: 5px; }
.lp-browser-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.lp-browser-dots span:nth-child(1) { background: #FF5F57; }
.lp-browser-dots span:nth-child(2) { background: #FFBD2E; }
.lp-browser-dots span:nth-child(3) { background: #28CA41; }
.lp-browser-url {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: monospace;
}

/* App Layout */
.lp-app-layout {
    display: grid;
    grid-template-columns: 130px 1fr;
    min-height: 280px;
}
.lp-app-sidebar {
    background: #0F1D36;
    padding: 12px 0;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.lp-app-sidebar-logo {
    font-size: 13px;
    font-weight: 800;
    color: var(--lp-accent);
    padding: 4px 12px 12px;
    letter-spacing: 0.04em;
}
.lp-sidebar-item {
    padding: 7px 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    cursor: default;
    transition: all 0.1s;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 0 8px 8px 0;
    margin-right: 4px;
}
.lp-sidebar-item.active {
    background: rgba(201,169,97,0.15);
    color: var(--lp-accent-glow);
    font-weight: 600;
}

/* App Main */
.lp-app-main {
    background: #EEF3FB;
    padding: 12px;
}
.lp-app-header {
    font-size: 11px;
    font-weight: 700;
    color: #1A2744;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.lp-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
}
.lp-kpi-card {
    background: var(--lp-white);
    border-radius: 8px;
    padding: 8px 10px;
    border: 1px solid #DDE8F5;
}
.lp-kpi-title { font-size: 9px; color: #6B7280; font-weight: 500; margin-bottom: 2px; }
.lp-kpi-value { font-size: 14px; font-weight: 800; color: #1A2744; }
.lp-kpi-delta { font-size: 9px; font-weight: 700; margin-top: 2px; }
.lp-kpi-delta.green { color: #2E8B57; }
.lp-kpi-delta.orange { color: #D97706; }
.lp-kpi-delta.red { color: #C0392B; }

/* Mini Chart */
.lp-mini-chart {
    background: var(--lp-white);
    border-radius: 8px;
    padding: 8px 10px;
    border: 1px solid #DDE8F5;
}
.lp-chart-title { font-size: 9px; font-weight: 700; color: #374151; margin-bottom: 8px; }
.lp-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 36px;
}
.lp-bar {
    flex: 1;
    background: #BDD5F0;
    border-radius: 2px 2px 0 0;
    transition: background 0.2s;
}
.lp-bar.active { background: var(--lp-blue); }

/* Floating Card */
.lp-floating-card {
    position: absolute;
    top: -18px;
    right: -20px;
    width: 200px;
    background: var(--lp-white);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 12px 40px rgba(15,37,68,0.25), 0 0 0 1px rgba(0,0,0,0.06);
    animation: lp-float 4s ease-in-out infinite;
    font-size: 11px;
}
@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.lp-fc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 6px;
}
.lp-fc-number { font-weight: 700; color: #1A2744; font-size: 10px; }
.lp-fc-badge {
    background: #D1FAE5;
    color: #065F46;
    border-radius: 999px;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}
.lp-fc-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid #F3F4F6;
    color: #6B7280;
}
.lp-fc-row strong { color: #1A2744; }
.lp-fc-note {
    margin-top: 8px;
    font-size: 9px;
    color: #065F46;
    background: #ECFDF5;
    border-radius: 6px;
    padding: 4px 6px;
    line-height: 1.4;
}
.lp-hero-launch-box {
    margin-top: 22px;
    padding: 16px 20px;
    border-radius: 20px;
    border: 2px solid rgba(38,184,255,0.55);
    background: linear-gradient(145deg, rgba(4,23,58,0.96) 0%, rgba(5,33,79,0.95) 100%);
    box-shadow:
        0 18px 42px rgba(5,16,34,0.42),
        inset 0 0 0 1px rgba(246,233,74,0.52),
        0 0 0 1px rgba(201,169,97,0.5);
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 18px;
}
.lp-hero-launch-box-icon {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 45%, rgba(246,233,74,0.12) 0%, rgba(246,233,74,0) 72%);
}
.lp-hero-launch-box-icon svg {
    width: 76px;
    height: 76px;
    fill: none;
    stroke: #F4EA4A;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(244,234,74,0.82));
}
.lp-hero-launch-box-copy {
    display: flex;
    flex-direction: column;
}
.lp-hero-launch-box-main {
    color: rgba(255,255,255,0.96);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.34;
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
.lp-hero-launch-box-main strong {
    color: #F4EA4A;
    font-weight: 900;
    text-shadow: 0 0 12px rgba(244,234,74,0.36);
}
.lp-hero-launch-box-sub {
    margin-top: 6px;
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

/* ── Trust Bar ───────────────────────────────────────────── */
.lp-trust {
    padding: 20px 0;
    border-bottom: 1px solid #E8EDF5;
    overflow: hidden;
}
.lp-trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--lp-gray);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.lp-trust-logos { overflow: hidden; mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent); }
.lp-trust-track {
    display: flex;
    gap: 40px;
    animation: lp-marquee 24s linear infinite;
    width: max-content;
}
.lp-trust-track span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--lp-gray-light);
    white-space: nowrap;
    transition: color 0.2s;
}
.lp-trust-track span:hover { color: var(--lp-blue); }
@keyframes lp-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Section Shared ──────────────────────────────────────── */
.lp-section { padding: 80px 0; }
.lp-section-alt {
    padding: 80px 0;
    background: var(--lp-bg-light);
}
.lp-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.lp-section-header h2 {
    margin: 12px 0 14px;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--lp-text);
    line-height: 1.2;
}
.lp-section-header h2 em {
    font-style: normal;
    color: var(--lp-blue);
}
.lp-section-header p {
    font-size: 16px;
    color: var(--lp-gray);
    line-height: 1.7;
}

/* ── Video Section ──────────────────────────────────────── */
.lp-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}
.lp-video-player {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0D1F3C;
    box-shadow: var(--lp-shadow);
    aspect-ratio: 16/9;
}
.lp-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Poster füllt den gesamten lp-video-player (position: relative) */
.lp-video-poster-wrap {
    position: absolute;
    inset: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: inherit;
}
.lp-video-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Dunkles Overlay beim Hover */
.lp-video-poster-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.2s ease;
    pointer-events: none;
}
.lp-video-poster-wrap:hover::after {
    background: rgba(0,0,0,0.15);
}
/* Play-Button: zentriert, prominent */
.lp-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(15,37,68,0.78);
    border: 3px solid rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 2;
}
.lp-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: rgba(15,37,68,0.95);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.lp-video-play-btn svg {
    margin-left: 4px;
}
.lp-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}
.lp-video-progress {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}
.lp-video-text h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
    line-height: 1.2;
}
.lp-video-text h2 em { font-style: normal; color: var(--lp-blue); }
.lp-video-text p {
    font-size: 15px;
    color: var(--lp-gray);
    line-height: 1.75;
    margin-bottom: 24px;
}

/* ── Features Section ────────────────────────────────────── */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lp-feature-card {
    background: var(--lp-white);
    border: 1px solid #E8EDF5;
    border-radius: 14px;
    padding: 28px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-top-color 0.2s ease;
    border-top: 3px solid transparent;
}
.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(15,37,68,0.1);
    border-top-color: var(--lp-blue);
}
.lp-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--lp-bg-blue);
    color: var(--lp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.lp-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 8px;
    line-height: 1.3;
}
.lp-feature-card p {
    font-size: 14px;
    color: var(--lp-gray);
    line-height: 1.65;
}

/* ── Dashboard Section ───────────────────────────────────── */
.lp-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}
.lp-dashboard-text h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
    line-height: 1.2;
}
.lp-dashboard-text h2 em { font-style: normal; color: var(--lp-blue); }
.lp-dashboard-text p {
    font-size: 15px;
    color: var(--lp-gray);
    line-height: 1.75;
    margin-bottom: 24px;
}
.lp-dashboard-mockup {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    background: #1A2744;
}

/* ── Transformation Table ────────────────────────────────── */
.lp-transform-wrapper {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E5EBF5;
    box-shadow: 0 8px 32px rgba(15,37,68,0.06);
}
.lp-transform-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.lp-transform-head-cell {
    background: var(--lp-navy);
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 20px;
}
.lp-transform-head-cell:last-child {
    background: var(--lp-blue);
    color: var(--lp-white);
    border-left: 1px solid rgba(255,255,255,0.1);
}
.lp-transform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #E8EDF5;
}
.lp-transform-cell {
    padding: 14px 20px;
    font-size: 14px;
    color: #374151;
    line-height: 1.55;
}
.lp-transform-cell:first-child {
    background: #FAFBFE;
    border-right: 1px solid #E8EDF5;
    color: var(--lp-gray);
}
.lp-transform-cell:last-child {
    background: #F0F4FA;
    font-weight: 500;
    color: var(--lp-navy);
}

/* ── FAQ ───────────────────────────────────────────────── */
.lp-faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.lp-faq-item {
    background: #fff;
    border: 1px solid #D8E4F0;
    border-radius: 12px;
    padding: 0 16px;
}
.lp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 24px 16px 0;
    font-weight: 700;
    color: #12284D;
    position: relative;
}
.lp-faq-item summary::-webkit-details-marker {
    display: none;
}
.lp-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #0F2544;
    font-size: 20px;
    line-height: 1;
}
.lp-faq-item[open] summary::after {
    content: "\2212";
}
.lp-faq-item p {
    margin: 0 0 16px;
    color: #4A5A74;
    line-height: 1.6;
    font-size: 15px;
}

/* ── CTA Section ─────────────────────────────────────────── */
.lp-cta {
    background: linear-gradient(145deg, var(--lp-navy-dark), var(--lp-navy));
    padding: 80px 0;
}
.lp-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
.lp-cta-icon {
    width: 52px;
    height: 52px;
    background: rgba(201,169,97,0.2);
    border: 1px solid rgba(201,169,97,0.35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.lp-cta h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--lp-white);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.lp-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 540px;
}
.lp-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

/* ── Modal ───────────────────────────────────────────────── */
body.modal-open { overflow: hidden; }

.landing-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1200;
}
.landing-modal.is-open { display: block; }
.landing-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,37,68,0.6);
}
.landing-modal-card {
    position: relative;
    z-index: 1;
    width: min(860px, calc(100% - 28px));
    max-height: calc(100vh - 34px);
    overflow: auto;
    margin: 16px auto;
    background: var(--lp-white);
    border: 1px solid #D8E4F0;
    border-radius: 16px;
    box-shadow: 0 32px 80px rgba(15,37,68,0.3);
    padding: 24px;
}
.landing-modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    width: 36px;
    height: 36px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    background: #F9FAFB;
    color: #374151;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-form-head h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--lp-navy);
}
.landing-feedback {
    margin-top: 16px;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
}
.landing-feedback-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.landing-feedback-error   { background: #FEF2F2; border: 1px solid #FECACA; color: #7F1D1D; }
.landing-form { margin-top: 20px; display: grid; gap: 12px; }
.landing-form label { font-size: 13px; font-weight: 700; color: #374151; }
.landing-form input:not([type="radio"]):not([type="checkbox"]),
.landing-form textarea {
    width: 100%;
    border: 1.5px solid #D1D5DB;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--lp-text);
    background: var(--lp-white);
    transition: border-color 0.15s;
}
.landing-form input:focus, .landing-form textarea:focus {
    outline: none;
    border-color: var(--lp-blue);
}
.landing-form textarea { resize: vertical; min-height: 120px; }
.landing-survey {
    padding: 12px 14px;
    border: 1.5px solid #D1D5DB;
    border-radius: 10px;
    background: #FAFBFE;
}
.landing-survey legend { font-size: 13px; font-weight: 700; color: #374151; padding: 0 6px; }
.landing-survey p { margin: 4px 0 10px; color: #6B7280; font-size: 14px; }
.landing-radio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.landing-radio-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #374151; }
.landing-radio-row input[type="radio"] { width: auto; }
.landing-consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1.5px solid #D1D5DB;
    border-radius: 10px;
    background: #FAFBFE;
    cursor: pointer;
}
.landing-consent-row input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.landing-consent-row span {
    font-size: 13px;
    line-height: 1.55;
    color: #374151;
    font-weight: 500;
}
.landing-form-note {
    margin: -2px 2px 2px;
    font-size: 12px;
    line-height: 1.45;
    color: #6B7280;
}

/* ── Footer ──────────────────────────────────────────────── */
.lp-footer {
    background: var(--lp-navy-deeper);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.6);
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 48px;
}
.lp-footer-brand .lp-logo-iia { color: var(--lp-white); font-size: 26px; }
.lp-footer-brand .lp-logo-suite { color: var(--lp-accent); }
.lp-footer-brand p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    max-width: 220px;
}
.lp-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.lp-footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: all 0.15s;
}
.lp-footer-social a:hover { border-color: var(--lp-accent); color: var(--lp-accent); }
.lp-footer-col h4 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.lp-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s;
}
.lp-footer-col ul li a:hover { color: var(--lp-white); }
.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.lp-footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.35); }
.lp-lang-switch-footer {
    display: flex;
    gap: 8px;
}
.lp-lang-switch-footer a {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.15s;
}
.lp-lang-switch-footer a.active,
.lp-lang-switch-footer a:hover {
    color: var(--lp-accent);
    border-color: var(--lp-accent);
}

/* ── Scroll Reveal Animations ────────────────────────────── */
.lp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.lp-reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.lp-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.lp-delay-1 { transition-delay: 0.1s; }
.lp-delay-2 { transition-delay: 0.2s; }
.lp-delay-3 { transition-delay: 0.3s; }
.lp-delay-4 { transition-delay: 0.4s; }
.lp-delay-5 { transition-delay: 0.5s; }

/* Hero initial animations */
.lp-fade-up {
    animation: lpFadeUp 0.8s ease forwards;
}
.lp-fade-right {
    animation: lpFadeRight 0.9s 0.2s ease both;
}
@keyframes lpFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes lpFadeRight {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-hero { padding: 56px 0 60px; }
    .lp-hero-sub { max-width: 100%; }
    .lp-launch-info strong { font-size: clamp(30px, 8vw, 64px); }
    .lp-hero-launch-box { max-width: 540px; margin: 18px auto 0; }
    .lp-app-mockup { transform: none; max-width: 540px; margin: 0 auto; }
    .lp-app-mockup:hover { transform: none; }
    .lp-floating-card { top: -12px; right: 0; }
    .lp-video-grid { grid-template-columns: 1fr; }
    .lp-dashboard-grid { grid-template-columns: 1fr; }
    .lp-cta-inner { grid-template-columns: 1fr; }
    .lp-cta-buttons { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
    .lp-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .lp-container { width: calc(100% - 32px); }
    .lp-nav-links { display: none; }
    .lp-hamburger { display: block; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-hero-h1 { font-size: clamp(30px, 8vw, 40px); }
    .lp-launch-info { padding: 8px 12px; }
    .lp-launch-info .lp-launch-label { font-size: 15px; }
    .lp-launch-info strong { font-size: clamp(28px, 10vw, 54px); }
    .lp-hero-launch-box {
        grid-template-columns: 70px 1fr;
        gap: 12px;
        padding: 14px;
        border-radius: 16px;
    }
    .lp-hero-launch-box-icon {
        width: 70px;
        height: 70px;
        border-radius: 14px;
    }
    .lp-hero-launch-box-icon svg {
        width: 58px;
        height: 58px;
    }
    .lp-hero-launch-box-main { font-size: 18px; }
    .lp-hero-launch-box-sub { font-size: 15px; }
    .lp-section, .lp-section-alt { padding: 56px 0; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .lp-trust-label { font-size: 11px; }
}

@media (max-width: 560px) {
    .lp-launch-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .lp-launch-info strong { font-size: clamp(26px, 12vw, 42px); }
    .lp-hero-launch-box {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 13px;
        border-radius: 14px;
    }
    .lp-hero-launch-box-icon {
        width: 64px;
        height: 64px;
    }
    .lp-hero-launch-box-icon svg {
        width: 50px;
        height: 50px;
    }
    .lp-hero-launch-box-main { font-size: 16px; line-height: 1.45; }
    .lp-hero-launch-box-sub { font-size: 14px; }
    .lp-hero-btns { flex-direction: column; }
    .lp-hero-btns .lp-btn { width: 100%; justify-content: center; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-transform-head, .lp-transform-row {
        grid-template-columns: 1fr;
    }
    .lp-transform-head-cell:first-child { display: none; }
    .lp-landing-radio-grid { grid-template-columns: 1fr; }
    .lp-navbar-inner { gap: 6px; }
}

/* ── Two-column utility (collapses on mobile) ────────── */
.lp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 768px) {
    .lp-two-col { grid-template-columns: 1fr; }
}

/* Cookie consent */
.lp-cookie-manage-btn {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 80;
    border: 1px solid #BFD0E6;
    background: #F8FBFF;
    color: #12355B;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.lp-cookie-banner {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(10, 22, 38, 0.45);
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
}
.lp-cookie-banner.is-open { display: flex; }
.lp-cookie-banner-card {
    width: min(880px, 100%);
    background: #FFFFFF;
    border: 1px solid #D9E2EC;
    border-radius: 14px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.2);
    padding: 18px;
}
.lp-cookie-banner-card h3 {
    margin: 0 0 8px;
    color: #102A43;
    font-size: 18px;
}
.lp-cookie-banner-card p {
    margin: 0 0 12px;
    color: #334E68;
    font-size: 14px;
    line-height: 1.5;
}
.lp-cookie-options {
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
}
.lp-cookie-option {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    border: 1px solid #D9E2EC;
    border-radius: 10px;
    padding: 10px 12px;
    background: #F8FBFF;
}
.lp-cookie-option input { margin-top: 2px; }
.lp-cookie-option strong {
    display: block;
    color: #102A43;
    font-size: 14px;
}
.lp-cookie-option small {
    color: #486581;
    font-size: 12px;
}
.lp-cookie-meta a {
    color: #0069C2;
    text-decoration: underline;
}
.lp-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}
@media (max-width: 560px) {
    .lp-cookie-actions .lp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Suiten-Karten auf Landing Page ─────────────────────────── */
.lp-suiten-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.lp-suite-card {
    background: var(--lp-white);
    border: 1px solid #E5EBF5;
    border-radius: var(--lp-r);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.lp-suite-card:hover {
    box-shadow: 0 8px 32px rgba(15,37,68,0.10);
    border-color: var(--lp-blue);
}
.lp-suite-card--featured {
    border-color: var(--lp-blue);
    box-shadow: 0 4px 24px rgba(15,37,68,0.13);
}
.lp-suite-card-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-blue);
    color: var(--lp-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
.lp-suite-card-head h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-navy);
    margin: 8px 0 4px;
}
.lp-suite-card-head p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}
.lp-suite-card .lp-checks { flex: 1; }
@media (max-width: 1024px) {
    .lp-suiten-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .lp-suiten-cards { grid-template-columns: 1fr; }
}

/* ── Rechtlicher Hinweis ──────────────────────────────────── */
.lp-legal-notice {
    background: #F8FAFF;
    border-top: 1px solid #E5EBF5;
    padding: 20px 0;
}
.lp-legal-notice p {
    font-size: 11px;
    color: #9CA3AF;
    line-height: 1.7;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

/* ── P15: Inline-Style-Extraktion ─────────────────────────── */

/* Dropdown: Suiten-Link */
.lp-menu-suite-link {
    border-top: 1px solid #E5EBF5;
    background: #F8FAFF;
    font-weight: 700;
    color: var(--lp-blue);
}

/* E-Mail-Bestätigung Toast */
.lp-email-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: #0a1628;
    color: #fff;
    border-left: 4px solid #00b4d8;
    border-radius: 10px;
    padding: 16px 24px 16px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 480px;
    width: calc(100% - 32px);
}
.lp-toast-icon  { font-size: 1.5rem; flex-shrink: 0; }
.lp-toast-title { margin: 0; font-weight: 700; font-size: 0.97rem; }
.lp-toast-sub   { margin: 4px 0 0; font-size: 0.87rem; color: #cbd5e1; }
.lp-toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.3rem;
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
    line-height: 1;
}

/* Info-Note-Box */
.lp-note-box {
    padding: 14px 16px;
    background: #F0F6FF;
    border-radius: 10px;
    border-left: 3px solid #1B4F8A;
    margin-top: 8px;
}
.lp-note-title { font-size: 13px; color: #1A1A2E; display: block; margin-bottom: 4px; }
.lp-note-text  { margin: 0; font-size: 13px; color: #6B7280; line-height: 1.6; }

/* Dekorative Balken-Höhen (Chart-Mockup) */
.lp-bar--40 { height: 40%; }
.lp-bar--50 { height: 50%; }
.lp-bar--55 { height: 55%; }
.lp-bar--60 { height: 60%; }
.lp-bar--65 { height: 65%; }
.lp-bar--75 { height: 75%; }
.lp-bar--80 { height: 80%; }
.lp-bar--85 { height: 85%; }
.lp-bar--90 { height: 90%; }
.lp-bar--95 { height: 95%; }

/* Layout-Breite */
.lp-two-col--wide  { max-width: 900px; margin: 0 auto; }
.lp-app-narrow     { grid-template-columns: 110px 1fr; }

/* Abschnitts-Untertitel */
.lp-section-sub    { color: #6B7280; max-width: 620px; margin: 8px auto 0; }

/* CTA-Wrap */
.lp-cta-wrap       { text-align: center; margin-top: 32px; }

/* Success-Modal Inhalt */
.lp-success-card   { max-width: 520px; text-align: center; }
.lp-success-icon   { font-size: 3rem; margin-bottom: 16px; }
.lp-success-title  { font-size: 1.25rem; font-weight: 700; color: #0d1b2a; margin: 0 0 16px; }
.lp-success-body   { font-size: 0.97rem; color: #334155; line-height: 1.65; margin: 0 0 24px; }
.lp-success-btn    { min-width: 160px; justify-content: center; }
