@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');
:root {
    --accent-color: #e11d2e;
    --accent-hover: #b8121f;
    --accent-glow: rgba(225, 29, 46, 0.35);
    --accent-soft: rgba(225, 29, 46, 0.12);
    --bg-dark: #07070b;
    --bg-elev: #0e0e14;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-input: rgba(255, 255, 255, 0.05);
    --bg-tertiary: rgba(255, 255, 255, 0.06);
    --bg-hover: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.07);
    --bg-secondary: #0e0e14;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.68);
    --text-muted: rgba(255, 255, 255, 0.42);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --success: #22c55e;
    --success-soft: rgba(34, 197, 94, 0.14);
    --warning: #f59e0b;
    --danger: #ef4444;
    --sidebar-width: 256px;
    --sidebar-width-collapsed: 72px;
    --radius: 16px;
    --radius-sm: 10px;
}

html { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.18) transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.16); border-radius: 100px; }
*::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.28); }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body::before { display: none !important; }
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(900px 520px at 22% -10%, rgba(225, 29, 46, 0.10) 0%, transparent 60%),
        radial-gradient(700px 400px at 100% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.app { position: relative; z-index: 1; }

/* ---------- Inhalt ---------- */
.main {
    padding: 0 40px 64px;
    animation: none;
}
.main > * { max-width: 1240px; }

/* ---------- Topbar ---------- */
.page-toolbar,
.page-toolbar.scrolled {
    position: sticky;
    top: 0;
    z-index: 60;
    margin: 0 -40px 30px !important;
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    background: rgba(7, 7, 11, 0.72);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow: none;
}
.toolbar-status {
    height: 36px;
    padding: 0 12px 0 10px;
    border-radius: 100px;
    background: var(--success-soft);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #4ade80;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.toolbar-status.offline { background: rgba(239, 68, 68, 0.12); border-color: rgba(239, 68, 68, 0.3); color: #f87171; }
.toolbar-status-dot { background: var(--success); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); animation: appPuls 2.4s ease-out infinite; }
.toolbar-status.offline .toolbar-status-dot { background: var(--danger); animation: none; }
.toolbar-credits {
    height: 38px;
    padding: 0 14px 0 12px;
    gap: 9px;
    border-radius: var(--radius-sm);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    font-variant-numeric: tabular-nums;
    transition: background 0.15s ease, border-color 0.15s ease;
}
a.toolbar-credits:hover { background: var(--bg-hover); border-color: rgba(255, 255, 255, 0.24); }
.toolbar-credits i { color: #ff5a68; font-size: 13px; }
.toolbar-language .language-dropdown-btn {
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    font-size: 13.5px;
    font-family: inherit;
}
.toolbar-language .language-dropdown-btn:hover { border-color: rgba(255, 255, 255, 0.28); color: var(--text-primary); }
.toolbar-language .language-dropdown-menu {
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.9);
    padding: 6px;
    min-width: 190px;
}
.toolbar-language .language-option { border-radius: 8px; padding: 9px 12px; font-size: 13.5px; font-family: inherit; color: var(--text-secondary); }
.toolbar-language .language-option:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.toolbar-language .language-option.active { background: var(--accent-soft); color: var(--text-primary); }
.toolbar-profile {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #7a0c17 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px -10px rgba(225, 29, 46, 0.9);
}
.toolbar-profile:hover { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.toolbar-profile i { font-size: 16px; }
.toolbar-profile.has-initials i { display: none; }

/* ---------- Seitentitel ---------- */
.page-header { margin: 0 0 26px; }
.page-title,
.welcome-title {
    font-family: inherit;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: none;
    padding: 0;
    border: 0;
    color: var(--text-primary);
}
.page-title::after, .welcome-title::after { display: none; }
.page-subtitle { display: block; margin-top: 6px; font-size: 14.5px; color: var(--text-secondary); }
.page-header-actions { margin-top: 14px; }
.welcome-section { margin-bottom: 26px; }

/* ---------- Karten ---------- */
.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: none;
}
.card-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
}
.card-title {
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-title i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--accent-soft);
    border: 1px solid rgba(225, 29, 46, 0.25);
    color: #ff5a68;
    font-size: 12.5px;
}
.card-body { color: var(--text-primary); }

/* ---------- Kennzahlen ---------- */
.stat-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.stat-card:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.18); box-shadow: none; }
.stat-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px;
    border-radius: 10px;
    background: var(--accent-soft);
    border: 1px solid rgba(225, 29, 46, 0.25);
    color: #ff5a68;
    font-size: 14px;
}
.stat-value {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin: 0 0 8px;
    color: var(--text-primary);
}
.stat-label {
    font-size: 12.5px;
    line-height: 1.35;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
}

/* ---------- Hinweise ---------- */
.scripts-banner,
.info-banner,
.info-box,
.alert-info,
.notice-box {
    background: linear-gradient(90deg, rgba(225, 29, 46, 0.10) 0%, rgba(255, 255, 255, 0.03) 60%);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    color: var(--text-secondary);
    text-align: left;
    font-size: 14px;
    line-height: 1.55;
}
.scripts-banner strong, .info-banner strong, .info-box strong { color: var(--text-primary); }

/* ---------- Knöpfe ---------- */
.btn,
.btn-primary,
.btn-secondary,
.btn-back,
.btn-save,
.btn-view,
.btn-download,
.btn-ticket,
.btn-modal,
.btn-block,
button.btn {
    font-family: inherit;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary,
.btn-save,
.btn.btn-primary {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 26px -12px rgba(225, 29, 46, 0.9);
}
.btn-primary:hover,
.btn-save:hover,
.btn.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px -12px rgba(225, 29, 46, 1);
}
.btn-secondary,
.btn-back,
.btn-view,
.btn-download,
.btn-ticket,
.btn-modal-secondary {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
    box-shadow: none;
}
.btn-secondary:hover,
.btn-back:hover,
.btn-view:hover,
.btn-download:hover,
.btn-ticket:hover,
.btn-modal-secondary:hover {
    background: var(--bg-hover);
    border-color: rgba(255, 255, 255, 0.26);
    color: var(--text-primary);
    transform: none;
}
.btn-primary:disabled, .btn:disabled, .btn-save:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Formulare ---------- */
.form-label,
.form-group label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text-secondary);
    margin-bottom: 7px;
}
.form-label .required, .form-group label .required { color: #ff5a68; }
.form-input,
.form-control,
.main input[type="text"],
.main input[type="email"],
.main input[type="password"],
.main input[type="number"],
.main input[type="tel"],
.main input[type="search"],
.main select,
.main textarea {
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-input);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.form-input:focus,
.form-control:focus,
.main input:focus,
.main select:focus,
.main textarea:focus {
    outline: none;
    border-color: rgba(225, 29, 46, 0.7);
    box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.18);
    background: rgba(255, 255, 255, 0.06);
}
.main ::placeholder { color: rgba(255, 255, 255, 0.32); }
.section-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.section-title i { color: #ff5a68; }
.form-divider { border-color: var(--border-color); }

/* ---------- Tabellen ---------- */
.main table th {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
}
.main table td { border-bottom: 1px solid rgba(255, 255, 255, 0.06); color: var(--text-secondary); }
.main table tbody tr:last-child td { border-bottom: 0; }
.main table tbody tr:hover td { background: rgba(255, 255, 255, 0.025); }

/* ---------- Badges ---------- */
.status-badge,
.service-badge,
.badge {
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
}

/* ---------- Leerzustand ---------- */
.empty-state { padding: 64px 20px; }
.empty-icon,
.empty-state > i {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: var(--accent-soft);
    border: 1px solid rgba(225, 29, 46, 0.25);
    color: #ff5a68;
    font-size: 28px;
    opacity: 1;
}
.empty-title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.empty-text { color: var(--text-muted); font-size: 14px; }

/* ---------- Modale ---------- */
.modal-overlay { background: rgba(3, 3, 6, 0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.modal-content,
.modal-overlay .modal,
#konfModal .modal-content {
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.95);
}
.modal-header { padding: 18px 22px; border-bottom: 1px solid var(--border-color); }
.modal-title { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; text-transform: none; }
.modal-close { border-radius: 9px; color: var(--text-muted); }
.modal-close:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.modal-body { color: var(--text-secondary); }

/* ---------- Cookie-Hinweis ---------- */
.cookie-banner {
    background: rgba(14, 14, 20, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--border-strong);
    box-shadow: 0 -20px 60px -20px rgba(0, 0, 0, 0.9);
    padding: 16px 30px;
}
.cookie-btn { font-family: inherit; text-transform: none !important; letter-spacing: 0 !important; border-radius: var(--radius-sm); font-weight: 600; }
.cookie-btn-accept { background: var(--accent-color); border: 1px solid var(--accent-color); color: #fff; }
.cookie-btn-reject { background: var(--bg-tertiary); border: 1px solid var(--border-strong); color: var(--text-primary); }
.cookie-icon { color: #ff5a68; }

/* ---------- Ladeanzeige ---------- */
.spinner, .loading .spinner { border-color: rgba(255, 255, 255, 0.1); border-top-color: var(--accent-color); }

/* ---------- Aktions-Banner ---------- */
.header-sale {
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(225, 29, 46, 0.22) 0%, rgba(225, 29, 46, 0.06) 100%);
    border: 1px solid rgba(225, 29, 46, 0.4);
}

@keyframes appPuls {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 1080px) {
    .main { padding: 0 24px 48px; }
    .page-toolbar, .page-toolbar.scrolled { margin: 0 -24px 24px !important; padding: 0 24px; }
}
@media (max-width: 900px) {
    .main { margin-top: 60px !important; padding: 20px 16px 40px !important; }
    .page-title, .welcome-title { font-size: 22px; }
    .mobile-header { background: rgba(7, 7, 11, 0.9) !important; }
    .menu-toggle { background: var(--accent-color) !important; border-color: var(--accent-color) !important; box-shadow: 0 8px 20px -10px rgba(225, 29, 46, 0.9) !important; }
}

/* ---------- Seiten-Spezifisches ---------- */
.toolbar-initials { font-size: 13px; font-weight: 800; }
.btn-buy {
    font-family: inherit;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
    box-shadow: none;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn-buy:hover { background: var(--bg-hover); border-color: rgba(255, 255, 255, 0.26); transform: translateY(-1px); }
.pricing-card.recommended .btn-buy { background: var(--accent-color); border-color: var(--accent-color); color: #fff; box-shadow: 0 10px 26px -12px rgba(225, 29, 46, 0.9); }
.pricing-card.recommended .btn-buy:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.pricing-card { border-radius: var(--radius); }
.pricing-card.recommended { border-color: rgba(225, 29, 46, 0.6); box-shadow: 0 0 0 1px rgba(225, 29, 46, 0.3), 0 30px 70px -30px rgba(225, 29, 46, 0.6); }

.info-hint {
    background: linear-gradient(90deg, rgba(225, 29, 46, 0.10) 0%, rgba(255, 255, 255, 0.03) 60%);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    color: var(--text-secondary);
    text-align: left;
    font-size: 14px;
    line-height: 1.55;
}
.info-hint strong { color: var(--text-primary); }

.app-promo-card {
    background:
        radial-gradient(700px 420px at 12% 20%, rgba(225, 29, 46, 0.16) 0%, transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
}
.app-promo-card::before { display: none; }
.app-promo-card .ap-tag {
    background: var(--accent-soft);
    border: 1px solid rgba(225, 29, 46, 0.3);
    color: #ff5a68;
    letter-spacing: 0.1em;
}
.app-promo-card .ap-title-brand {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.app-promo-card .ap-title-sub { color: var(--text-primary); font-weight: 800; letter-spacing: -0.02em; }
.app-promo-card .ap-title-sep { color: #ff5a68; }
.app-promo-card .ap-sub { color: var(--text-secondary); }
.app-promo-card .ap-features i { color: #4ade80; }
.app-promo-card .ap-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    color: var(--text-primary);
}
.app-promo-card .ap-btn:hover { background: rgba(255, 255, 255, 0.1); }
.app-promo-card .ap-app-icon { background: var(--accent-color); box-shadow: 0 20px 50px -20px rgba(225, 29, 46, 1); }

#konfModal select, #konfModal button, #konfModal input { font-family: inherit; }
#konfModal .modal-title { font-weight: 800; letter-spacing: -0.01em; }

/* ---------- Glocke ---------- */
.toolbar-bell {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.toolbar-bell:hover, .toolbar-bell.is-open { background: var(--bg-hover); border-color: rgba(255, 255, 255, 0.28); color: var(--text-primary); }
.toolbar-bell.has-unread { color: var(--text-primary); }
.toolbar-bell.has-unread i { animation: bellNudge 4s ease-in-out infinite; transform-origin: 50% 0; }
.toolbar-bell.is-ringing i { animation: bellRing 1.1s ease-in-out; }
.toolbar-bell-badge {
    position: absolute;
    top: -6px; right: -6px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 100px;
    background: var(--accent-color);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    border: 2px solid var(--bg-dark);
    box-shadow: 0 6px 14px -6px rgba(225, 29, 46, 0.9);
    animation: badgePop 0.4s cubic-bezier(0.18, 1.6, 0.4, 1);
}
.mobile-header .toolbar-bell { margin-left: auto; margin-right: 8px; width: 40px; height: 40px; }
.notif-panel {
    position: fixed;
    top: 74px;
    right: 28px;
    width: 400px;
    max-width: calc(100vw - 24px);
    max-height: min(560px, calc(100vh - 100px));
    display: flex;
    flex-direction: column;
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.02);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.22s;
    z-index: 9990;
    overflow: hidden;
}
.notif-panel.open { opacity: 1; visibility: visible; transform: none; transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1); }
.notif-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 14px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.notif-mark-all {
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: #ff5a68;
    background: var(--accent-soft);
    border: 1px solid rgba(225, 29, 46, 0.25);
    border-radius: 100px;
    padding: 5px 10px;
    cursor: pointer;
}
.notif-mark-all:hover { background: rgba(225, 29, 46, 0.2); }
.notif-list { overflow-y: auto; padding: 6px; }
.notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.15s ease;
    position: relative;
}
.notif-item:hover { background: var(--bg-tertiary); }
.notif-item.is-unread { background: rgba(255, 255, 255, 0.03); }
.notif-item.is-unread::after {
    content: '';
    position: absolute;
    top: 18px; right: 14px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.2);
}
.notif-icon {
    flex: 0 0 auto;
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 11px;
    font-size: 15px;
}
.notif-icon.run { background: rgba(245, 158, 11, 0.14); border: 1px solid rgba(245, 158, 11, 0.35); color: #fbbf24; }
.notif-icon.ok { background: var(--success-soft); border: 1px solid rgba(34, 197, 94, 0.35); color: #4ade80; }
.notif-icon.bad { background: rgba(239, 68, 68, 0.14); border: 1px solid rgba(239, 68, 68, 0.35); color: #f87171; }
.notif-item .notif-icon.run i { animation: flowSpinSlow 3s linear infinite; }
.notif-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; padding-right: 14px; }
.notif-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.notif-head b { font-size: 13.5px; font-weight: 700; }
.notif-head time { font-size: 11px; color: var(--text-muted); white-space: nowrap; }
.notif-line { font-size: 12.5px; color: var(--text-secondary); }
.notif-sols { font-size: 12px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.notif-sub { font-size: 11.5px; color: var(--text-muted); }
.notif-empty {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 36px 20px;
    color: var(--text-muted);
    font-size: 13.5px;
}
.notif-empty i { font-size: 26px; opacity: 0.5; }
.notif-panel-foot {
    display: block;
    padding: 12px 18px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
}
.notif-panel-foot:hover { color: var(--text-primary); background: var(--bg-tertiary); }
.notif-toasts {
    position: fixed;
    top: 80px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9995;
    pointer-events: none;
}
.notif-toast {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 340px;
    max-width: calc(100vw - 24px);
    padding: 12px 12px 12px 12px;
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.95);
    color: var(--text-primary);
    text-decoration: none;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.notif-toast.in { opacity: 1; transform: none; }
.notif-toast.out { opacity: 0; transform: translateX(24px); }
.notif-toast.ok { border-color: rgba(34, 197, 94, 0.45); }
.notif-toast.bad { border-color: rgba(239, 68, 68, 0.45); }
.notif-toast.run { border-color: rgba(245, 158, 11, 0.45); }
.notif-toast > span:not(.notif-icon) { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.notif-toast b { font-size: 13.5px; font-weight: 700; }
.notif-toast small { font-size: 12px; color: var(--text-muted); }
.notif-toast-close {
    margin-left: auto;
    width: 28px; height: 28px;
    border-radius: 8px;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-family: inherit;
}
.notif-toast-close:hover { background: var(--bg-tertiary); color: var(--text-primary); }
@keyframes bellRing { 0%, 100% { transform: rotate(0); } 15% { transform: rotate(18deg); } 30% { transform: rotate(-16deg); } 45% { transform: rotate(12deg); } 60% { transform: rotate(-8deg); } 75% { transform: rotate(4deg); } }
@keyframes bellNudge { 0%, 88%, 100% { transform: rotate(0); } 91% { transform: rotate(12deg); } 94% { transform: rotate(-10deg); } 97% { transform: rotate(6deg); } }
@keyframes badgePop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
@keyframes flowSpinSlow { to { transform: rotate(360deg); } }
@media (max-width: 900px) {
    .notif-panel { top: 66px; right: 12px; left: 12px; width: auto; }
    .notif-toasts { top: 68px; right: 12px; left: 12px; }
    .notif-toast { width: auto; }
}

/* ---------- Lebendiger: Flächen, Einblenden, Spotlight, Mikro-Interaktionen ---------- */
:root { --radius: 18px; }
body::after {
    background:
        radial-gradient(1100px 600px at 18% -12%, rgba(225, 29, 46, 0.13) 0%, transparent 60%),
        radial-gradient(800px 500px at 105% 110%, rgba(59, 130, 246, 0.07) 0%, transparent 60%),
        radial-gradient(600px 400px at 60% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    animation: bgDrift 30s ease-in-out infinite alternate;
}
@keyframes bgDrift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-30px, 20px, 0); } }

.main > *:not(.page-toolbar):not(.header-sale) { animation: appIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.main > *:nth-child(2) { animation-delay: 0.03s; }
.main > *:nth-child(3) { animation-delay: 0.09s; }
.main > *:nth-child(4) { animation-delay: 0.15s; }
.main > *:nth-child(5) { animation-delay: 0.21s; }
.main > *:nth-child(6) { animation-delay: 0.27s; }
.main > *:nth-child(n+7) { animation-delay: 0.33s; }
.stats-grid > *, .features > *, .content-grid > * { animation: appIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.stats-grid > *:nth-child(2), .content-grid > *:nth-child(2) { animation-delay: 0.08s; }
.stats-grid > *:nth-child(3) { animation-delay: 0.16s; }
.stats-grid > *:nth-child(4) { animation-delay: 0.24s; }
@keyframes appIn { 0% { opacity: 0; transform: translateY(14px); } 100% { opacity: 1; transform: none; } }

.card, .stat-card, .pricing-card, .status-card, .hours-card, .price-table-container, .app-promo-card {
    border-radius: var(--radius);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover, .pricing-card:hover, .status-card:hover, .hours-card:hover { border-color: rgba(255, 255, 255, 0.16); }

.nav-item { transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease !important; }
.nav-item:not(.primary):hover { transform: translateX(3px) !important; }
.nav-item.active::before {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    left: -12px !important; top: 9px !important; bottom: 9px !important;
    width: 3px !important;
    border-radius: 0 3px 3px 0 !important;
    background: var(--accent-color) !important;
    box-shadow: 0 0 12px rgba(225, 29, 46, 0.8) !important;
}
.sidebar-nav > .nav-item.primary:first-child { position: relative !important; overflow: hidden !important; }
.sidebar-nav > .nav-item.primary:first-child::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: -60%;
    width: 40%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    pointer-events: none;
}
.sidebar-nav > .nav-item.primary:first-child:hover::after { left: 120%; }

.btn-primary, .btn-save, .btn-buy, .cookie-btn-accept { position: relative; overflow: hidden; }
.btn-primary::after, .btn-save::after, .pricing-card.recommended .btn-buy::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: -60%;
    width: 40%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    pointer-events: none;
}
.btn-primary:hover::after, .btn-save:hover::after, .pricing-card.recommended .btn-buy:hover::after { left: 120%; }

.page-toolbar::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, rgba(225, 29, 46, 0.6), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.08));
    pointer-events: none;
}
.toolbar-profile { transition: transform 0.2s cubic-bezier(0.18, 1.4, 0.4, 1), box-shadow 0.2s ease, border-color 0.2s ease; }
.toolbar-profile:hover { transform: scale(1.06); box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.18), 0 8px 20px -10px rgba(225, 29, 46, 0.9); }
.stat-icon { transition: transform 0.3s cubic-bezier(0.18, 1.4, 0.4, 1); }
.stat-card:hover .stat-icon { transform: translateY(-2px) rotate(-6deg) scale(1.08); }
.card-title i { transition: transform 0.3s cubic-bezier(0.18, 1.4, 0.4, 1); }
.card:hover .card-title i { transform: rotate(-8deg) scale(1.08); }
.form-input, .form-control, .main input, .main select, .main textarea { transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, transform 0.15s ease; }
.main table tbody tr { transition: background 0.15s ease; }
.status-badge, .service-badge, .badge { transition: transform 0.15s ease; }
.status-badge:hover, .service-badge:hover { transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
    .main > *, .stats-grid > *, .features > *, .content-grid > *, body::after, .toolbar-bell i, .notif-icon i { animation: none !important; }
    .spot-glow, .spot-ring { display: none; }
}


/* =====================================================================
   V2 — sichtbar neuer Look: Glas-Sidebar, Sora-Headlines, Glas-Karten
   ===================================================================== */
:root {
    --sidebar-width: 292px;
    --font-head: 'Sora', 'Inter', system-ui, sans-serif;
    --accent-grad: linear-gradient(135deg, #ff3d4f 0%, #e11d2e 55%, #b8121f 100%);
    --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.028) 100%);
    --glass-border: rgba(255, 255, 255, 0.11);
    --glass-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    --radius: 22px;
    --radius-sm: 12px;
}
body { background: #06060a; }
body::after {
    background:
        radial-gradient(900px 600px at 8% -5%, rgba(225, 29, 46, 0.22) 0%, transparent 60%),
        radial-gradient(800px 600px at 100% 15%, rgba(120, 60, 255, 0.12) 0%, transparent 60%),
        radial-gradient(900px 700px at 60% 110%, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
    animation: bgDrift 26s ease-in-out infinite alternate;
}

/* Headline-Schrift */
.page-title, .welcome-title, .card-title, .stat-value, .modal-title, .empty-title, .notif-panel-head,
.screen-title, .type-card-title, .section-title, .ap-title, .status-card-header h2, .flow-clock-time,
.pricing-card .credits-amount, .pricing-card .price, h1, h2, h3 {
    font-family: var(--font-head);
}
.page-title, .welcome-title { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; }
.page-subtitle { font-size: 15px; margin-top: 8px; }

/* Schwebende Glas-Sidebar */
.sidebar {
    top: 14px;
    left: 14px;
    width: 264px;
    height: calc(100vh - 28px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: rgba(13, 13, 19, 0.94);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}
.sidebar-logo { height: 76px; border-bottom: 1px solid var(--border-color); }
.sidebar-nav { padding: 14px 14px 6px; }
.nav-label { padding: 14px 10px 6px; color: rgba(255, 255, 255, 0.36); }
.nav-item {
    height: 40px !important;
    line-height: 40px !important;
    padding: 0 8px 0 6px !important;
    border-radius: 12px !important;
    margin-bottom: 3px !important;
    font-weight: 500 !important;
}
.nav-item .nav-icon {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    margin-right: 11px !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px !important;
    transition: background 0.2s ease, color 0.2s ease, transform 0.25s cubic-bezier(0.18, 1.4, 0.4, 1) !important;
}
.nav-item:hover .nav-icon { background: rgba(255, 255, 255, 0.1) !important; color: #fff !important; transform: rotate(-6deg) scale(1.06) !important; }
.nav-item.active, .nav-item.active:hover {
    background: linear-gradient(90deg, rgba(225, 29, 46, 0.22) 0%, rgba(225, 29, 46, 0.06) 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(225, 29, 46, 0.25) !important;
}
.nav-item.active .nav-icon {
    background: var(--accent-grad) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 8px 18px -8px rgba(225, 29, 46, 0.9) !important;
}
.nav-item.active::before { display: none !important; }
.nav-item[href^="/legal/"] { height: 32px !important; line-height: 32px !important; }
.nav-item[href^="/legal/"] .nav-icon { width: 24px !important; min-width: 24px !important; height: 24px !important; border-radius: 7px !important; font-size: 11px !important; }
.nav-item.primary {
    height: 44px !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0 8px 0 6px !important;
}
.nav-item.primary .nav-icon { background: rgba(225, 29, 46, 0.16) !important; border-color: rgba(225, 29, 46, 0.3) !important; color: #ff5a68 !important; }
.sidebar-nav > .nav-item.primary:first-child {
    background: var(--accent-grad) !important;
    border-color: transparent !important;
    box-shadow: 0 16px 34px -14px rgba(225, 29, 46, 1), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}
.sidebar-nav > .nav-item.primary:first-child .nav-icon { background: rgba(255, 255, 255, 0.18) !important; border-color: rgba(255, 255, 255, 0.25) !important; color: #fff !important; }
.sidebar-footer { padding: 10px 14px 14px; border-top: 1px solid var(--border-color); }
.sidebar-user {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 10px;
    margin-bottom: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.15s ease, border-color 0.15s ease;
}
.sidebar-user:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.18); }
.sidebar-user-avatar {
    flex: 0 0 auto;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--accent-grad);
    color: #fff;
    font-family: var(--font-head);
    font-size: 12.5px;
    font-weight: 800;
    box-shadow: 0 8px 18px -8px rgba(225, 29, 46, 0.9);
}
.sidebar-user-text { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.sidebar-user-name { font-size: 13.5px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-sub { font-size: 11.5px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-text:empty { display: none; }
.online-counter { border-radius: 14px; background: rgba(255, 255, 255, 0.04); }
.logout-btn { border-radius: 12px; }

/* Inhalt und Topbar */
.main { padding: 0 44px 72px; }
.main { padding-top: 14px; }
.page-toolbar, .page-toolbar.scrolled {
    position: sticky;
    top: 14px;
    height: 64px;
    margin: 0 auto 30px !important;
    padding: 0 12px 0 14px;
    max-width: 1240px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background: rgba(13, 13, 19, 0.82);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    box-shadow: var(--glass-shadow);
    overflow: visible;
}
.page-toolbar.scrolled { box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.07); }
.page-toolbar::after, .page-toolbar.scrolled::after { display: none; }
.page-toolbar .language-dropdown-btn .lang-name { display: none; }
.page-toolbar .language-dropdown-btn { padding: 0 10px; gap: 7px; }
.page-toolbar .language-dropdown-btn .flag { width: 22px; height: 15px; border-radius: 3px; }
.toolbar-credits, .toolbar-language .language-dropdown-btn, .toolbar-bell {
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.toolbar-profile { width: 40px; height: 40px; background: var(--accent-grad); font-family: var(--font-head); }
.toolbar-status { height: 38px; padding: 0 14px 0 11px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

/* Glas-Karten mit Innenlicht */
.card, .stat-card, .pricing-card, .status-card, .hours-card, .price-table-container, .app-promo-card,
.scripts-banner, .info-banner, .info-hint, .info-box, .cov, .step-card, .type-card, .mfg-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.card, .stat-card, .pricing-card, .status-card, .hours-card, .price-table-container, .app-promo-card { border-radius: var(--radius); }
.scripts-banner, .info-banner, .info-hint, .info-box { border-radius: 18px; }
.card:hover, .pricing-card:hover, .status-card:hover, .hours-card:hover, .stat-card:hover { border-color: rgba(255, 255, 255, 0.2); }
.card-header { padding: 20px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.card-title { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.card-title i {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--accent-grad);
    border: 0;
    color: #fff;
    font-size: 13px;
    box-shadow: 0 10px 20px -10px rgba(225, 29, 46, 0.9);
}
.stat-card { padding: 22px 24px 24px; overflow: hidden; }
.stat-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--accent-grad);
    border: 0;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 10px 22px -10px rgba(225, 29, 46, 0.9);
}
.stat-value {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.stat-label { font-size: 13px; color: var(--text-secondary); }

/* Knöpfe und Formulare */
.btn-primary, .btn-save, .btn.btn-primary, .pricing-card.recommended .btn-buy, .cookie-btn-accept, .menu-toggle {
    background: var(--accent-grad) !important;
    border: 1px solid transparent !important;
    border-radius: 12px;
    box-shadow: 0 14px 30px -12px rgba(225, 29, 46, 1), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary:hover, .btn-save:hover, .btn.btn-primary:hover { box-shadow: 0 18px 36px -12px rgba(225, 29, 46, 1), inset 0 1px 0 rgba(255, 255, 255, 0.22); filter: brightness(1.06); }
.btn-secondary, .btn-back, .btn-view, .btn-download, .btn-ticket, .btn-buy, .cookie-btn-reject { border-radius: 12px; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.form-input, .form-control, .main input[type="text"], .main input[type="email"], .main input[type="password"], .main input[type="number"], .main input[type="tel"], .main input[type="search"], .main select, .main textarea {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.12);
}
.section-title { color: #ff5a68; }
.section-title i { color: #ff5a68; }

/* Leerzustand, Modale, Tabellen, Glocke */
.empty-icon, .empty-state > i { background: var(--accent-grad); border: 0; color: #fff; border-radius: 22px; box-shadow: 0 20px 40px -18px rgba(225, 29, 46, 1); }
.modal-content, .modal-overlay .modal, #konfModal .modal-content { border-radius: 22px; background: linear-gradient(180deg, rgba(20, 20, 28, 0.96), rgba(12, 12, 18, 0.96)); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.main table th { background: rgba(255, 255, 255, 0.03); }
.notif-panel, .notif-toast { border-radius: 20px; background: linear-gradient(180deg, rgba(22, 22, 30, 0.96), rgba(12, 12, 18, 0.96)); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.notif-toast { border-radius: 16px; }
.app-promo-card {
    background:
        radial-gradient(600px 360px at 10% 15%, rgba(225, 29, 46, 0.24) 0%, transparent 60%),
        radial-gradient(500px 300px at 95% 90%, rgba(120, 60, 255, 0.14) 0%, transparent 60%),
        var(--glass);
}
.app-promo-card .ap-app-icon { background: var(--accent-grad); }
.cookie-banner { border-radius: 20px 20px 0 0; }

/* Mobil */
@media (max-width: 900px) {
    .sidebar { top: 0; left: 0; height: 100vh; width: 288px; border-radius: 0 24px 24px 0; }
    .main { padding: 20px 16px 40px !important; }
    .page-title, .welcome-title { font-size: 26px; }
    .mobile-header { background: rgba(6, 6, 10, 0.82) !important; -webkit-backdrop-filter: blur(18px) !important; backdrop-filter: blur(18px) !important; }
    .menu-toggle { border-radius: 12px !important; }
}
@media (max-width: 1080px) and (min-width: 901px) {
    .main { padding: 14px 26px 48px; }
}

.toolbar-bell-badge[hidden] { display: none; }
@media (min-width: 901px) {
    .sidebar .online-counter { display: none !important; }
}
.sidebar-footer { padding: 10px 14px 12px; }
.sidebar-user { margin-bottom: 8px; }

.sidebar, .sidebar-logo, .sidebar-content, .sidebar-nav, .sidebar-footer { background-image: none; }
.sidebar-logo { background: transparent; }
.sidebar-footer { background: transparent; }


/* Spotlight als echte Kind-Elemente (keine Kollision mit ::before/::after der Seiten) */
.spot { position: relative; isolation: isolate; }
.spot-glow, .spot-ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.spot-glow {
    z-index: -1;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(225, 29, 46, 0.09), transparent 60%);
}
.spot-ring {
    z-index: 3;
    inset: -1px;
    padding: 1px;
    background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 90, 104, 0.85), transparent 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
}
.pricing-card > .spot-ring, .type-card > .spot-ring, .mfg-card > .spot-ring { inset: -2px; padding: 2px; }
.spot:hover > .spot-glow, .spot:hover > .spot-ring { opacity: 1; }

.main > .page-toolbar, .main > .page-toolbar.scrolled { max-width: 1240px; width: auto; height: 64px; }

.notif-icon.info { background: rgba(59, 130, 246, 0.14); border: 1px solid rgba(59, 130, 246, 0.4); color: #60a5fa; }
.notif-icon.muted { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); color: var(--text-secondary); }
.notif-toast.info { border-color: rgba(59, 130, 246, 0.5); }
.notif-toast.muted { border-color: rgba(255, 255, 255, 0.2); }

/* ---------- Tabellen im Kundenbereich ---------- */
.main table { font-size: 13.5px; }
.main table th, .main table td { padding: 12px 16px; vertical-align: middle; }
.main table th { border-bottom: 1px solid var(--border-strong); white-space: nowrap; }
.main table tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.012); }
.main table td strong { color: var(--text-primary); font-variant-numeric: tabular-nums; }
.status-badge, .service-badge, .badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; line-height: 1.5; white-space: nowrap; }

body::after { inset: -80px; }
@keyframes bgDrift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-24px, 16px, 0); } }

/* ---------- Preisliste mit Leistungs-Icons ---------- */
.price-table .price-icon-cell { width: 72px; padding-right: 0 !important; vertical-align: middle !important; }
.price-icon {
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 7px;
    border-radius: 14px;
    background: linear-gradient(180deg, #45454e 0%, #23232a 100%);
    border: 1px solid var(--border-strong);
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.9);
}
.price-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.price-icon i { display: none; color: var(--text-secondary); font-size: 17px; }
.price-icon.no-img { background: var(--accent-soft); border-color: rgba(225, 29, 46, 0.3); }
.price-icon.no-img i { display: block; color: #ff5a68; }
.price-table td { vertical-align: middle !important; }
.price-table .service-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.price-table .service-credits {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-strong);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.price-table .service-credits i { color: #ff5a68; }
.category-header { background: transparent; }
.category-header i {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--accent-grad);
    color: #fff;
    font-size: 13px;
}
.category-header h2 { font-family: var(--font-head); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
