/**
 * =================================================================
 * BRANDBENCH WEBSITE — APP.CSS
 * =================================================================
 * Bootstrap wird separat geladen. Diese Datei enthält alle
 * BrandBench-spezifischen Styles für die Marketing-Website.
 * =================================================================
 */


html {
    scroll-behavior: smooth;
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* =================================================================
   0. GLOBAL OVERRIDES
   ================================================================= */

.container {
    max-width: 1232px !important;
}

/* =================================================================
   1. CSS VARIABLEN
   ================================================================= */

:root {
    --bb-primary: #7e3afd;
    --bb-primary-dark: #6d28d9;
    --bb-primary-light: #9b67ff;
    --bb-secondary: #111727;
    --bb-accent: #49a3c0;
    --bb-dark: #23272e;
    --bb-gray: #78716c;
    --bb-gray-light: #a8a29e;
    --bb-light: #faf8f5;
    --bb-white: #ffffff;
    --bb-border: #e7e3dd;
    --bb-radius: 8px;
    --bb-radius-lg: 16px;
    --bb-radius-xl: 24px;
    --bb-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --bb-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --bb-transition: all 0.2s ease;
}


/* =================================================================
   2. GLOBAL RESETS
   ================================================================= */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--bb-dark);
    background: var(--bb-white);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--bb-primary);
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}


/* =================================================================
   3. SCROLLBAR
   ================================================================= */

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #a8a29e; }
* { scrollbar-width: thin; scrollbar-color: #d1d5db transparent; }


/* =================================================================
   4. HEADER / NAVIGATION
   ================================================================= */

.bb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--bb-transition);
}

.bb-nav {
    display: flex;
    align-items: center;
    height: 64px;
}

.bb-nav-logo img {
    height: 34px;
    width: auto;
    transition: transform 0.2s ease;
}

.bb-nav-logo:hover img {
    transform: scale(1.03);
}

.bb-nav-links {
    display: flex;
    gap: 8px;
    margin-left: 24px;
}

.bb-nav-link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bb-gray);
    text-decoration: none;
    border-radius: var(--bb-radius);
    transition: var(--bb-transition);
}

.bb-nav-link:hover {
    color: var(--bb-accent);
}

.bb-nav-link.active {
    color: var(--bb-dark);
}

/* Nav Dropdown (Lösungen) */

.bb-nav-dropdown {
    position: relative;
}

.bb-nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.bb-nav-link-dropdown i {
    font-size: 0.5rem;
    transition: transform 0.2s;
}

.bb-nav-dropdown:hover .bb-nav-link-dropdown i {
    transform: rotate(180deg);
}

.bb-nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.75rem;
    z-index: 200;
}

.bb-nav-dropdown:hover .bb-nav-dropdown-menu {
    display: block;
}

.bb-nav-dropdown-menu {
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    min-width: 300px;
}

.bb-nav-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.1s;
}

.bb-nav-dropdown-item:hover {
    background: #faf8f5;
    text-decoration: none;
}

.bb-nav-dropdown-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bb-light);
    color: var(--bb-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.bb-nav-dropdown-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #23272e;
    line-height: 1.3;
}

.bb-nav-dropdown-desc {
    font-size: 0.75rem;
    color: var(--bb-gray);
    line-height: 1.4;
    margin-top: 1px;
}

/* Mega Menu (Ressourcen) */

/* Mega Menu wird über .bb-nav positioniert, nicht über .bb-nav-mega */
.bb-nav {
    position: relative;
}

.bb-nav-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    padding: 1.5rem;
    width: 920px;
    max-width: calc(100vw - 2rem);
}

.bb-nav-mega:hover .bb-nav-mega-menu {
    display: flex;
}

.bb-nav-mega-cols { display: flex; gap: 2rem; }

.bb-nav-mega-col { flex: 1; min-width: 0; }

.bb-nav-mega-heading {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bb-gray-light);
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
}

.bb-nav-mega-item {
    display: block;
    padding: 0.5rem;
    margin-bottom: 0.55rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.12s;
}

.bb-nav-mega-item:hover { background: var(--bb-light); text-decoration: none; }

.bb-nav-mega-title { font-size: 0.8125rem; font-weight: 600; color: #23272e; line-height: 1.3; }

.bb-nav-mega-all {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 0.5rem; padding: 0.5rem;
    font-size: 0.8125rem; font-weight: 700; color: var(--bb-primary); text-decoration: none;
}
.bb-nav-mega-all i { font-size: 0.7rem; transition: transform 0.15s; }
.bb-nav-mega-all:hover i { transform: translateX(3px); }

.bb-nav-mega-footer {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    margin-top: 1.25rem; padding: 0.9rem 1.15rem;
    background: var(--bb-light); border-radius: 12px;
}
.bb-nav-mega-footer-text strong { display: block; font-size: 0.875rem; color: #23272e; }
.bb-nav-mega-footer-text span { font-size: 0.8125rem; color: var(--bb-gray); }

/* Mobile Nav Accordion */

.bb-mobile-nav-group {
    display: flex;
    flex-direction: column;
}

.bb-mobile-nav-toggle-group {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bb-mobile-nav-toggle-group i {
    font-size: 0.5rem;
    transition: transform 0.2s;
}

.bb-mobile-nav-toggle-group.open i {
    transform: rotate(180deg);
}

.bb-mobile-nav-subnav {
    display: none;
    flex-direction: column;
    padding: 0.25rem 0 0.5rem 1rem;
}

.bb-mobile-nav-subnav.open {
    display: flex;
}

.bb-mobile-nav-sublink {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.bb-mobile-nav-sublink:hover {
    color: #fff;
}

.bb-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.bb-nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--bb-dark);
    cursor: pointer;
    padding: 8px;
}


/* =================================================================
   5. BUTTONS
   ================================================================= */

.bb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--bb-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--bb-transition);
    white-space: nowrap;
}

/* Auf Mobil lange Button-Labels umbrechen statt über den Rand laufen zu lassen */
@media (max-width: 767.98px) {
    .bb-btn { white-space: normal; max-width: 100%; line-height: 1.3; }
}

.bb-btn-primary {
    background: var(--bb-secondary);
    color: #fff;
}

.bb-btn-primary:hover {
    background: #2a2a2a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bb-btn-ghost {
    background: transparent;
    color: var(--bb-secondary);
    border: 1px solid var(--bb-border);
}

.bb-btn-ghost:hover {
    background: var(--bb-light);
    color: var(--bb-secondary);
    border-color: #cbd5e1;
}

.bb-btn-outline {
    background: transparent;
    color: var(--bb-dark);
    border: 1px solid var(--bb-border);
}

.bb-btn-outline:hover {
    background: var(--bb-light);
    border-color: #cbd5e1;
    color: var(--bb-dark);
}

.bb-btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px;
}

.bb-btn-accent {
    background: var(--bb-primary);
    color: #fff;
}

.bb-btn-accent:hover {
    background: var(--bb-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(126, 58, 253, 0.25);
}


/* =================================================================
   6. SECTIONS
   ================================================================= */

.bb-section {
    padding: 80px 0;
}

.bb-section-lg {
    padding: 120px 0;
}

.bb-section-gray {
    background: var(--bb-light);
}

.bb-section-dark {
    background: var(--bb-secondary);
    color: #fff;
}

.bb-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.bb-section-subtitle {
    font-size: 1.125rem;
    color: var(--bb-gray);
    line-height: 1.6;
    max-width: 600px;
}

.bb-section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bb-section-center {
    text-align: center;
}

.bb-section-center .bb-section-subtitle {
    margin-left: auto;
    margin-right: auto;
}


/* =================================================================
   7. HERO
   ================================================================= */

.bb-hero {
    padding: 160px 0 100px;
    text-align: center;
}

.bb-hero-gradient {
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
    padding-bottom: 0;
}

/* Pipeline als nativer Bestandteil des Heros (kein Mockup-Frame),
   fadet nach unten hell aus -> nahtloser Übergang in die nächste Sektion (#fff). */
.bb-home-pipeline {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}
.bb-home-pipeline .container {
    max-width: 1180px;
}
.bb-home-pipeline-board {
    padding-top: 0.25rem;
    text-align: left;
}
.bb-home-pipeline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 55%, #ffffff 100%);
    pointer-events: none;
    z-index: 3;
}

/* =================================================================
   HERO VIDEO
   ================================================================= */

.bb-hero-video-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: var(--bb-radius);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
    margin-top: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bb-hero-video-wrapper video {
    width: 100%;
    display: block;
}

.bb-hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px 8px 8px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bb-hero-play-btn .bb-play-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--bb-dark);
    border-radius: 50%;
    flex-shrink: 0;
}

.bb-hero-play-btn .bb-play-icon i {
    font-size: 0.75rem;
    margin-left: 2px;
}

.bb-hero-play-btn span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.bb-hero-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.bb-hero-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.bb-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bb-hero-subtitle {
    font-size: 1.0625rem;
    color: var(--bb-gray);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

.bb-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.bb-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bb-primary);
    background: rgba(126, 58, 253, 0.08);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.bb-hero-note {
    font-size: 0.8125rem;
    color: var(--bb-gray-light);
    margin-top: 1.25rem;
}

.bb-hero-image {
    margin-top: 4rem;
    border-radius: var(--bb-radius-xl);
    overflow: hidden;
    box-shadow: var(--bb-shadow-lg);
    border: 1px solid var(--bb-border);
}

.bb-hero-image img {
    width: 100%;
    display: block;
}


/* =================================================================
   BROWSER MOCKUP
   ================================================================= */

.bb-browser-mockup {
    background: #fff;
    border-radius: var(--bb-radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 3rem;
}

.bb-browser-mockup-sm {
    margin-top: 0;
}

.bb-browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid var(--bb-border);
}

.bb-browser-dots {
    display: flex;
    gap: 6px;
}

.bb-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.bb-browser-dots span:first-child { background: #ef4444; }
.bb-browser-dots span:nth-child(2) { background: #f59e0b; }
.bb-browser-dots span:last-child { background: #22c55e; }

.bb-browser-bar {
    flex: 1;
    background: #e7e3dd;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.75rem;
    color: var(--bb-gray);
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.bb-browser-body img {
    width: 100%;
    display: block;
}


/* =================================================================
   LOGO BAR
   ================================================================= */

.bb-logobar {
    padding: 40px 0;
}

.bb-logobar-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.bb-logobar-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.bb-logobar-score {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bb-gray-light);
    margin-left: 2px;
}

.bb-logobar-label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--bb-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

.bb-logobar-track {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.bb-logobar-item {
    display: flex;
    align-items: center;
}

.bb-logobar-item img {
    height: 24px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.bb-logobar-item img:hover {
    opacity: 0.7;
    filter: grayscale(0%);
}


/* =================================================================
   QUOTE BLOCK
   ================================================================= */

.bb-quote-block {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.bb-quote-icon {
    font-size: 1.5rem;
    color: var(--bb-primary);
    opacity: 0.3;
    margin-bottom: 1.25rem;
}

.bb-quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--bb-dark);
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.bb-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.bb-quote-avatar {
    width: 48px;
    height: 48px;
    background: var(--bb-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.bb-quote-name {
    font-size: 0.9375rem;
    font-weight: 700;
    text-align: left;
}

.bb-quote-role {
    font-size: 0.8125rem;
    color: var(--bb-gray);
    text-align: left;
}


/* =================================================================
   SHOWCASE LAYOUT (Side-by-side)
   ================================================================= */

.bb-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bb-showcase-reverse .bb-showcase-visual {
    order: -1;
}

@media (max-width: 991.98px) {
    .bb-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .bb-showcase-reverse .bb-showcase-visual {
        order: 0;
    }
}


/* =================================================================
   PAIN CARDS
   ================================================================= */

.bb-pain-card {
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--bb-transition);
}

.bb-pain-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--bb-shadow-lg);
    transform: translateY(-2px);
}

.bb-pain-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(73, 163, 192, 0.1);
    border-radius: 14px;
    font-size: 1.25rem;
    color: var(--bb-accent);
    margin: 0 auto 1.25rem;
}

.bb-pain-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bb-pain-card p {
    font-size: 0.875rem;
    color: var(--bb-gray);
    line-height: 1.6;
    margin: 0;
}


/* =================================================================
   DARK FEATURE CARDS
   ================================================================= */

.bb-feature-card-dark {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.bb-feature-card-dark:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.bb-feature-card-dark .bb-feature-title {
    color: #fff;
}

.bb-feature-card-dark .bb-feature-text {
    color: rgba(255, 255, 255, 0.5);
}


/* =================================================================
   CTA CARD
   ================================================================= */

.bb-cta-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--bb-light);
    border-radius: var(--bb-radius-xl);
    border: 1px solid var(--bb-border);
}

.bb-cta-link {
    color: var(--bb-primary);
    text-decoration: underline;
    font-weight: 500;
}

.bb-cta-link:hover {
    color: var(--bb-primary-dark);
}


/* =================================================================
   PAIN POINT SECTION
   ================================================================= */

.bb-pain-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bb-gray);
    background: var(--bb-light);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.bb-pain-text {
    font-size: 1.0625rem;
    color: var(--bb-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.bb-pain-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bb-pain-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bb-pain-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bb-light);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--bb-gray);
}

.bb-pain-item strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 2px;
}

.bb-pain-item p {
    font-size: 0.875rem;
    color: var(--bb-gray);
    margin: 0;
    line-height: 1.5;
}

/* Pain Visual: Fake Excel */
.bb-pain-visual {
    position: relative;
}

.bb-pain-visual-card {
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    overflow: hidden;
    box-shadow: var(--bb-shadow-lg);
}

.bb-pain-visual-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid var(--bb-border);
}

.bb-pain-visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.bb-pain-visual-body {
    padding: 0;
}

.bb-pain-visual-row {
    display: flex;
    padding: 10px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bb-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bb-pain-visual-row-data {
    font-weight: 400;
    text-transform: none;
    color: var(--bb-dark);
    letter-spacing: 0;
    font-size: 0.8125rem;
}

.bb-pain-visual-row-data span {
    flex: 1;
}

.bb-pain-visual-cell {
    display: inline-block;
}

.bb-pain-visual-label {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--bb-gray-light);
    margin-top: 1rem;
    font-style: italic;
}


/* =================================================================
   FEATURE SHOWCASE
   ================================================================= */

.bb-showcase-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.bb-showcase-text {
    font-size: 1.0625rem;
    color: var(--bb-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bb-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bb-showcase-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--bb-dark);
    font-weight: 500;
}

.bb-showcase-list li i {
    color: var(--bb-primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.bb-showcase-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bb-primary);
    text-decoration: none;
    transition: var(--bb-transition);
}

.bb-showcase-link:hover {
    color: var(--bb-primary-dark);
    gap: 4px;
}

.bb-showcase-image {
    position: relative;
    border-radius: var(--bb-radius-xl);
    overflow: hidden;
    box-shadow: var(--bb-shadow-lg);
    border: 1px solid var(--bb-border);
}

.bb-showcase-image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.bb-showcase-image:hover img {
    transform: scale(1.02);
}


/* =================================================================
   FEATURE SLIDER (overflow right)
   ================================================================= */

.bb-feature-slider {
    width: 100%;
    overflow: visible;
}

body {
    overflow-x: hidden;
}

.bb-feature-slider-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    padding-right: 1.5rem;
    padding-top: 8px;
    padding-bottom: 8px;
}

.bb-feature-slider-track::-webkit-scrollbar {
    display: none;
}

.bb-feature-slider-track::-webkit-scrollbar {
    display: none;
}

.bb-feature-slide {
    flex: 0 0 380px;
    height: 524px;
    scroll-snap-align: start;
    border-radius: var(--bb-radius);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
}

.bb-feature-slider-track * {
    -webkit-user-drag: none;
    user-select: none;
}

.bb-feature-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.45) 100%);
}

.bb-feature-slide {
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bb-feature-slide:hover {
    color: #fff;
    transform: scale(1.01);
}

.bb-feature-slide:hover .bb-feature-slide-arrow {
    animation: bb-pulse-arrow 2s ease-in-out infinite;
}

@keyframes bb-pulse-arrow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.bb-feature-slide-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 2rem;
}

.bb-feature-slide-top .bb-showcase-badge {
    margin-bottom: 0.75rem;
}

.bb-feature-slide-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: #fff;
}

.bb-feature-slide-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.bb-feature-slide-bottom {
    display: flex;
    justify-content: flex-end;
}

.bb-feature-slide-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 1rem;
    color: #fff;
    transition: var(--bb-transition);
}



/* Slider Navigation Arrows */

.bb-slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.bb-slider-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bb-white);
    border: 1px solid var(--bb-border);
    border-radius: 50%;
    font-size: 0.875rem;
    color: var(--bb-dark);
    cursor: pointer;
    transition: var(--bb-transition);
}

.bb-slider-arrow:hover:not(.disabled) {
    background: var(--bb-dark);
    color: #fff;
    border-color: var(--bb-dark);
}

.bb-slider-arrow.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .bb-slider-nav {
        display: none;
    }
}


/* =================================================================
   INTEGRATIONS SLIDER
   ================================================================= */

.bb-integrations-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.bb-integrations-track {
    display: flex;
    gap: 2rem;
    animation: bb-scroll 50s linear infinite;
    width: max-content;
}

@keyframes bb-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bb-integration-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.bb-integration-item i {
    font-size: 1.5rem;
}

.bb-integration-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bb-dark);
}


/* =================================================================
   TRUST SECTION
   ================================================================= */

.bb-trust-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.bb-trust-germany-bg {
    position: absolute;
    right: -100px;
    top: -60px;
    height: calc(100% + 120px);
    width: auto;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.bb-trust-section .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .bb-trust-germany-bg {
        right: -60px;
        opacity: 0.04;
    }
}

@media (max-width: 575.98px) {
    .bb-trust-germany-bg {
        display: none;
    }

    .bb-trust-section {
        padding: 4rem 0;
    }
}

.bb-trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.bb-trust-text {
    font-size: 1.0625rem;
    color: var(--bb-gray);
    line-height: 1.7;
}

.bb-dsgvo-badges {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.bb-dsgvo-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: 10px;
}

.bb-dsgvo-badge img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.bb-dsgvo-badge strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #23272e;
    line-height: 1.3;
}

.bb-dsgvo-badge span {
    display: block;
    font-size: 0.6875rem;
    color: var(--bb-gray);
    line-height: 1.3;
}

@media (max-width: 575.98px) {
    .bb-dsgvo-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.bb-trust-card {
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: var(--bb-transition);
}

.bb-trust-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--bb-shadow);
}

.bb-trust-card i {
    font-size: 1.25rem;
    color: var(--bb-accent);
    margin-bottom: 0.75rem;
    display: block;
}

.bb-trust-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.bb-trust-card p {
    font-size: 0.8125rem;
    color: var(--bb-gray);
    margin: 0;
    line-height: 1.5;
}


/* =================================================================
   TESTIMONIALS (erfolgswerkstatt.io style)
   ================================================================= */

.bb-testi {
    max-width: 800px;
    margin: 0 auto;
}

.bb-testi-track {
    position: relative;
    min-height: 180px;
}

.bb-testi-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.bb-testi-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.bb-testi-quote {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--bb-dark);
    border: none;
    padding: 0;
    margin: 0 0 2rem;
    font-style: normal;
}

.bb-testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bb-testi-avatar {
    width: 40px;
    height: 40px;
    background: var(--bb-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.bb-testi-author > div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bb-testi-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--bb-dark);
}

.bb-testi-role {
    font-size: 0.8125rem;
    color: var(--bb-gray);
}

.bb-testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.bb-testi-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bb-white);
    border: 1px solid var(--bb-border);
    border-radius: 50%;
    font-size: 0.75rem;
    color: var(--bb-dark);
    cursor: pointer;
    transition: var(--bb-transition);
}

.bb-testi-arrow:hover {
    background: var(--bb-dark);
    color: #fff;
    border-color: var(--bb-dark);
}

.bb-testi-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.bb-testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: var(--bb-transition);
    padding: 0;
}

.bb-testi-dot.active {
    background: var(--bb-dark);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 767.98px) {
    .bb-testi-quote {
        font-size: 1.25rem;
    }

    .bb-testi-author {
        gap: 8px;
    }
}

.bb-header-scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}


/* =================================================================
   8. FEATURE CARDS
   ================================================================= */

.bb-feature-card {
    padding: 2rem;
    background: var(--bb-white);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    transition: var(--bb-transition);
    height: 100%;
}

.bb-feature-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--bb-shadow-lg);
    transform: translateY(-2px);
}

.bb-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.bb-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bb-feature-text {
    font-size: 0.9375rem;
    color: var(--bb-gray);
    line-height: 1.6;
    margin-bottom: 0;
}


/* =================================================================
   9. FOOTER
   ================================================================= */

.bb-footer {
    background: var(--bb-secondary);
    color: #fff;
    padding: 60px 0 30px;
}

.bb-footer-brand {
    margin-bottom: 1.5rem;
}

.bb-footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 0.75rem;
}

.bb-footer-tagline {
    color: var(--bb-gray-light);
    font-size: 0.875rem;
    margin-top: 0.75rem;
    line-height: 1.6;
}

.bb-footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bb-gray-light);
    margin-bottom: 1rem;
}

.bb-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bb-footer-links li {
    margin-bottom: 0.5rem;
}

.bb-footer-links a {
    color: #cbd5e1;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s;
}

.bb-footer-links a:hover {
    color: var(--bb-accent);
}

.bb-footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bb-footer-bottom p {
    font-size: 0.8125rem;
    color: var(--bb-gray-light);
    margin: 0;
}


/* =================================================================
   10. MOBILE NAV (Slide-in from right, glassmorphism)
   ================================================================= */

/* Backdrop */
.bb-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background 0.3s ease;
}

.bb-mobile-backdrop.active {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Panel */
.bb-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 90%;
    max-width: 400px;
    z-index: 1001;
    background: rgba(17, 23, 39, 0.92);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
}

.bb-mobile-nav.active {
    transform: translateX(0);
}

/* Header */
.bb-mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bb-mobile-nav-logo img {
    height: 26px;
    width: auto;
    opacity: 0.9;
}

.bb-mobile-nav-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.bb-mobile-nav-close:hover {
    color: #fff;
}

/* Body / Links */
.bb-mobile-nav-body {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow-y: auto;
}

.bb-mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.375rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.bb-mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
}

.bb-mobile-nav-link.active {
    color: var(--bb-primary-light);
}

/* Footer */
.bb-mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bb-mobile-nav-signin {
    display: block;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.bb-mobile-nav-signin:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

/* Body scroll lock when menu open */
body.bb-mobile-nav-open {
    overflow: hidden;
}

html.bb-mobile-nav-open {
    overflow: hidden;
}

html.bb-mobile-nav-open body {
    overflow-x: hidden;
}


/* =================================================================
   11. RESPONSIVE
   ================================================================= */

@media (max-width: 991.98px) {
    .bb-nav-links,
    .bb-nav-actions {
        display: none;
    }

    .bb-nav-mobile-toggle {
        display: block;
    }

    .bb-hero-title {
        font-size: 2.25rem;
    }

    .bb-hero-subtitle {
        font-size: 1rem;
    }

    .bb-section-title {
        font-size: 1.75rem;
    }

    .bb-section {
        padding: 60px 0;
    }

    .bb-section-lg {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .bb-hero {
        padding: 120px 0 60px;
    }

    .bb-hero-title {
        font-size: 1.875rem;
    }

    .bb-btn-lg {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}


/* ==========================================================================
   PRICING
   ========================================================================== */

/* Hero with Background Image */
.bb-pricing-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    padding: 180px 0 0;
    overflow: hidden;
}

.bb-pricing-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.bb-pricing-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.bb-pricing-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(160deg, rgba(17, 23, 39, 0.96) 0%, rgba(17, 23, 39, 0.9) 55%, rgba(126, 58, 253, 0.16) 100%);
    z-index: 1;
}

.bb-pricing-hero-content {
    text-align: center;
    position: relative;
}

.bb-pricing-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 1rem auto 1rem;
    max-width: 600px;
}

.bb-pricing-hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* Pricing Table Section (overlaps hero) */
.bb-pricing-table-section {
    position: relative;
    z-index: 3;
    margin-top: calc(-35vh - 35px);
    padding-bottom: 60px;
}

/* Free Plan Banner */

.bb-pricing-free-banner {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.bb-pricing-free-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.75rem;
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bb-pricing-free-banner-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #23272e;
    margin-bottom: 0.25rem;
}

.bb-pricing-free-banner-title i {
    color: var(--bb-primary);
    margin-right: 0.375rem;
}

.bb-pricing-free-banner-text {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.5;
}

.bb-pricing-free-banner-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .bb-pricing-free-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .bb-pricing-free-banner-btn {
        width: 100%;
        text-align: center;
    }
}

/* Toggle */
.bb-pricing-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 767.98px) {
    .bb-pricing-hero {
        min-height: 60vh;
        padding: 120px 0 0;
    }

    .bb-pricing-hero-title {
        font-size: 1.75rem;
    }

    .bb-pricing-table-section {
        margin-top: -80px;
    }
}

/* Cards Grid */
.bb-pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    width: 100%;
}

.bb-pricing-card {
    border-radius: var(--bb-radius-lg);
    padding: 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: var(--bb-transition);
}

.bb-pricing-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.bb-pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bb-primary);
    color: #fff;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 600;
    white-space: nowrap;
}


/* Pricing Responsive */
@media (max-width: 991.98px) {
    .bb-pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .bb-pricing-cards {
        grid-template-columns: 1fr;
    }
}


/* Compare Table */
.bb-pricing-ct {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: var(--bb-radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.bb-pricing-ct-head {
    background: var(--bb-secondary);
    border-bottom: none;
}

.bb-pricing-ct-head .bb-pricing-ct-row {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.bb-pricing-ct-head .bb-pricing-ct-cell {
    padding: 16px 16px;
}

.bb-pricing-ct-head .bb-pricing-ct-cell-plan {
    color: #fff;
    font-size: 0.8125rem;
    text-transform: none;
    letter-spacing: 0;
}

.bb-pricing-ct-body .bb-pricing-ct-row {
    border-bottom: 1px solid #f1f5f9;
}

.bb-pricing-ct-body .bb-pricing-ct-row:nth-child(even):not([style*="background"]) {
    background: #fafbfc;
}

.bb-pricing-ct-body .bb-pricing-ct-row:last-child {
    border-bottom: none;
}

.bb-pricing-ct-body .bb-pricing-ct-cell {
    padding: 12px 16px;
    font-size: 0.8125rem;
    color: var(--bb-dark);
}

.bb-pricing-ct-row {
    display: flex;
    align-items: center;
}

.bb-pricing-ct-cell {
    flex: 1;
    min-width: 0;
}

.bb-pricing-ct-cell-feature {
    flex: 1.8;
    min-width: 200px;
}

.bb-pricing-ct-cell-plan {
    flex: 1;
    text-align: center;
    justify-content: center;
    min-width: 100px;
}

.bb-pricing-ct-cell-recommended {
    background: rgba(126, 58, 253, 0.03);
}

.bb-pricing-ct-head .bb-pricing-ct-cell-recommended {
    background: var(--bb-primary);
    color: #fff;
    font-weight: 700;
}

.bb-pricing-ct-row-category {
    background: var(--bb-light);
}

.bb-pricing-ct-category-label {
    padding: 14px 16px 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bb-gray);
}

.bb-pricing-ct-feature-name {
    font-weight: 500;
}

.bb-pricing-ct-feature-hint {
    font-size: 0.75rem;
    color: var(--bb-gray-light);
    margin-top: 1px;
}

@media (max-width: 575.98px) {
    .bb-pricing-ct-cell-feature {
        min-width: 140px;
    }

    .bb-pricing-ct-cell-plan {
        min-width: 70px;
        font-size: 0.75rem;
    }

    .bb-pricing-ct-head .bb-pricing-ct-cell {
        font-size: 0.625rem;
        padding: 10px 8px;
    }

    .bb-pricing-ct-body .bb-pricing-ct-cell {
        padding: 8px;
    }
}


.bb-pricing-ct-hidden {
    display: none;
}

/* Audience Tabs */
.bb-audience-tab {
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--bb-border);
    border-radius: 100px;
    background: #fff;
    color: var(--bb-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.bb-audience-tab:hover {
    border-color: #d0d0d0;
    color: var(--bb-dark);
}

.bb-audience-tab.active {
    background: var(--bb-secondary);
    border-color: var(--bb-secondary);
    color: #fff;
}

.bb-audience-panel {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 575.98px) {
    .bb-audience-tab {
        padding: 6px 14px;
        font-size: 0.8125rem;
    }
}


/* FAQ Akkordion */
.bb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.bb-faq-item {
    border-bottom: 1px solid var(--bb-border);
}

.bb-faq-item:first-child {
    border-top: 1px solid var(--bb-border);
}

.bb-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bb-dark);
    transition: color 0.2s ease;
}

.bb-faq-question:hover {
    color: var(--bb-primary);
}

.bb-faq-question i {
    font-size: 0.75rem;
    color: var(--bb-gray-light);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.bb-faq-item.open .bb-faq-question i {
    transform: rotate(45deg);
}

.bb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.bb-faq-item.open .bb-faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.bb-faq-answer p {
    font-size: 0.875rem;
    color: var(--bb-gray);
    line-height: 1.7;
    margin: 0;
}


/* ==========================================================================
   BLOG
   ========================================================================== */

/* Blog Grid (Übersicht) */
.bb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bb-blog-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--bb-radius-lg);
    overflow: hidden;
    border: 1px solid var(--bb-border);
    background: var(--bb-white);
    text-decoration: none;
    transition: var(--bb-transition);
}

.bb-blog-card:hover {
    box-shadow: var(--bb-shadow-lg);
    transform: translateY(-2px);
}

.bb-blog-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f1f5f9;
}

.bb-blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bb-blog-card-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bb-blog-card-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--bb-primary);
    background: rgba(126, 58, 253, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.bb-blog-card-date {
    font-size: 0.75rem;
    color: var(--bb-gray-light);
}

/* Artikel-Seite: Kategorie im Meta */
.bb-article-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bb-primary);
    background: rgba(126, 58, 253, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.bb-blog-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bb-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.bb-blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--bb-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.bb-blog-card-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--bb-primary);
}

.bb-blog-card:hover .bb-blog-card-link {
    color: var(--bb-primary-dark);
}

/* Artikel-Seite */
.bb-article-header {
    max-width: none;
}

.bb-article-back {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--bb-gray);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: var(--bb-transition);
}

.bb-article-back:hover {
    color: var(--bb-primary);
}

.bb-article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--bb-gray-light);
    margin-bottom: 1rem;
}

.bb-article-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--bb-gray-light);
}

.bb-article-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--bb-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.bb-article-excerpt {
    font-size: 1.125rem;
    color: var(--bb-gray);
    line-height: 1.6;
}

.bb-article-image {
    border-radius: var(--bb-radius-lg);
    overflow: hidden;
}

.bb-article-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Artikel-Layout (ToC + Body) — nutzt Bootstrap row/col */
.bb-article-main {
    min-width: 0;
}

/* Table of Contents */
.bb-toc {
    position: relative;
}

.bb-toc-inner {
    position: sticky;
    top: 100px;
}

.bb-toc-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bb-gray);
    margin-bottom: 1rem;
}

.bb-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 2px solid var(--bb-border);
}

.bb-toc-link {
    display: block;
    padding: 8px 0 8px 16px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--bb-gray);
    text-decoration: none;
    border-left: 2px solid transparent;
    margin-left: -2px;
    transition: all 0.15s ease;
}

.bb-toc-link:hover {
    color: var(--bb-dark);
}

.bb-toc-link.active {
    color: var(--bb-dark);
    font-weight: 600;
    border-left-color: var(--bb-primary);
}

/* Artikel-Body (Content aus DB / Editor) */
.bb-article-body {
    font-size: 1.0625rem;
    color: #374151;
    line-height: 1.8;
}

.bb-article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bb-dark);
    margin: 2.5rem 0 1rem;
}

.bb-article-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bb-dark);
    margin: 2rem 0 0.75rem;
}

.bb-article-body p {
    margin-bottom: 1.25rem;
}

.bb-article-body ul, .bb-article-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.bb-article-body li {
    margin-bottom: 0.5rem;
}

.bb-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--bb-radius);
    margin: 1.5rem 0;
}

.bb-article-body blockquote {
    border-left: 3px solid var(--bb-primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #fafafa;
    border-radius: 0 var(--bb-radius) var(--bb-radius) 0;
    font-style: italic;
    color: var(--bb-gray);
}

.bb-article-body a {
    color: var(--bb-primary);
    text-decoration: underline;
}

.bb-article-body a:hover {
    color: var(--bb-primary-dark);
}

/* Artikel CTA */
.bb-article-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: var(--bb-light);
    border-radius: var(--bb-radius-lg);
}

.bb-article-cta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bb-dark);
    margin-bottom: 0.5rem;
}

.bb-article-cta p {
    font-size: 0.9375rem;
    color: var(--bb-gray);
    margin-bottom: 1.5rem;
}

/* Blog Responsive */
@media (max-width: 991.98px) {
    .bb-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bb-article-title {
        font-size: 1.75rem;
    }

    .bb-toc {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .bb-blog-grid {
        grid-template-columns: 1fr;
    }

    .bb-article-title {
        font-size: 1.5rem;
    }

    .bb-article-body {
        font-size: 1rem;
    }

    .bb-article-cta {
        padding: 2rem 1.5rem;
    }
}


/* =================================================================
   SHARED UTILITY CLASSES
   Used across all pages — replaces inline CSS
   ================================================================= */

/* --- Icon Containers --- */
.bb-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bb-icon-sm   { width: 32px; height: 32px; border-radius: 8px; }
.bb-icon-md   { width: 40px; height: 40px; border-radius: 10px; }
.bb-icon-lg   { width: 48px; height: 48px; border-radius: 12px; }
.bb-icon-xl   { width: 56px; height: 56px; border-radius: 14px; }

.bb-icon-blue      { background: rgba(14, 165, 233, 0.08); color: #0ea5e9; }
.bb-icon-green     { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.bb-icon-emerald   { background: rgba(22, 163, 74, 0.08); color: #16a34a; }
.bb-icon-purple    { background: rgba(139, 92, 246, 0.08); color: #8b5cf6; }
.bb-icon-amber     { background: rgba(245, 158, 11, 0.08); color: #f59e0b; }
.bb-icon-red       { background: rgba(126, 58, 253, 0.08); color: var(--bb-primary); }
.bb-icon-indigo    { background: rgba(99, 102, 241, 0.08); color: #9b67ff; }
.bb-icon-rose      { background: rgba(239, 68, 68, 0.08); color: #ef4444; }

/* --- Card Base --- */
.bb-card {
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    padding: 2rem;
}

.bb-card-center { text-align: center; }
.bb-card-full   { height: 100%; }
.bb-card-hover  { transition: var(--bb-transition); }
.bb-card-hover:hover { transform: translateY(-2px); box-shadow: var(--bb-shadow-lg); }

.bb-card-muted {
    background: var(--bb-light);
    border: none;
    border-radius: var(--bb-radius-lg);
    padding: 2rem;
}

/* --- Section Intro (centered heading block) --- */
.bb-section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

/* --- Trust Point Row --- */
.bb-trust-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.bb-trust-title {
    font-size: 0.8125rem;
    font-weight: 600;
}

.bb-trust-desc {
    font-size: 0.75rem;
    color: var(--bb-gray);
}

/* --- Form Labels --- */
.bb-form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.375rem;
}

.bb-form-label-required { color: var(--bb-primary); }

.bb-form-note {
    font-size: 0.75rem;
    color: var(--bb-gray-light);
    margin-top: 0.75rem;
}

/* --- Avatar / Initials Circle --- */
.bb-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    color: #fff;
    background: var(--bb-primary);
    flex-shrink: 0;
}

.bb-avatar-sm { width: 36px; height: 36px; font-size: 0.75rem; }
.bb-avatar-md { width: 48px; height: 48px; font-size: 0.875rem; }

/* --- Author Block (avatar + name/role) --- */
.bb-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bb-author-name  { font-size: 0.8125rem; font-weight: 600; }
.bb-author-role  { font-size: 0.75rem; color: var(--bb-gray-light); }

/* --- Feature/Benefit Check List --- */
.bb-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bb-check {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--bb-dark);
    font-weight: 500;
}

.bb-check i {
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    flex-shrink: 0;
}

/* --- Star Rating --- */
.bb-stars i {
    color: #f59e0b;
    font-size: 0.875rem;
}

/* --- Step Numbers --- */
.bb-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bb-secondary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

/* Reseller Steps with animated lines */

.bb-reseller-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.bb-reseller-step {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.bb-reseller-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    perspective: 300px;
    transition: transform 0.1s;
}

.bb-step-num-face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    backface-visibility: hidden;
    transition: transform 0.5s ease;
}

.bb-step-num-front {
    background: var(--bb-secondary);
    transform: rotateY(0deg);
}

.bb-step-num-back {
    background: #059669;
    transform: rotateY(180deg);
    font-size: 1rem;
}

.bb-reseller-step-num.flipped .bb-step-num-front {
    transform: rotateY(-180deg);
}

.bb-reseller-step-num.flipped .bb-step-num-back {
    transform: rotateY(0deg);
}

.bb-reseller-step h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bb-reseller-step p {
    font-size: 0.8125rem;
    color: var(--bb-gray);
    line-height: 1.5;
    margin: 0;
    padding: 0 0.5rem;
}

.bb-reseller-step-line {
    width: 60px;
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 23px;
    overflow: hidden;
}

.bb-reseller-step-line-fill {
    height: 100%;
    width: 0%;
    background: var(--bb-primary);
    border-radius: 2px;
}

@media (max-width: 575.98px) {
    .bb-reseller-steps {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .bb-reseller-step-line {
        width: 3px;
        height: 32px;
        margin-top: 0;
    }

    .bb-reseller-step-line-fill {
        width: 100% !important;
        height: 0%;
        transition: height 0.8s ease !important;
    }
}

/* Custom Packages Section */

.bb-custom-packages {
    background: #23272e;
    padding: 5rem 0;
}

.bb-custom-packages-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bb-custom-packages-text {
    font-size: 1rem;
    color: #a8a29e;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.bb-custom-packages-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.bb-custom-packages-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #cbd5e1;
}

.bb-custom-packages-list li i {
    color: #34d399;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.bb-custom-packages-cards {
    display: flex;
    gap: 1rem;
}

.bb-custom-pkg-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.15s;
    position: relative;
}

.bb-custom-pkg-card:hover {
    transform: translateY(-2px);
}

.bb-custom-pkg-card-highlight {
    background: rgba(126, 58, 253, 0.08);
    border: 2px solid rgba(126, 58, 253, 0.25);
}

.bb-custom-pkg-popular {
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 3px 10px;
    background: var(--bb-primary);
    color: #fff;
    border-radius: 20px;
}

.bb-custom-pkg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.bb-custom-pkg-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
}

.bb-custom-pkg-badge {
    font-size: 0.625rem;
    padding: 2px 8px;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border-radius: 4px;
    font-weight: 600;
}

.bb-custom-pkg-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.bb-custom-pkg-interval {
    font-size: 0.75rem;
    color: #78716c;
    margin-bottom: 1.25rem;
}

.bb-custom-pkg-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bb-custom-pkg-feat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.bb-custom-pkg-feat i {
    width: 14px;
    font-size: 0.625rem;
    flex-shrink: 0;
}

.bb-custom-pkg-feat.on {
    color: #a8a29e;
}

.bb-custom-pkg-feat.on i {
    color: #34d399;
}

.bb-custom-pkg-feat.off {
    color: #475569;
}

.bb-custom-pkg-feat.off i {
    color: #475569;
}

@media (max-width: 767.98px) {
    .bb-custom-packages-cards {
        flex-direction: column;
    }

    .bb-custom-packages-title {
        font-size: 1.5rem;
    }
}

/* Reseller Application Section */

.bb-reseller-apply {
    padding: 5rem 0 4rem;
    background: #faf8f5;
}

.bb-reseller-apply-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
}

.bb-reseller-apply-next {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.bb-reseller-apply-next-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--bb-dark);
    margin-bottom: 1.5rem;
}

.bb-reseller-apply-timeline {
    position: relative;
    padding-left: 1.75rem;
}

.bb-reseller-apply-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #e5e7eb;
    border-radius: 2px;
}

.bb-reseller-apply-step {
    display: flex;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.25rem;
}

.bb-reseller-apply-step:last-child {
    padding-bottom: 0;
}

.bb-reseller-apply-step-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    background: var(--bb-primary);
    margin-top: 5px;
    position: absolute;
    left: -1.75rem;
    box-shadow: 0 0 0 3px rgba(126, 58, 253, 0.15);
}

.bb-reseller-apply-step strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bb-dark);
    margin-bottom: 0.15rem;
}

.bb-reseller-apply-step p {
    font-size: 0.8125rem;
    color: var(--bb-gray);
    line-height: 1.5;
    margin: 0;
}

.bb-reseller-apply-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bb-reseller-apply-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--bb-dark);
}

.bb-reseller-apply-trust-item i {
    color: var(--bb-primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .bb-reseller-apply-card {
        padding: 1.75rem;
    }

    .bb-reseller-apply-next {
        margin-top: 2rem;
    }
}

/* Apply Step Toggle */

.bb-apply-hidden {
    display: none;
}

/* Step 1: Tier Selection Cards */

.bb-apply-tiers {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.bb-apply-tier {
    flex: 1;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.bb-apply-tier:hover {
    border-color: var(--bb-primary);
    box-shadow: 0 4px 20px rgba(126, 58, 253, 0.1);
    transform: translateY(-2px);
}

.bb-apply-tier-featured {
    border-color: var(--bb-primary);
    box-shadow: 0 4px 20px rgba(126, 58, 253, 0.1);
}

.bb-apply-tier-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bb-primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.2rem 0.85rem;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.bb-apply-tier-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
    background: rgba(100, 116, 139, 0.08);
    color: #78716c;
}

.bb-apply-tier-featured .bb-apply-tier-icon {
    background: rgba(126, 58, 253, 0.08);
    color: var(--bb-primary);
}

.bb-apply-tier:last-child .bb-apply-tier-icon {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.bb-apply-tier-range {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bb-dark);
    margin-bottom: 0.25rem;
}

.bb-apply-tier-name {
    font-size: 0.875rem;
    color: var(--bb-gray);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.bb-apply-tier-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.bb-apply-tier-highlights span {
    font-size: 0.8125rem;
    color: var(--bb-gray);
}

/* Step 2: Selected Tier Bar */

.bb-apply-selected-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bb-apply-selected-tier-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.bb-apply-selected-tier-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(100, 116, 139, 0.08);
    color: #78716c;
}

.bb-apply-selected-tier-icon.bb-icon-purple {
    background: rgba(126, 58, 253, 0.08);
    color: var(--bb-primary);
}

.bb-apply-selected-tier-icon.bb-icon-amber {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.bb-apply-selected-tier-info strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--bb-dark);
    line-height: 1.2;
}

.bb-apply-selected-tier-info span {
    font-size: 0.8125rem;
    color: var(--bb-gray);
}

.bb-apply-change-tier {
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--bb-gray);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.bb-apply-change-tier:hover {
    border-color: var(--bb-primary);
    color: var(--bb-primary);
}

@media (max-width: 767.98px) {
    .bb-apply-tiers {
        flex-direction: column;
        gap: 1rem;
    }

    .bb-apply-tier {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .bb-reseller-apply {
        padding: 3rem 0 2.5rem;
    }

    .bb-reseller-apply-card {
        padding: 1.5rem;
    }

    .bb-apply-selected-tier {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

/* --- Text Utilities --- */
.bb-text-sm   { font-size: 0.875rem; }
.bb-text-xs   { font-size: 0.8125rem; }
.bb-text-xxs  { font-size: 0.75rem; }
.bb-text-gray       { color: var(--bb-gray); }
.bb-text-gray-light { color: var(--bb-gray-light); }
.bb-text-dark       { color: var(--bb-dark); }
.bb-text-bold       { font-weight: 600; }
.bb-text-bolder     { font-weight: 700; }
.bb-text-primary    { color: var(--bb-primary); }
.bb-lh-relaxed      { line-height: 1.6; }
.bb-lh-loose        { line-height: 1.7; }

/* --- Feature Grid --- */
.bb-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.bb-feature-grid-card {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
}

.bb-feature-grid-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.bb-feature-grid-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0;
}

/* --- Feature Check Item --- */
.bb-feature-checks {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding-left: 0.25rem;
}

.bb-feature-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--bb-gray);
}

.bb-feature-check i {
    color: #22c55e;
    font-size: 0.6875rem;
}

@media (max-width: 767.98px) {
    .bb-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Hero Back Link --- */
.bb-hero-back {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

/* --- Feature Detail List (icon + text rows) --- */
.bb-detail-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bb-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bb-detail-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.bb-detail-text {
    font-size: 0.9375rem;
    color: var(--bb-gray);
    line-height: 1.6;
    margin: 0;
}

/* --- Screenshot Placeholder --- */
.bb-screenshot-placeholder {
    background: var(--bb-light);
    border-radius: var(--bb-radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bb-gray-light);
    border: 1px solid var(--bb-border);
}

/* --- Feature Card as Link --- */
a.bb-feature-card {
    text-decoration: none;
    display: block;
}

/* --- Feature Detail Page Components --- */
.bb-hero-back {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}
.bb-hero-back:hover { color: rgba(255, 255, 255, 0.7); }

.bb-screenshot-section { padding: 0 0 3rem; }

.bb-img-placeholder {
    background: var(--bb-light);
    border-radius: var(--bb-radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bb-gray-light);
    border: 1px solid var(--bb-border);
}

.bb-container-narrow { max-width: 720px; }

.bb-detail-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bb-detail-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bb-detail-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.bb-detail-text {
    font-size: 0.9375rem;
    color: var(--bb-gray);
    line-height: 1.6;
    margin: 0;
}

.bb-feature-card-link {
    text-decoration: none;
    display: block;
}

/* --- Spacing helpers --- */
.bb-mb-0  { margin-bottom: 0; }
.bb-mb-1  { margin-bottom: 0.5rem; }
.bb-mb-2  { margin-bottom: 1rem; }
.bb-mb-3  { margin-bottom: 1.5rem; }
.bb-mb-4  { margin-bottom: 2rem; }
.bb-mt-1  { margin-top: 0.5rem; }
.bb-mt-2  { margin-top: 1rem; }

/* --- Dark section trust points (white text) --- */
.bb-dark-trust-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bb-dark-trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bb-dark-trust-icon i { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }
.bb-dark-trust-title  { font-size: 0.8125rem; font-weight: 600; color: #fff; }
.bb-dark-trust-desc   { font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); }


/* =================================================================
   RESELLER PAGE
   ================================================================= */

/* Stats Bar */
.bb-reseller-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    padding: 2rem 2.5rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--bb-shadow-lg);
}

.bb-reseller-stat {
    text-align: center;
    flex: 1;
}

.bb-reseller-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bb-secondary);
}

.bb-reseller-stat-label {
    font-size: 0.8125rem;
    color: var(--bb-gray);
    margin-top: 0.25rem;
}

.bb-reseller-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--bb-border);
    margin: 0 1rem;
    flex-shrink: 0;
}

/* Feature Image Placeholder */
.bb-reseller-feature-img {
    background: var(--bb-light);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.bb-reseller-feature-img-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--bb-gray-light);
}

.bb-reseller-feature-img-inner i {
    font-size: 3rem;
    opacity: 0.4;
}

.bb-reseller-feature-img-inner span {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.5;
}

/* Checklist */
.bb-reseller-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bb-reseller-check {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--bb-dark);
    font-weight: 500;
}

.bb-reseller-check i {
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    flex-shrink: 0;
}

/* Tier Cards */
.bb-reseller-tier-card {
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: var(--bb-transition);
}

.bb-reseller-tier-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bb-shadow-lg);
}

.bb-reseller-tier-featured {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 1px #8b5cf6, var(--bb-shadow-lg);
}

.bb-reseller-tier-badge {
    position: absolute;
    top: -0.625rem;
    right: 1.5rem;
    background: #8b5cf6;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
}

.bb-reseller-tier-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.bb-reseller-tier-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.bb-reseller-tier-desc {
    font-size: 0.8125rem;
    color: var(--bb-gray);
    margin-bottom: 1.5rem;
}

.bb-reseller-tier-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bb-reseller-tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-top: 1px solid var(--bb-border);
    font-size: 0.8125rem;
}

.bb-reseller-tier-row span {
    color: var(--bb-gray);
}

.bb-reseller-tier-row strong {
    font-weight: 700;
    color: var(--bb-dark);
}

/* Step Numbers */
.bb-reseller-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bb-secondary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

/* Form Card */
.bb-reseller-form-card {
    background: #fff;
    border-radius: var(--bb-radius-xl);
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.bb-reseller-form-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bb-dark);
    margin-bottom: 0.375rem;
}

.bb-reseller-form-subtitle {
    font-size: 0.8125rem;
    color: var(--bb-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.bb-reseller-form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.375rem;
    color: var(--bb-dark);
}

/* Responsive */
@media (max-width: 767.98px) {
    .bb-reseller-stats {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .bb-reseller-stat-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .bb-reseller-form-card {
        padding: 1.5rem;
    }

    .bb-reseller-feature-img {
        min-height: 200px;
        padding: 2rem;
    }
}


/* =========================================================================
   FEATURE PAGE (Brevo-Style)
   ========================================================================= */

/* Hero */

.bb-feature-hero {
    padding: 160px 0 40px;
    background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

/* Hero mit Hintergrundbild (wie Pricing) */

.bb-feature-hero-dark {
    position: relative;
    padding: 180px 0 80px;
    background: none;
    overflow: hidden;
}

.bb-feature-hero-dark .bb-feature-hero-inner {
    position: relative;
    z-index: 2;
}

.bb-feature-hero-dark .bb-feature-hero-title {
    color: #fff;
}

.bb-feature-hero-dark .bb-feature-hero-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.bb-feature-hero-dark .bb-feature-hero-label {
    color: rgba(126, 58, 253, 0.9);
}

.bb-feature-hero-dark .bb-feature-hero-back {
    color: rgba(255, 255, 255, 0.4);
}

.bb-feature-hero-dark .bb-feature-hero-back:hover {
    color: rgba(255, 255, 255, 0.7);
}

.bb-feature-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bb-feature-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.bb-feature-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(17, 23, 39, 0.94) 0%, rgba(126, 58, 253, 0.48) 50%, rgba(126, 58, 253, 0.16) 100%);
    z-index: 1;
}

/* Solution-Heroes hell statt dunkel — Dunkel bleibt nur Anker (Footer + API).
   CSS-only/reversibel: dunkles Bild + Overlay ausblenden, Text auf dunkel. */
.bb-feature-hero-dark {
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}
.bb-feature-hero-dark .bb-feature-hero-bg,
.bb-feature-hero-dark .bb-feature-hero-overlay {
    display: none;
}
.bb-feature-hero-dark .bb-feature-hero-title { color: var(--bb-dark); }
.bb-feature-hero-dark .bb-feature-hero-subtitle { color: var(--bb-gray); }
.bb-feature-hero-dark .bb-feature-hero-label { color: var(--bb-accent); }
.bb-feature-hero-dark .bb-feature-hero-back { color: var(--bb-gray); }
.bb-feature-hero-dark .bb-feature-hero-back:hover { color: var(--bb-dark); }

@media (max-width: 575.98px) {
    .bb-feature-hero-dark {
        padding: 130px 0 50px;
    }
}

.bb-feature-hero-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.bb-feature-hero-back {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--bb-gray-light);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.15s;
}

.bb-feature-hero-back:hover {
    color: var(--bb-primary);
    text-decoration: none;
}

.bb-feature-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bb-accent);
    margin-bottom: 1rem;
}

.bb-feature-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #23272e;
    margin: 0 0 1.25rem;
}

.bb-feature-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 2rem;
}

.bb-feature-hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.bb-feature-hero-actions-left {
    justify-content: flex-start;
}

/* Hero Screenshot */

.bb-feature-hero-image {
    padding: 0 0 4rem;
}

.bb-feature-mockup-hero {
    max-width: 960px;
    margin: 0 auto;
}

/* Browser Frame */

.bb-browser-frame {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e0e0;
    background: #fff;
}

.bb-browser-topbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    background: #f5f5f5;
    border-bottom: 1px solid #e5e7eb;
}

.bb-browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.bb-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.bb-browser-dots span:nth-child(1) { background: #ff5f57; }
.bb-browser-dots span:nth-child(2) { background: #ffbd2e; }
.bb-browser-dots span:nth-child(3) { background: #28c840; }

.bb-browser-urlbar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    color: #6b7280;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.bb-browser-urlbar i {
    color: #9ca3af;
    font-size: 0.625rem;
}

.bb-browser-content {
    position: relative;
}

.bb-browser-content img {
    width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 575.98px) {
    .bb-browser-frame {
        border-radius: 8px;
    }

    .bb-browser-dots span {
        width: 8px;
        height: 8px;
    }

    .bb-browser-urlbar {
        font-size: 0.625rem;
    }
}

/* Mockup Placeholder */

.bb-feature-mockup {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.bb-feature-mockup-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e7e3dd 100%);
    min-height: 400px;
    color: #a8a29e;
}

.bb-feature-mockup-placeholder i {
    font-size: 2rem;
    opacity: 0.5;
}

.bb-feature-mockup-placeholder span {
    font-size: 0.8125rem;
    font-weight: 500;
}

.bb-feature-mockup-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature Overview Grid */

.bb-feature-overview {
    padding: 4rem 0;
}

.bb-feature-overview-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #23272e;
    margin-bottom: 2.5rem;
}

.bb-feature-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bb-feature-overview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    text-decoration: none;
    height: 100%;
    transition: var(--bb-transition);
}

.bb-feature-overview-item:hover {
    border-color: #cbd5e1;
    box-shadow: var(--bb-shadow-lg);
    transform: translateY(-2px);
    text-decoration: none;
}

.bb-feature-overview-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(73, 163, 192, 0.1);
    color: var(--bb-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.bb-feature-overview-item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #23272e;
    margin: 0;
}

.bb-feature-overview-item p {
    font-size: 0.875rem;
    color: var(--bb-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767.98px) {
    .bb-feature-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .bb-feature-overview-grid {
        grid-template-columns: 1fr;
    }

    .bb-feature-overview {
        padding: 3rem 0;
    }
}

/* Social Proof */

.bb-feature-social-proof {
    padding: 2.5rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.bb-feature-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.bb-feature-proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.bb-feature-proof-item strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: #23272e;
}

.bb-feature-proof-stars {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.75rem;
}

.bb-feature-proof-divider {
    width: 1px;
    height: 24px;
    background: #e5e7eb;
}

/* Feature Blocks (abwechselnd links/rechts) */

.bb-feature-block {
    padding: 5rem 0;
    scroll-margin-top: 80px;
}

.bb-feature-block-gray {
    background: #faf8f5;
}

/* Dark Highlight Block */

.bb-feature-block-dark {
    background: #23272e;
    padding: 6rem 0;
}

.bb-feature-block-dark .bb-feature-block-label {
    color: var(--bb-accent);
}

.bb-feature-block-dark .bb-feature-block-text h2 {
    color: #fff;
}

.bb-feature-block-dark .bb-feature-block-text p {
    color: #a8a29e;
}

.bb-feature-block-dark .bb-feature-block-list li {
    color: #cbd5e1;
}

.bb-feature-block-dark .bb-feature-block-list li i {
    color: #34d399;
}

.bb-feature-block-dark .bb-feature-mockup {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.bb-feature-block-dark .bb-feature-mockup-placeholder {
    background: linear-gradient(135deg, #2a2a2e 0%, #23272e 100%);
    color: #4b5563;
}

.bb-feature-block-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.bb-feature-block-reverse .bb-feature-block-inner {
    flex-direction: row-reverse;
}

.bb-feature-block-text {
    flex: 1;
    min-width: 0;
}

.bb-feature-block-media {
    flex: 1;
    min-width: 0;
}

.bb-feature-block-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bb-accent);
    margin-bottom: 0.75rem;
}

.bb-feature-block-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    color: #23272e;
    margin: 0 0 1rem;
}

.bb-feature-block-text p {
    font-size: 1rem;
    line-height: 1.65;
    color: #6b7280;
    margin: 0 0 1.5rem;
}

.bb-feature-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.bb-feature-block-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

.bb-feature-block-list li i {
    color: #059669;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Statistik-Banner */

.bb-feature-stat-banner {
    padding: 3.5rem 0;
    background: #faf8f5;
}

.bb-feature-stat-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
}

.bb-feature-stat {
    text-align: center;
    flex: 1;
    max-width: 240px;
}

.bb-feature-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin: 0 auto 0.75rem;
}

.bb-feature-stat-icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.bb-feature-stat-icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.bb-feature-stat-icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.bb-feature-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bb-primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.bb-feature-stat-text {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.5;
}

.bb-feature-stat-divider {
    width: 1px;
    height: 60px;
    background: #e5e7eb;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.bb-feature-stat-source {
    text-align: center;
    font-size: 0.6875rem;
    color: #9ca3af;
    margin-top: 1.5rem;
}

/* Mid-Page CTA */

.bb-feature-mid-cta {
    padding: 4rem 0;
}

.bb-feature-mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    border-radius: 16px;
    padding: 3.5rem 3.5rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bb-feature-mid-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 17, 0.82);
    z-index: 0;
}

.bb-feature-mid-cta-content {
    position: relative;
    z-index: 1;
}

.bb-feature-mid-cta-actions {
    position: relative;
    z-index: 1;
}

.bb-feature-mid-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.bb-feature-mid-cta-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.bb-feature-mid-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.bb-feature-mid-cta-actions .bb-btn-ghost {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.bb-feature-mid-cta-actions .bb-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* FAQ */

.bb-feature-faq {
    padding: 5rem 0;
}

.bb-feature-faq-inner {
    max-width: 720px;
    margin: 0 auto;
}

.bb-faq-list {
    display: flex;
    flex-direction: column;
}

.bb-faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.bb-faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.bb-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    cursor: pointer;
    gap: 1rem;
}

.bb-faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #23272e;
}

.bb-faq-question i {
    font-size: 0.75rem;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.bb-faq-item.open .bb-faq-question i {
    transform: rotate(45deg);
}

.bb-faq-answer {
    display: none;
    padding: 0 0 1.25rem;
}

.bb-faq-item.open .bb-faq-answer {
    display: block;
}

.bb-faq-answer p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* Responsive: Stats + Mid-CTA + FAQ */

@media (max-width: 767.98px) {
    .bb-feature-stat-inner {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .bb-feature-stat-divider {
        width: 40px;
        height: 1px;
        margin: 0;
    }

    .bb-feature-mid-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .bb-feature-mid-cta-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Related Features */

/* API Page */

.bb-api-hero {
    padding: 160px 0 5rem;
    background: #111727;
}

.bb-api-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.bb-api-hero-text {
    flex: 1;
    min-width: 0;
}

.bb-api-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 1.25rem;
}

.bb-api-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #a8a29e;
    margin: 0 0 2rem;
}

.bb-api-hero-code {
    flex: 1;
    min-width: 0;
}

.bb-api-hero-code pre {
    background: #111727;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    margin: 0 0 0.75rem;
    overflow-x: auto;
    font-size: 0.75rem;
    line-height: 1.7;
}

.bb-api-hero-code pre:last-child {
    margin-bottom: 0;
}

/* API Code Blocks (identisch zu Docs-Styles) */

.bb-api-code-block {
    background: #111727;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #334155;
}

.bb-api-code-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    background: #111727;
    border-bottom: 1px solid #334155;
}

.bb-api-code-header code {
    font-size: 0.8125rem;
    color: #e7e3dd;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    background: none;
    padding: 0;
}

.bb-api-code-block pre {
    margin: 0;
    padding: 1rem 1.25rem;
    background: #111727;
    font-size: 0.75rem;
    line-height: 1.7;
    overflow-x: auto;
    border-radius: 0;
    border: none;
}

.bb-api-code-block pre code {
    background: none;
    font-size: inherit;
    text-shadow: none;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

.bb-api-method {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.bb-api-method-get { background: #065f46; color: #6ee7b7; }
.bb-api-method-post { background: #1e40af; color: #93c5fd; }
.bb-api-method-patch { background: #92400e; color: #fcd34d; }
.bb-api-method-put { background: #92400e; color: #fcd34d; }
.bb-api-method-delete { background: #991b1b; color: #fca5a5; }
.bb-api-method-error { background: #991b1b; color: #fca5a5; }

/* Scrollbar (identisch zu Docs) */

.bb-api-code-block pre::-webkit-scrollbar,
.bb-api-hero-code pre::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.bb-api-code-block pre::-webkit-scrollbar-track,
.bb-api-hero-code pre::-webkit-scrollbar-track {
    background: transparent;
}

.bb-api-code-block pre::-webkit-scrollbar-thumb,
.bb-api-hero-code pre::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 3px;
}

.bb-api-code-block pre::-webkit-scrollbar-thumb:hover,
.bb-api-hero-code pre::-webkit-scrollbar-thumb:hover {
    background: #78716c;
}

.bb-api-code-block pre,
.bb-api-hero-code pre {
    scrollbar-width: thin;
    scrollbar-color: #475569 transparent;
}

/* Prism overrides (identisch zu Docs) */

.bb-api-code-block pre[class*="language-"],
.bb-api-code-block code[class*="language-"],
.bb-api-hero-code pre[class*="language-"],
.bb-api-hero-code code[class*="language-"],
.bb-api-code-block pre,
.bb-api-hero-code pre {
    background: #111727 !important;
    font-size: 0.75rem;
    line-height: 1.7;
    text-shadow: none;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

@media (max-width: 991.98px) {
    .bb-api-hero-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .bb-api-hero-title {
        font-size: 2rem;
    }
}

/* API Hero Animation */

.bb-api-anim {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bb-api-anim-request {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bb-api-anim-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bb-api-anim-bar {
    height: 3px;
    background: #334155;
    border-radius: 2px;
    overflow: hidden;
}

.bb-api-anim-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--bb-primary);
    border-radius: 2px;
    animation: bbApiBarFill 4s 1 both;
}

@keyframes bbApiBarFill {
    0% { width: 0%; }
    25% { width: 100%; }
    100% { width: 100%; }
}

.bb-api-anim-step-1 {
    opacity: 0;
    animation: bbApiStep1 4s 1 both;
}

@keyframes bbApiStep1 {
    0% { opacity: 0; transform: translateY(4px); }
    5%, 100% { opacity: 1; transform: translateY(0); }
}

.bb-api-anim-step-2 {
    opacity: 0;
    animation: bbApiStep2 4s 1 both;
}

@keyframes bbApiStep2 {
    0%, 30% { opacity: 0; transform: translateY(8px); }
    45%, 100% { opacity: 1; transform: translateY(0); }
}

.bb-api-anim-step-3 {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #059669;
    color: #fff;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    align-self: flex-start;
    opacity: 0;
    animation: bbApiStep3 4s 1 both;
}

@keyframes bbApiStep3 {
    0%, 50% { opacity: 0; transform: scale(0.8); }
    58% { opacity: 1; transform: scale(1.1); }
    63%, 100% { opacity: 1; transform: scale(1); }
}

/* API Endpoint Tabs */

.bb-api-endpoint-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #78716c;
    padding: 0.375rem 0.625rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}

.bb-api-endpoint-tab:hover {
    color: #e7e3dd;
    background: rgba(255, 255, 255, 0.05);
}

.bb-api-endpoint-tab.active {
    color: #e7e3dd;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 575.98px) {
    .bb-api-hero {
        padding: 120px 0 3rem;
    }

    .bb-api-hero-title {
        font-size: 1.625rem;
    }

    .bb-api-endpoint-tab .bb-api-method {
        display: none;
    }
}

.bb-feature-block-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bb-primary);
    text-decoration: none;
    margin-top: 1.25rem;
    transition: gap 0.15s;
    gap: 0;
}

.bb-feature-block-link:hover {
    text-decoration: none;
    gap: 0.25rem;
}

/* =========================================================================
   MOCK WIDGETS (CSS-Imitations of CRM UI)
   ========================================================================= */

.bb-mock-widget {
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.bb-mock-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.bb-mock-widget-header h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #23272e;
    margin: 0;
}

.bb-mock-widget-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--bb-gray);
    background: var(--bb-light);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Rating Chart */

.bb-mock-rating-chart {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.bb-mock-rating-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bb-mock-rating-label {
    display: flex;
    gap: 2px;
    width: 80px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.bb-mock-rating-label i {
    font-size: 0.625rem;
    color: #f59e0b;
}

.bb-mock-rating-bar {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.bb-mock-rating-fill {
    height: 100%;
    border-radius: 4px;
    background: #059669;
    transition: width 1s ease;
}

.bb-mock-rating-fill[data-color="#059669"] { background: #059669; }
.bb-mock-rating-fill[data-color="#10b981"] { background: #10b981; }
.bb-mock-rating-fill[data-color="#f59e0b"] { background: #f59e0b; }
.bb-mock-rating-fill[data-color="#f97316"] { background: #f97316; }
.bb-mock-rating-fill[data-color="#ef4444"] { background: #ef4444; }

.bb-mock-rating-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    width: 24px;
    text-align: right;
    flex-shrink: 0;
}

/* Widget Footer (KPI Row) */

.bb-mock-widget-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--bb-border);
}

.bb-mock-kpi {
    flex: 1;
    text-align: center;
}

.bb-mock-kpi-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    color: #23272e;
    line-height: 1.2;
}

.bb-mock-kpi-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--bb-gray);
    margin-top: 0.25rem;
}

/* Mini Kanban Board */

/* Hero Kanban Board (Pipeline Page) */

.bb-hero-kanban-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bb-hero-kanban-toolbar-left {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bb-hero-kanban-pipeline-name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #23272e;
    margin-right: 0.75rem;
}

.bb-hero-kanban-pipeline-tab {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #9ca3af;
    padding: 0.3rem 0.625rem;
    border-radius: 6px;
    cursor: default;
}

.bb-hero-kanban-pipeline-tab.active {
    background: #fff;
    color: #23272e;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.bb-hero-kanban-toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bb-hero-kanban-toolbar-btn {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #6b7280;
    padding: 0.3rem 0.625rem;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.bb-hero-kanban {
    display: flex;
    gap: 0.75rem;
}

.bb-hero-kanban-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bb-hero-kanban-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0;
}

.bb-hero-kanban-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bb-hero-kanban-title {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #23272e;
}

.bb-hero-kanban-count {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #9ca3af;
    background: #e5e7eb;
    padding: 0 5px;
    border-radius: 4px;
    line-height: 1.5;
}

.bb-hero-kanban-sum {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #6b7280;
    margin-left: auto;
}

.bb-hero-kanban-card {
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.15s;
}

.bb-hero-kanban-card-dragging {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    border-color: #c7d2fe;
}

.bb-hero-kanban-card-won {
    border-left: 3px solid #059669;
}

.bb-hero-kanban-card-ghost {
    opacity: 0.5;
}

.bb-hero-kanban-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.375rem;
    margin-bottom: 0.125rem;
}

.bb-hero-kanban-card-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #23272e;
    line-height: 1.3;
}

.bb-hero-kanban-card-stars {
    display: flex;
    gap: 1px;
    color: #f59e0b;
    font-size: 0.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.bb-hero-kanban-card-sub {
    font-size: 0.625rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.bb-hero-kanban-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bb-hero-kanban-card-value {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #374151;
}

.bb-hero-kanban-card-meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.5625rem;
    color: #9ca3af;
}

.bb-hero-kanban-card-meta .bb-mock-avatar-sm-img {
    width: 18px;
    height: 18px;
}

@media (max-width: 767.98px) {
    .bb-hero-kanban {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bb-hero-kanban-col {
        min-width: 200px;
    }

    .bb-hero-kanban-toolbar-right {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .bb-hero-kanban-toolbar-left .bb-hero-kanban-pipeline-tab {
        display: none;
    }

    .bb-hero-kanban-card-ghost {
        display: none;
    }
}

/* Mock Widgets: Mini Kanban (Feature Blocks) */

.bb-mock-kanban {
    display: flex;
    gap: 0.75rem;
}

.bb-mock-kanban-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.bb-mock-kanban-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #334155;
    margin-bottom: 0.25rem;
}

.bb-mock-kanban-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bb-mock-kanban-title {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #a8a29e;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bb-mock-kanban-count {
    font-size: 0.625rem;
    font-weight: 700;
    color: #78716c;
    background: rgba(255, 255, 255, 0.06);
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: auto;
}

/* Deal Cards */

.bb-mock-deal-card {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.75rem;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bb-mock-deal-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.bb-mock-deal-card-dragging {
    transform: rotate(-1.5deg) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--bb-primary);
}

.bb-mock-deal-card-won {
    background: #f0fdf4;
    border-color: rgba(16, 185, 129, 0.2);
}

.bb-mock-deal-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #23272e;
    line-height: 1.2;
    margin-bottom: 1px;
}

.bb-mock-deal-subtitle {
    font-size: 0.6875rem;
    color: #78716c;
    margin-bottom: 0.5rem;
}

.bb-mock-deal-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.bb-mock-deal-value {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #23272e;
}

.bb-mock-deal-stars {
    display: flex;
    gap: 1px;
}

.bb-mock-deal-stars i {
    font-size: 0.5rem;
    color: #f59e0b;
}

.bb-mock-deal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bb-mock-avatar-sm {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.bb-mock-avatar-sm-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bb-mock-deal-date {
    font-size: 0.625rem;
    color: #78716c;
}

@media (max-width: 575.98px) {
    .bb-mock-kanban {
        gap: 0.5rem;
    }

    .bb-mock-deal-card {
        padding: 0.5rem;
    }

    .bb-mock-deal-name {
        font-size: 0.6875rem;
    }

    .bb-mock-deal-subtitle,
    .bb-mock-deal-date {
        display: none;
    }
}

/* Team Performance Widget */

.bb-mock-team-table {
    display: flex;
    flex-direction: column;
}

.bb-mock-team-head {
    display: flex;
    align-items: center;
    padding: 0 0 0.625rem;
    border-bottom: 1px solid var(--bb-border);
    margin-bottom: 0.25rem;
}

.bb-mock-team-head .bb-mock-team-stat-col {
    color: #9ca3af;
    font-size: 0.6875rem;
    justify-content: center;
}

.bb-mock-team-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #faf8f5;
}

.bb-mock-team-row:last-child {
    border-bottom: none;
}

.bb-mock-team-name-col {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-width: 0;
}

.bb-mock-team-name-col strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #23272e;
    line-height: 1.2;
}

.bb-mock-team-name-col span {
    font-size: 0.6875rem;
    color: #9ca3af;
}

.bb-mock-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.bb-mock-team-stat-col {
    width: 60px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.bb-mock-team-stat-col span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.bb-mock-team-bar-wrap {
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    border-radius: 2px;
    overflow: hidden;
}

.bb-mock-team-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 0.8s ease;
}

.bb-mock-team-cell {
    display: flex;
    align-items: center;
}

@media (max-width: 575.98px) {
    .bb-mock-team-stat-col {
        width: 44px;
    }

    .bb-mock-team-name-col strong {
        font-size: 0.75rem;
    }
}

/* Automation Flow (sequential animation) */

.bb-mock-auto-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.bb-mock-auto-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: #faf8f5;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    min-width: 120px;
}

.bb-mock-auto-node-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.bb-mock-auto-node-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
}

.bb-mock-auto-node-detail {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #23272e;
}

/* Sequential Animation */

.bb-mock-auto-seq-node {
    opacity: 0.4;
    transform: scale(0.95);
    animation-fill-mode: both;
    animation-duration: 6s;
    animation-iteration-count: 1;
}

/* Node 1: Trigger — scale up at 0%, shrink at 15% */
.bb-mock-auto-seq-1 {
    animation-name: bbSeqNode1;
}

@keyframes bbSeqNode1 {
    0% { opacity: 0.4; transform: scale(0.95); }
    3% { opacity: 1; transform: scale(1.08); box-shadow: 0 4px 20px rgba(13,110,253,0.15); }
    15%, 100% { opacity: 1; transform: scale(1); box-shadow: none; }
}

/* Node 2: Bedingung — scale up at 35%, shrink at 50% */
.bb-mock-auto-seq-2 {
    animation-name: bbSeqNode2;
}

@keyframes bbSeqNode2 {
    0%, 30% { opacity: 0.4; transform: scale(0.95); }
    35% { opacity: 1; transform: scale(1.08); box-shadow: 0 4px 20px rgba(245,158,11,0.15); }
    50%, 100% { opacity: 1; transform: scale(1); box-shadow: none; }
}

/* Node 3: Aktion — scale up at 65%, shrink at 78% */
.bb-mock-auto-seq-3 {
    animation-name: bbSeqNode3;
}

@keyframes bbSeqNode3 {
    0%, 60% { opacity: 0.4; transform: scale(0.95); }
    65% { opacity: 1; transform: scale(1.08); box-shadow: 0 4px 20px rgba(16,185,129,0.15); }
    78%, 100% { opacity: 1; transform: scale(1); box-shadow: none; }
}

/* Lines — fill from left to right */

.bb-mock-auto-line {
    width: 48px;
    height: 3px;
    background: #e5e7eb;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 2px;
    margin: 0 0.75rem;
}

.bb-mock-auto-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--bb-primary);
    border-radius: 2px;
    animation-fill-mode: both;
    animation-duration: 6s;
    animation-iteration-count: 1;
}

/* Line 1: fills 10%-30% */
.bb-mock-auto-seq-line-1 .bb-mock-auto-line-fill {
    animation-name: bbSeqLine1;
}

@keyframes bbSeqLine1 {
    0%, 10% { width: 0%; }
    30%, 100% { width: 100%; }
}

/* Line 2: fills 45%-60% */
.bb-mock-auto-seq-line-2 .bb-mock-auto-line-fill {
    animation-name: bbSeqLine2;
}

@keyframes bbSeqLine2 {
    0%, 45% { width: 0%; }
    60%, 100% { width: 100%; }
}

/* Success Alert — pops in at 72% */

.bb-mock-auto-success-alert {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #059669;
    color: #fff;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 0.5rem;
    opacity: 0;
    transform: scale(0.8);
    animation: bbSeqSuccess 6s 1 both;
}

@keyframes bbSeqSuccess {
    0%, 70% { opacity: 0; transform: scale(0.8); }
    74% { opacity: 1; transform: scale(1.1); }
    78%, 100% { opacity: 1; transform: scale(1); }
}

/* Log entry — appears at 80% */

.bb-mock-auto-log {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f0fdf4;
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
}

.bb-mock-auto-seq-5 {
    opacity: 0;
    animation: bbSeqLog 6s 1 both;
}

@keyframes bbSeqLog {
    0%, 76% { opacity: 0; transform: translateY(8px); }
    82%, 100% { opacity: 1; transform: translateY(0); }
}

.bb-mock-auto-replay {
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s;
}

.bb-mock-auto-replay:hover {
    color: var(--bb-primary);
    text-decoration: none;
}

.bb-mock-auto-log-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #059669;
    flex-shrink: 0;
    animation: bbAutoDotPulse 1.5s ease-in-out 5s infinite;
}

@keyframes bbAutoDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Automation Config Rows */

.bb-mock-config-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bb-mock-config-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9ca3af;
    width: 70px;
    flex-shrink: 0;
}

.bb-mock-config-value {
    font-size: 0.8125rem;
    color: #374151;
    font-weight: 500;
}

/* Trigger List */

.bb-mock-trigger-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    border-bottom: 1px solid #faf8f5;
    cursor: pointer;
    transition: background 0.1s;
}

.bb-mock-trigger-row:hover {
    background: #faf8f5;
}

.bb-mock-trigger-row-active {
    background: rgba(16, 185, 129, 0.04);
}

.bb-mock-trigger-row i {
    width: 16px;
    text-align: center;
    font-size: 0.75rem;
}

/* Condition Builder */

.bb-mock-condition-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #faf8f5;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.bb-mock-condition-field {
    font-size: 0.75rem;
    font-weight: 600;
    color: #23272e;
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.bb-mock-condition-op {
    font-size: 0.6875rem;
    color: #9ca3af;
}

.bb-mock-condition-val {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.06);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: auto;
}

/* Integration Logos */

.bb-mock-integration-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    width: 80px;
    padding: 1rem 0.5rem;
    background: #faf8f5;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: transform 0.15s;
}

.bb-mock-integration-logo:hover {
    transform: translateY(-2px);
}

.bb-mock-integration-logo span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #374151;
}

@media (max-width: 575.98px) {
    .bb-mock-auto-flow {
        flex-direction: column;
    }

    .bb-mock-auto-line {
        width: 2px;
        height: 32px;
    }

    .bb-mock-auto-pulse {
        width: 4px;
        height: 12px;
        top: -12px;
        left: -1px;
        animation: bbAutoPulseV 2s ease-in-out infinite;
    }

    @keyframes bbAutoPulseV {
        0% { top: -12px; opacity: 0; }
        20% { opacity: 1; }
        80% { opacity: 1; }
        100% { top: 32px; opacity: 0; }
    }

    .bb-mock-auto-node {
        min-width: 160px;
    }
}

/* Embed Code Tabs */

.bb-mock-embed-tab {
    font-size: 0.6875rem;
    padding: 4px 12px;
    background: #faf8f5;
    color: #6b7280;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}

.bb-mock-embed-tab.active {
    background: #23272e;
    color: #fff;
    border-color: #23272e;
    font-weight: 600;
}

.bb-mock-embed-tab:hover:not(.active) {
    background: #f1f5f9;
}

/* Form Builder Field List */

.bb-mock-field-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem;
    border-bottom: 1px solid #faf8f5;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
}

.bb-mock-field-row span {
    flex: 1;
}

.bb-mock-field-badge {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(126, 58, 253, 0.08);
    color: #7e3afd;
    flex: none;
}

.bb-mock-field-badge-opt {
    background: #faf8f5;
    color: #9ca3af;
}

.bb-mock-field-badge-type {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

/* Lead Table Widget */

.bb-mock-lead-table {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.bb-mock-lead-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.bb-mock-lead-head {
    background: #faf8f5;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}


.bb-mock-lead-cell {
    display: flex;
    align-items: center;
    font-size: 0.8125rem;
}

.bb-mock-lead-grow {
    flex: 1;
    min-width: 0;
}

.bb-mock-lead-col {
    width: 80px;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.bb-mock-lead-col-sm {
    width: 70px;
    flex-shrink: 0;
    font-size: 0.6875rem;
}

@media (max-width: 575.98px) {
    .bb-mock-lead-col,
    .bb-mock-lead-col-sm {
        display: none;
    }
}

/* Custom Fields Widget */

.bb-mock-cf-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.bb-mock-cf-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
}

.bb-mock-cf-name i {
    color: #9ca3af;
    width: 16px;
    margin-right: 0.5rem;
    font-size: 0.6875rem;
}

.bb-mock-cf-type {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Donut Chart */

.bb-mock-donut {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.bb-mock-donut-hole {
    position: absolute;
    inset: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bb-mock-donut-total {
    font-size: 1.25rem;
    font-weight: 800;
    color: #23272e;
    line-height: 1;
}

.bb-mock-donut-label {
    font-size: 0.625rem;
    color: #9ca3af;
}

.bb-mock-legend-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bb-mock-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bb-mock-legend-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    flex: 1;
}

.bb-mock-legend-val {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
}

/* Import Wizard */

.bb-mock-import-steps {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
}

.bb-mock-import-step {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #d1d5db;
}

.bb-mock-import-step span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    background: #f1f5f9;
    color: #9ca3af;
}

.bb-mock-import-step.done {
    color: #059669;
}

.bb-mock-import-step.done span {
    background: #059669;
    color: #fff;
}

.bb-mock-import-step.active {
    color: #0d6efd;
}

.bb-mock-import-step.active span {
    background: #0d6efd;
    color: #fff;
}

.bb-mock-import-step-line {
    width: 32px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 0.25rem;
}

.bb-mock-import-step-line.done {
    background: #059669;
}

.bb-mock-mapping-row {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #faf8f5;
    font-size: 0.8125rem;
    color: #374151;
}

.bb-mock-mapping-row span {
    flex: 1;
}

.bb-mock-mapping-row span:last-child {
    text-align: right;
}

.bb-mock-mapping-row i {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.bb-mock-mapping-head {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    border-bottom-color: var(--bb-border);
}

/* Lists Widget */

.bb-mock-list-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    background: #faf8f5;
    border-radius: 8px;
}

.bb-mock-list-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bb-mock-list-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #23272e;
    flex: 1;
}

.bb-mock-list-count {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.bb-mock-bulk-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #374151;
}

/* Deal Detail Card */

.bb-mock-deal-detail-head {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--bb-border);
}

.bb-mock-deal-detail-title {
    font-size: 1rem;
    font-weight: 700;
    color: #23272e;
    margin-bottom: 0.375rem;
}

.bb-mock-deal-detail-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #23272e;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.bb-mock-deal-detail-stars i {
    font-size: 0.625rem;
    color: #f59e0b;
}

.bb-mock-deal-detail-section {
    margin-bottom: 1.25rem;
}

.bb-mock-deal-detail-section:last-child {
    margin-bottom: 0;
}

.bb-mock-deal-detail-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.bb-mock-deal-detail-members {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.bb-mock-deal-member {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.bb-mock-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bb-mock-deal-member strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #23272e;
    line-height: 1.2;
}

.bb-mock-deal-member span {
    font-size: 0.6875rem;
    color: #9ca3af;
}

.bb-mock-deal-detail-activity {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.bb-mock-deal-detail-activity strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #23272e;
}

.bb-mock-deal-detail-activity-desc {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
    margin-top: 0.25rem;
}

.bb-mock-deal-detail-activity-time {
    font-size: 0.6875rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* Funnel Widget */

.bb-mock-funnel-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--bb-border);
    margin-bottom: 1.25rem;
}

.bb-mock-funnel-tab {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bb-gray);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
    user-select: none;
}

.bb-mock-funnel-tab:hover {
    color: #374151;
}

.bb-mock-funnel-tab.active {
    color: var(--bb-primary);
    border-bottom-color: var(--bb-primary);
}

.bb-mock-funnel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bb-mock-funnel-stage {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.bb-mock-funnel-bar {
    height: 10px;
    border-radius: 5px;
    transition: width 0.6s ease;
}

.bb-mock-funnel-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bb-mock-funnel-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
}

.bb-mock-funnel-data {
    font-size: 0.75rem;
    color: var(--bb-gray);
}

/* Activity Log */

.bb-mock-activity-log {
    position: relative;
    overflow: hidden;
    max-height: 480px;
}

.bb-mock-activities {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bb-mock-activity {
    display: flex;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.bb-mock-activity:last-child {
    border-bottom: none;
}

.bb-mock-activity-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.bb-mock-activity-content {
    flex: 1;
    min-width: 0;
}

.bb-mock-activity-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.bb-mock-activity-head strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #23272e;
}

.bb-mock-activity-head span {
    font-size: 0.6875rem;
    color: #9ca3af;
}

.bb-mock-activity-by {
    font-size: 0.6875rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.bb-mock-activity-desc {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.45;
}

.bb-mock-activity-desc strong {
    color: #374151;
    font-weight: 600;
}

.bb-mock-activity-muted {
    color: #9ca3af;
}

.bb-mock-activity-desc .fa-arrow-right {
    color: #9ca3af;
    margin: 0 0.25rem;
}

/* Fade am unteren Rand */

.bb-mock-activity-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}

@media (max-width: 575.98px) {
    .bb-mock-activity-log {
        max-height: 380px;
    }

    .bb-mock-rating-label {
        width: 60px;
    }

    .bb-mock-rating-label i {
        font-size: 0.5rem;
    }

    .bb-mock-widget-footer {
        flex-direction: column;
        gap: 0.75rem;
    }

    .bb-mock-kpi {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
}

/* Compare Table */

.bb-compare {
    padding: 5rem 0;
}

.bb-compare-table {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid var(--bb-border);
    border-radius: 12px;
    overflow: hidden;
}

.bb-compare-row {
    display: flex;
}

.bb-compare-row:not(:last-child) {
    border-bottom: 1px solid var(--bb-border);
}

.bb-compare-row:nth-child(even) {
    background: #f9fafb;
}

.bb-compare-header {
    background: #23272e !important;
}

.bb-compare-header .bb-compare-label {
    color: transparent;
}

.bb-compare-header .bb-compare-others {
    color: #a8a29e;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bb-compare-header .bb-compare-bb {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(126, 58, 253, 0.15);
}

.bb-compare-cell {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.bb-compare-label {
    flex: 1;
    font-weight: 500;
    color: #374151;
}

.bb-compare-others,
.bb-compare-bb {
    width: 140px;
    flex-shrink: 0;
    justify-content: center;
    text-align: center;
}

.bb-compare-bb {
    background: rgba(126, 58, 253, 0.03);
}

.bb-compare-yes {
    color: #059669;
    font-size: 0.875rem;
}

.bb-compare-no {
    color: #d1d5db;
    font-size: 0.875rem;
}

.bb-compare-others span,
.bb-compare-bb span {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.3;
}

.bb-compare-bb span {
    color: #23272e;
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .bb-compare-cell {
        padding: 0.75rem 0.75rem;
        font-size: 0.8125rem;
    }

    .bb-compare-others,
    .bb-compare-bb {
        width: 90px;
    }

    .bb-compare-others span,
    .bb-compare-bb span {
        font-size: 0.6875rem;
    }
}

.bb-feature-related {
    padding: 5rem 0;
    background: #faf8f5;
}

/* Responsive */

@media (max-width: 991.98px) {
    .bb-feature-hero-title {
        font-size: 2rem;
    }

    .bb-feature-block-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .bb-feature-block-reverse .bb-feature-block-inner {
        flex-direction: column;
    }

    .bb-feature-mockup-placeholder {
        min-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .bb-feature-hero {
        padding: 120px 0 30px;
    }

    .bb-feature-hero-title {
        font-size: 1.625rem;
    }

    .bb-feature-hero-subtitle {
        font-size: 1rem;
    }

    .bb-feature-block {
        padding: 3rem 0;
    }

    .bb-feature-block-text h2 {
        font-size: 1.375rem;
    }

    .bb-feature-proof-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .bb-feature-proof-divider {
        width: 40px;
        height: 1px;
    }
}


/* =========================================================================
   SIGNUP MODAL
   ========================================================================= */

.bb-signup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: bbFadeIn 0.2s ease;
}

.bb-signup-overlay.open {
    display: flex;
}

@keyframes bbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.bb-signup-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: bbSlideUp 0.25s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes bbSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bb-signup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.875rem;
}

.bb-signup-close:hover {
    color: #374151;
    background: #f3f4f6;
}

/* Header */

.bb-signup-logo {
    margin-bottom: 1.25rem;
}

.bb-signup-logo img {
    height: 24px;
    width: auto;
}

.bb-signup-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.bb-signup-header h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #23272e;
    margin: 0 0 0.5rem;
}

.bb-signup-header p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Trust Badges */

.bb-signup-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bb-signup-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #059669;
    background: rgba(16, 185, 129, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

.bb-signup-badge i {
    font-size: 0.625rem;
}

.bb-signup-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(126, 58, 253, 0.08);
    color: #7e3afd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.bb-signup-icon-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Form Fields */

.bb-signup-row {
    display: flex;
    gap: 0.75rem;
}

.bb-signup-row .bb-signup-field {
    flex: 1;
}

.bb-signup-field {
    margin-bottom: 0.875rem;
}

.bb-signup-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.375rem;
}

.bb-signup-field input,
.bb-signup-field select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #23272e;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}

.bb-signup-field input:focus,
.bb-signup-field select:focus {
    border-color: #7e3afd;
}

.bb-signup-input-icon {
    position: relative;
}

.bb-signup-input-icon i {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.8125rem;
}

.bb-signup-input-icon input {
    padding-left: 2.5rem;
}

/* Demo Modal (Split Layout) */

.bb-demo-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 1040px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: bbSlideUp 0.25s ease;
    max-height: 90vh;
    overflow: hidden;
}

.bb-demo-modal-inner {
    display: flex;
    min-height: 500px;
}

.bb-demo-modal-image {
    width: 45%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.bb-demo-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bb-demo-modal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.bb-demo-modal-image-text {
    padding: 1.75rem;
    color: #fff;
}

.bb-demo-modal-image-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.bb-demo-modal-image-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.375rem;
}

.bb-demo-modal-image-text p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.bb-demo-modal-form {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    max-height: 90vh;
}

.bb-demo-modal-form-header {
    margin-bottom: 1.25rem;
}

.bb-demo-modal-form-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #23272e;
    margin: 0 0 0.375rem;
}

.bb-demo-modal-form-header p {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .bb-demo-modal {
        max-width: 100%;
        border-radius: 12px;
    }

    .bb-demo-modal-image {
        display: none;
    }

    .bb-demo-modal-form {
        padding: 1.75rem 1.25rem;
    }
}

.bb-pw-checks {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.375rem;
}

.bb-pw-check {
    font-size: 0.6875rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.15s;
}

.bb-pw-check i {
    font-size: 0.375rem;
}

.bb-pw-check.pass {
    color: #059669;
}

.bb-pw-check.pass i::before {
    content: "\f00c";
    font-size: 0.5625rem;
}

/* Checkboxes */

.bb-signup-checkbox {
    margin-bottom: 0.75rem;
}

.bb-signup-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #6b7280;
    cursor: pointer;
    line-height: 1.4;
}

.bb-signup-checkbox input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #7e3afd;
}

.bb-signup-checkbox a {
    color: #7e3afd;
    text-decoration: none;
}

.bb-signup-checkbox a:hover {
    text-decoration: underline;
}

/* Submit Button */

.bb-signup-submit {
    width: 100%;
    padding: 0.75rem;
    background: #111727;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.15s;
}

.bb-signup-submit:hover {
    background: #23272e;
}

.bb-signup-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bb-signup-submit .fa-spinner {
    margin-right: 0.5rem;
}

/* Error */

.bb-signup-error {
    margin-top: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 8px;
    font-size: 0.8125rem;
    text-align: center;
}

/* Footer */

.bb-signup-footer {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: #9ca3af;
}

.bb-signup-footer a {
    color: #7e3afd;
    text-decoration: none;
    font-weight: 500;
}

.bb-signup-footer a:hover {
    text-decoration: underline;
}

/* Verification Code Inputs */

.bb-verify-code-inputs {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    margin: 1.5rem 0;
}

.bb-verify-digit {
    width: 52px;
    height: 56px;
    text-align: center;
    font-size: 1.375rem;
    font-weight: 700;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.15s;
    color: #23272e;
}

.bb-verify-digit:focus {
    border-color: #7e3afd;
}

/* Mobile */

@media (max-width: 575.98px) {
    .bb-signup-modal {
        max-width: 100%;
        border-radius: 12px;
        padding: 1.75rem 1.25rem;
    }

    .bb-signup-row {
        flex-direction: column;
        gap: 0;
    }

    .bb-verify-digit {
        width: 44px;
        height: 48px;
        font-size: 1.125rem;
    }
}

/* Playbook-Cover (Ressourcen-Bereich Startseite) */
.bb-playbook-cover-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 2rem;
}
.bb-playbook-cover {
    width: 230px;
    max-width: 100%;
    height: auto;
    display: block;
}
/* Desktop: Cover größer und ragt links + unten leicht über die Karte hinaus */
@media (min-width: 992px) {
    .bb-playbook-card {
        overflow: visible !important;
        position: relative;
    }
    .bb-playbook-cover {
        position: absolute;
        left: 0.5rem;
        bottom: -3rem;
        width: 260px;
    }
}

/* ── Landing-Page-Fundament (/c/*) ───────────────────────────── */
.bb-lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--bb-border);
    padding: 1rem 0;
}
.bb-lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bb-lp-header-logo img { height: 30px; width: auto; display: block; }
.bb-lp-main { min-height: 60vh; }
.bb-lp-footer {
    padding: 2rem 0;
    background: var(--bb-light);
    border-top: 1px solid var(--bb-border);
}
.bb-lp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--bb-gray);
}
.bb-lp-footer-links { display: flex; gap: 1.5rem; }
.bb-lp-footer-links a { color: var(--bb-gray); text-decoration: none; }
.bb-lp-footer-links a:hover { color: var(--bb-primary); }

/* Umsatzrechner (LP) */
.lp-calc-card {
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    box-shadow: 0 10px 40px -12px rgba(17, 23, 39, 0.12);
    padding: 2rem;
    max-width: 860px;
    margin: 0 auto;
}
.lp-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.lp-calc-field label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.15rem; color: var(--bb-dark); }
.lp-calc-field .lp-calc-hint { font-size: 0.75rem; color: var(--bb-gray); }
.lp-calc-field input[type="range"] { width: 100%; accent-color: var(--bb-primary); margin-top: 0.6rem; }
.lp-calc-field .lp-calc-val { font-weight: 700; color: var(--bb-primary); font-size: 0.875rem; float: right; }
.lp-calc-divider { border: none; border-top: 1px solid var(--bb-border); margin: 1.75rem 0; }
.lp-calc-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.lp-calc-result { border-radius: 12px; padding: 1.25rem; text-align: center; background: var(--bb-light); border: 1px solid var(--bb-border); }
.lp-calc-result.lp-calc-highlight { background: linear-gradient(135deg, var(--bb-primary), var(--bb-primary-dark)); border: none; }
.lp-calc-result .lp-r-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--bb-gray); margin-bottom: 0.35rem; }
.lp-calc-result.lp-calc-highlight .lp-r-label { color: rgba(255,255,255,0.8); }
.lp-calc-result .lp-r-value { font-size: 1.5rem; font-weight: 800; color: var(--bb-dark); line-height: 1.2; }
.lp-calc-result.lp-calc-highlight .lp-r-value { color: #fff; }
.lp-calc-result .lp-r-sub { font-size: 0.75rem; color: var(--bb-gray); margin-top: 0.25rem; }
.lp-calc-result.lp-calc-highlight .lp-r-sub { color: rgba(255,255,255,0.75); }
.lp-calc-insight { display: flex; gap: 0.75rem; align-items: flex-start; background: rgba(73,163,192,0.1); border-radius: 10px; padding: 1rem 1.25rem; margin-top: 1.5rem; font-size: 0.9375rem; line-height: 1.6; color: var(--bb-dark); }
.lp-calc-insight i { color: var(--bb-accent); margin-top: 0.2rem; flex-shrink: 0; }
@media (max-width: 640px) {
    .lp-calc-grid { grid-template-columns: 1fr; }
    .lp-calc-results { grid-template-columns: 1fr; }
}

/* Formular-Mock (Forms-Spotlight) + Register-Badges */
.lp-form-mock { background: #fff; border: 1px solid var(--bb-border); border-radius: var(--bb-radius-lg); box-shadow: 0 10px 40px -12px rgba(17,23,39,0.12); padding: 1.75rem; }
.lp-form-mock-field { margin-bottom: 1rem; }
.lp-form-mock-field .lp-fm-label { font-size: 0.75rem; font-weight: 600; color: var(--bb-gray); display: block; margin-bottom: 0.35rem; }
.lp-form-mock-field .lp-fm-input { border: 1px solid var(--bb-border); border-radius: 8px; padding: 0.65rem 0.85rem; font-size: 0.875rem; color: var(--bb-dark); background: var(--bb-light); }
.lp-trust-badges { display: flex; flex-wrap: wrap; gap: 1rem 1.75rem; justify-content: center; margin-top: 2rem; font-size: 0.8125rem; color: rgba(255,255,255,0.8); }
.lp-trust-badges span { display: inline-flex; align-items: center; gap: 0.4rem; }
.lp-register-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.lp-register-form input { flex: 1; min-width: 220px; border: 1px solid var(--bb-border); border-radius: 10px; padding: 0.85rem 1rem; font-size: 0.9375rem; }

/* LP Feature-Slider (Tab-Navigation, Panels wie Feature-Unterseiten-Snippets) */
.lp-feature-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 0 auto 3rem; max-width: 820px; }
.lp-feature-tab { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--bb-border); background: #fff; color: var(--bb-gray); border-radius: 999px; padding: 0.6rem 1.15rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.18s ease; }
.lp-feature-tab i { font-size: 0.8125rem; }
.lp-feature-tab:hover { border-color: var(--bb-primary-light); color: var(--bb-primary-dark); }
.lp-feature-tab.active { background: var(--bb-primary); border-color: var(--bb-primary); color: #fff; box-shadow: 0 8px 22px -8px rgba(126,58,253,0.6); }
.lp-feature-panels { position: relative; }
.lp-feature-panel { display: none; }
.lp-feature-panel.active { display: block; animation: lpFeatureFade 0.35s ease; }
@keyframes lpFeatureFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
/* Block-Inner ohne Section-Padding, damit es als Snippet-Panel sitzt */
.lp-feature-panel .bb-feature-block-inner { gap: 3.5rem; }
@media (max-width: 991px) {
    .lp-feature-tabs { gap: 0.4rem; margin-bottom: 2rem; }
    .lp-feature-tab { padding: 0.5rem 0.9rem; font-size: 0.8125rem; }
    .lp-feature-panel .bb-feature-block-inner { flex-direction: column; gap: 2.25rem; }
}

/* LP Hero — hoher, cleaner Hero mit Light-Bulb-Gradients (Violett + Cyan) */
.bb-lp-hero-glow {
    position: relative;
    overflow: hidden;
    padding: 9rem 0 0;
    background:
        radial-gradient(ellipse 70% 50% at 80% 32%, rgba(73, 163, 192, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 16% 68%, rgba(126, 58, 253, 0.22) 0%, transparent 65%),
        var(--bb-secondary);
}
.bb-lp-hero-content { position: relative; z-index: 1; }
/* Wiederverwendbare Light-Bulb-Gradients fuer dunkle LP-Sektionen */
.bb-lp-glow {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 85% 22%, rgba(126, 58, 253, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 65% 60% at 12% 88%, rgba(73, 163, 192, 0.12) 0%, transparent 65%),
        var(--bb-secondary);
}
.bb-lp-glow > .container { position: relative; z-index: 1; }
/* Register-Karte mit Playbook-Cover, das oben herausragt */
.lp-register-card {
    position: relative;
    background: #fff;
    border-radius: var(--bb-radius-lg);
    padding: 2.25rem;
    margin-top: 4rem;
    color: var(--bb-dark);
}
.lp-register-cover {
    display: block;
    width: 150px;
    height: auto;
    margin: -7.5rem auto 1.5rem;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.45));
}

/* Durchschnittsbewertung (LP Testimonials) */
.lp-avg-rating { text-align: center; margin-top: 1.1rem; }
.lp-avg-stars { position: relative; display: inline-block; font-size: 1.2rem; line-height: 1; letter-spacing: 3px; }
.lp-avg-stars-bg { color: #ded6c8; }
.lp-avg-stars-fill { position: absolute; left: 0; top: 0; color: #f59e0b; overflow: hidden; white-space: nowrap; width: var(--lp-rating, 0); }
.lp-avg-text { margin-top: 0.55rem; font-size: 0.9375rem; color: var(--bb-gray); }
.lp-avg-text strong { color: var(--bb-dark); font-size: 1.05rem; }

/* Horizontale Checkliste im Hero (grüne Haken) */
.lp-hero-checklist { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.5rem; margin-top: 1.25rem; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.7); }
.lp-hero-checklist span { display: inline-flex; align-items: center; gap: 0.45rem; }
.lp-hero-checklist i { color: #34d399; font-size: 0.75rem; }

/* Kompakter Social-Proof im Hero (dunkler Grund) */
.lp-hero-proof { display: inline-flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.lp-hero-proof-avatars { display: flex; }
.lp-hero-avatar {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; color: #fff;
    border: 2px solid var(--bb-secondary); margin-left: -9px;
    object-fit: cover;
}
.lp-hero-avatar:first-child { margin-left: 0; }
.lp-hero-avatar.is-violet  { background: var(--bb-primary); }
.lp-hero-avatar.is-cyan    { background: var(--bb-accent); }
.lp-hero-avatar.is-emerald { background: #10b981; }
.lp-hero-avatar.is-amber   { background: #f59e0b; }
.lp-hero-proof-inner { text-align: left; }
.lp-hero-proof .lp-avg-stars { font-size: 0.95rem; letter-spacing: 2px; }
.lp-hero-proof .lp-avg-stars-bg { color: rgba(255, 255, 255, 0.28); }
.lp-hero-proof-text { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.8); margin-top: 0.15rem; }
.lp-hero-proof-text strong { color: #fff; }

/* Testimonial-Karten (LP) — Sterne, Avatar, dezente Card */
.lp-testimonial-card {
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    padding: 1.75rem;
    height: auto;
    flex: 0 0 clamp(280px, 80vw, 340px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 24px -16px rgba(17, 23, 39, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.lp-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px -18px rgba(17, 23, 39, 0.35);
}
.lp-testimonial-stars {
    color: #f59e0b;
    font-size: 0.8125rem;
    letter-spacing: 2px;
    margin-bottom: 0.9rem;
}
.lp-testimonial-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--bb-dark);
    margin-bottom: 1.5rem;
    flex: 1;
}
.lp-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.lp-testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.lp-testimonial-photo { object-fit: cover; display: block; }
.lp-testimonial-avatar.is-violet  { background: var(--bb-primary); }
.lp-testimonial-avatar.is-cyan    { background: var(--bb-accent); }
.lp-testimonial-avatar.is-emerald { background: #10b981; }
.lp-testimonial-avatar.is-amber   { background: #f59e0b; }
.lp-testimonial-avatar.is-indigo  { background: #6366f1; }
.lp-testimonial-avatar.is-rose    { background: #f43f5e; }
.lp-testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--bb-dark); line-height: 1.25; }
.lp-testimonial-role { font-size: 0.8125rem; color: var(--bb-gray); }
.lp-testimonial-stars .is-empty { color: #dcd6cc; }

/* Testimonial Infinity-Slider (auto-scrollendes Marquee) */
.lp-testimonial-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.75rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.lp-testimonial-track {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    width: max-content;
    animation: lp-testi-scroll 60s linear infinite;
}
.lp-testimonial-marquee:hover .lp-testimonial-track { animation-play-state: paused; }
@keyframes lp-testi-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .lp-testimonial-track { animation: none; }
}

/* Rechtliche Hinweise als dezenter Fußnoten-Text */
.lp-register-fineprint { margin-top: 1rem; }
.lp-register-fineprint p { font-size: 0.72rem; line-height: 1.45; color: var(--bb-gray); margin: 0 0 0.3rem; }
.lp-register-fineprint p:last-child { margin-bottom: 0; }
.lp-register-fineprint i { opacity: 0.65; }
@media (max-width: 991px) {
    .lp-register-card { margin-top: 3rem; }
    .lp-register-cover { width: 130px; margin-top: -6.5rem; }
}
/* Outline-Button auf dunklem Grund: heller Text, dezenter transluzenter Hover */
.bb-btn-outline-light { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.bb-btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.5); color: #fff; }
@media (max-width: 768px) {
    .bb-lp-hero-glow { padding: 6rem 0 0; }
}

/* LP Hero — Pipeline-Board (aus Startseite) auf dunklem Grund */
.bb-lp-hero-pipeline { margin-top: 3.5rem; position: relative; z-index: 1; }
/* Fade nach unten ins Dunkle — voll deckend, damit der Hero-Glow nicht durchscheint */
.bb-lp-hero-pipeline::after {
    height: 42%;
    background: linear-gradient(to bottom, rgba(17, 23, 39, 0) 0%, rgba(17, 23, 39, 0.85) 45%, var(--bb-secondary) 72%);
}
/* Texte ausserhalb der Karten aufhellen; aktiver "Board"-Tab bleibt dunkel */
.bb-lp-hero-pipeline .bb-hero-kanban-pipeline-name,
.bb-lp-hero-pipeline .bb-hero-kanban-title { color: #fff; }
.bb-lp-hero-pipeline .bb-hero-kanban-sum { color: rgba(255, 255, 255, 0.6); }
.bb-lp-hero-pipeline .bb-hero-kanban-pipeline-tab:not(.active) { color: rgba(255, 255, 255, 0.55); }
.bb-lp-hero-pipeline .bb-hero-kanban-count { background: rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.75); }
.bb-lp-hero-pipeline .bb-hero-kanban-toolbar-btn { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.8); }

/* Glasmorphism-Cards speziell fuer die LP */
.bb-lp-hero-pipeline .bb-hero-kanban-card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.2);
}
.bb-lp-hero-pipeline .bb-hero-kanban-card-name,
.bb-lp-hero-pipeline .bb-hero-kanban-card-value { color: #fff; }
.bb-lp-hero-pipeline .bb-hero-kanban-card-sub,
.bb-lp-hero-pipeline .bb-hero-kanban-card-meta { color: rgba(255, 255, 255, 0.6); }

/* =================================================================
   RESSOURCEN (Hub-Karten, Quiz, Vorlagen, Content-Blöcke)
   ================================================================= */

/* Hub-Karten */
.bb-resource-card {
    display: flex; flex-direction: column; height: 100%;
    background: #fff; border: 1px solid var(--bb-border); border-radius: var(--bb-radius-lg);
    padding: 1.75rem; text-decoration: none; color: inherit;
    box-shadow: 0 6px 24px -16px rgba(17, 23, 39, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.bb-resource-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -18px rgba(17, 23, 39, 0.4); border-color: var(--bb-primary-light); }
.bb-resource-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.bb-resource-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(126, 58, 253, 0.08); color: var(--bb-primary); font-size: 1.125rem;
}
.bb-resource-badge { font-size: 0.6875rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.bb-resource-badge.is-free  { background: rgba(16, 185, 129, 0.1); color: #059669; }
.bb-resource-badge.is-gated { background: rgba(126, 58, 253, 0.1); color: var(--bb-primary-dark); }
.bb-resource-type { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--bb-gray); margin-bottom: 0.35rem; }
.bb-resource-title { font-size: 1.1875rem; font-weight: 700; color: var(--bb-dark); margin-bottom: 0.5rem; line-height: 1.3; }
.bb-resource-desc { font-size: 0.9375rem; line-height: 1.6; color: var(--bb-gray); margin-bottom: 1.25rem; flex: 1; }
.bb-resource-link { font-size: 0.9375rem; font-weight: 700; color: var(--bb-primary); }
.bb-resource-card:hover .bb-resource-link { color: var(--bb-primary-dark); }

/* Content-Blöcke (freigeschaltete Ressourcen) */
.bb-resource-block { padding: 1.5rem 0; border-bottom: 1px solid var(--bb-border); }
.bb-resource-block:last-of-type { border-bottom: none; }
.bb-resource-block-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.bb-resource-block-head h2 { font-size: 1.25rem; font-weight: 700; color: var(--bb-dark); margin: 0; }
.bb-resource-block-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(126, 58, 253, 0.08); color: var(--bb-primary);
}

/* E-Mail-Vorlagen */
.bb-template-card { background: #fff; border: 1px solid var(--bb-border); border-radius: var(--bb-radius-lg); overflow: hidden; margin-bottom: 1.25rem; }
.bb-template-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--bb-border); background: var(--bb-light); }
.bb-template-stage { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--bb-primary); margin-bottom: 0.2rem; }
.bb-template-subject { font-size: 0.9375rem; font-weight: 600; color: var(--bb-dark); }
.bb-template-body { margin: 0; padding: 1.25rem; font-family: inherit; font-size: 0.9rem; line-height: 1.65; color: var(--bb-dark); white-space: pre-wrap; background: #fff; }
.btn-copy { background: var(--bb-secondary); color: #fff; font-size: 0.8125rem; padding: 0.4rem 0.85rem; flex-shrink: 0; }
.btn-copy.copied { background: var(--bb-accent); }

/* Quiz */
.bb-quiz { background: #fff; border: 1px solid var(--bb-border); border-radius: var(--bb-radius-lg); padding: 2rem; box-shadow: 0 10px 40px -18px rgba(17, 23, 39, 0.25); }
.bb-quiz-panel { display: none; }
.bb-quiz-panel.active { display: block; animation: lpFeatureFade 0.35s ease; }
.bb-quiz-icon { width: 56px; height: 56px; flex: 0 0 56px; border-radius: 16px; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; background: rgba(126, 58, 253, 0.08); color: var(--bb-primary); overflow: hidden; }
.bb-quiz-icon i { font-size: 22px; line-height: 1; }
.bb-quiz-icon-green { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.bb-quiz-intro-badges { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; justify-content: center; margin-top: 1.1rem; font-size: 0.8125rem; color: var(--bb-gray); }
.bb-quiz-intro-badges span { display: inline-flex; align-items: center; gap: 0.4rem; }
.bb-quiz-intro-badges i { color: #10b981; font-size: 0.75rem; }
.bb-quiz-progress { height: 6px; background: var(--bb-border); border-radius: 999px; overflow: hidden; margin-bottom: 1.25rem; }
.bb-quiz-progress-fill { height: 100%; background: var(--bb-primary); border-radius: 999px; transition: width 0.3s ease; width: 0; }
.bb-quiz-qnum { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bb-primary); margin-bottom: 0.5rem; }
.bb-quiz-qtext { font-size: 1.375rem; font-weight: 700; color: var(--bb-dark); margin-bottom: 1.25rem; line-height: 1.3; }
.bb-quiz-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.bb-quiz-option { display: flex; align-items: flex-start; gap: 0.75rem; width: 100%; text-align: left; background: var(--bb-light); border: 1px solid var(--bb-border); border-radius: 12px; padding: 0.9rem 1rem; font-size: 0.9375rem; color: var(--bb-dark); cursor: pointer; transition: all 0.15s ease; }
.bb-quiz-option:hover { border-color: var(--bb-primary-light); }
.bb-quiz-option.selected { border-color: var(--bb-primary); background: rgba(126, 58, 253, 0.06); }
.bb-quiz-opt-letter { width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--bb-border); font-weight: 700; font-size: 0.8125rem; color: var(--bb-gray); }
.bb-quiz-option.selected .bb-quiz-opt-letter { background: var(--bb-primary); color: #fff; border-color: var(--bb-primary); }
.bb-quiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.bb-quiz-result-ring {
    width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.5rem; color: var(--bb-dark);
    background: conic-gradient(var(--bb-primary) var(--pct, 0%), var(--bb-border) 0);
    position: relative;
}
.bb-quiz-result-ring::before { content: ""; position: absolute; inset: 10px; background: #fff; border-radius: 50%; }
.bb-quiz-result-ring span { position: relative; z-index: 1; }
.bb-quiz-result-ring.is-red   { background: conic-gradient(#ef4444 var(--pct,0%), var(--bb-border) 0); }
.bb-quiz-result-ring.is-amber { background: conic-gradient(#f59e0b var(--pct,0%), var(--bb-border) 0); }
.bb-quiz-result-ring.is-green { background: conic-gradient(#10b981 var(--pct,0%), var(--bb-border) 0); }
.bb-quiz-result-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 4px 12px; border-radius: 999px; }
.bb-quiz-result-tag.is-red   { background: rgba(239,68,68,0.1); color: #dc2626; }
.bb-quiz-result-tag.is-amber { background: rgba(245,158,11,0.12); color: #b45309; }
.bb-quiz-result-tag.is-green { background: rgba(16,185,129,0.1); color: #059669; }
.bb-quiz-panel[data-quiz-panel="intro"],
.bb-quiz-panel[data-quiz-panel="result"] { text-align: center; }
.bb-quiz-panel[data-quiz-panel="intro"] .bb-quiz-icon { margin-left: auto; margin-right: auto; }
.bb-quiz-qsub { font-size: 0.9375rem; color: var(--bb-gray); margin-bottom: 1.25rem; margin-top: -0.75rem; }
/* Ergebnis: Dimensions-Breakdown (Erfassung / Follow-up / …) */
.bb-quiz-breakdown { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; margin-bottom: 1.75rem; }
.bb-quiz-bd-item { border-radius: 10px; padding: 0.7rem 0.4rem; text-align: center; border: 1px solid var(--bb-border); background: var(--bb-light); }
.bb-quiz-bd-label { font-size: 0.6875rem; font-weight: 600; color: var(--bb-gray); margin-bottom: 0.3rem; }
.bb-quiz-bd-level { font-size: 0.8125rem; font-weight: 800; }
.bb-quiz-bd-item.is-red    { border-color: rgba(239,68,68,0.3);  background: rgba(239,68,68,0.05); }
.bb-quiz-bd-item.is-amber  { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.06); }
.bb-quiz-bd-item.is-green  { border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.05); }
.bb-quiz-bd-item.is-red   .bb-quiz-bd-level { color: #dc2626; }
.bb-quiz-bd-item.is-amber .bb-quiz-bd-level { color: #b45309; }
.bb-quiz-bd-item.is-green .bb-quiz-bd-level { color: #059669; }
@media (max-width: 560px) { .bb-quiz-breakdown { grid-template-columns: repeat(2, 1fr); } }

/* Ergebnis: Insight-Blöcke (prominenter als reine Liste) */
.bb-quiz-stats { display: flex; flex-direction: column; gap: 0.75rem; }
.bb-quiz-stat { display: flex; align-items: flex-start; gap: 0.75rem; text-align: left; font-size: 1rem; line-height: 1.55; color: var(--bb-dark); background: #fff; border: 1px solid var(--bb-border); border-radius: 12px; padding: 1rem 1.15rem; box-shadow: 0 4px 16px -12px rgba(17,23,39,0.25); }
.bb-quiz-stat i { color: #10b981; margin-top: 0.15rem; flex-shrink: 0; font-size: 1.0625rem; }
.bb-quiz-cta { background: var(--bb-light); border: 1px solid var(--bb-border); border-radius: 12px; padding: 1.5rem; text-align: center; }
.bb-quiz-restart { background: none; border: none; color: var(--bb-gray); font-size: 0.8125rem; cursor: pointer; text-decoration: underline; }
.bb-quiz-restart:hover { color: var(--bb-primary); }

/* Messe-Selbstcheck Hero (links Pain + CTA, rechts ausblendende Ergebnis-Vorschau) */
.selfcheck-hero { padding: 130px 0 0; position: relative; overflow: hidden; }
.selfcheck-hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.25rem; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.7); }
.selfcheck-hero-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.selfcheck-hero-trust i { color: #34d399; font-size: 0.75rem; }
.selfcheck-hero-media { position: relative; }
.selfcheck-hero-card {
    background: #fff; border-radius: var(--bb-radius-lg); padding: 1.85rem;
    max-width: 400px; margin: 0 auto; text-align: center;
    box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.55);
    -webkit-mask-image: linear-gradient(to bottom, #000 74%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 74%, transparent 100%);
}
.selfcheck-hero-card-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bb-primary); margin-bottom: 1.1rem; }
.selfcheck-hero-rows { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; }
.selfcheck-hero-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.8125rem; color: var(--bb-dark); padding: 0.5rem 0.8rem; border: 1px solid var(--bb-border); border-radius: 8px; }
.selfcheck-hero-row .lvl { font-weight: 800; font-size: 0.75rem; }
.selfcheck-hero-row .lvl.is-green { color: #059669; }
.selfcheck-hero-row .lvl.is-amber { color: #b45309; }
.selfcheck-hero-row .lvl.is-red   { color: #dc2626; }
@media (max-width: 991px) {
    .selfcheck-hero { padding-top: 120px; }
    .selfcheck-hero-card { margin-top: 1rem; }
}

/* Standalone-Quiz (/quiz/{slug}) — nur das Quiz, kein Chrome (Typeform-artig), dunkler Glow-Grund */
.bb-quiz-standalone {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(ellipse 70% 50% at 80% 18%, rgba(73, 163, 192, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 55% at 15% 88%, rgba(126, 58, 253, 0.22) 0%, transparent 65%),
        var(--bb-secondary);
}
.bb-quiz-standalone-wrap {
    max-width: 640px; margin: 0 auto; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    gap: 1.75rem; padding: 2.5rem 1.25rem;
    position: relative; z-index: 1;
}
.bb-quiz-standalone-logo { display: block; text-align: center; }
.bb-quiz-standalone-logo img { height: 64px; width: auto; }
.bb-quiz-standalone-footer { text-align: center; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.5); }
.bb-quiz-standalone-footer a { color: var(--bb-primary-light); text-decoration: none; font-weight: 600; }

/* Follow-up-Vorlagen — E-Mail-Card-Mockups */
.fu-email-card { background: #fff; border: 1px solid var(--bb-border); border-radius: 14px; overflow: hidden; box-shadow: 0 14px 44px -24px rgba(17, 23, 39, 0.22); text-align: left; }
.fu-email-bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.7rem 1rem; background: var(--bb-light); border-bottom: 1px solid var(--bb-border); }
.fu-email-dot { width: 11px; height: 11px; border-radius: 50%; }
.fu-dot-r { background: #ff5f57; } .fu-dot-y { background: #febc2e; } .fu-dot-g { background: #28c840; }
.fu-email-meta { padding: 0.8rem 1.15rem; border-bottom: 1px solid var(--bb-border); font-size: 0.8125rem; color: var(--bb-dark); display: flex; flex-direction: column; gap: 0.2rem; }
.fu-email-meta .fu-lbl { color: var(--bb-gray-light); display: inline-block; width: 30px; }
.fu-email-subject { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; padding: 0.85rem 1.15rem; border-bottom: 1px solid var(--bb-border); }
.fu-email-subject-text { font-weight: 700; color: var(--bb-dark); font-size: 0.9375rem; line-height: 1.4; }
.fu-email-body { padding: 1.15rem; font-size: 0.9rem; line-height: 1.7; color: var(--bb-dark); }
.fu-ph { color: var(--bb-primary); background: rgba(126, 58, 253, 0.07); border-radius: 4px; padding: 0 3px; font-weight: 600; }
.fu-cta-link { color: var(--bb-primary); font-weight: 700; }
.fu-email-foot { padding: 1rem 1.15rem; border-top: 1px solid var(--bb-border); background: var(--bb-light); }
.fu-copy { background: var(--bb-secondary); color: #fff; font-size: 0.75rem; padding: 0.35rem 0.7rem; flex-shrink: 0; }
.fu-copy.copied { background: var(--bb-accent); }
.fu-copy-full { width: 100%; }
.fu-copy-full.copied { background: var(--bb-accent); }
.fu-hidden-src { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }

/* Hero-E-Mail-Vorschau, blendet nach unten aus */
.fu-hero-preview {
    max-width: 440px; margin: 0 auto;
    box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.55);
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 96%);
    mask-image: linear-gradient(to bottom, #000 60%, transparent 96%);
}

/* Follow-up 14-Tage-Zeitstrahl */
.fu-timeline { display: flex; position: relative; gap: 0.5rem; }
.fu-timeline::before { content: ""; position: absolute; top: 21px; left: 10%; right: 10%; height: 3px; background: linear-gradient(90deg, var(--bb-primary), var(--bb-accent)); border-radius: 3px; z-index: 0; }
.fu-tl-step { flex: 1; text-align: center; position: relative; z-index: 1; }
.fu-tl-node { width: 44px; height: 44px; border-radius: 50%; background: var(--bb-primary); color: #fff; font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 0 0 6px #fff; }
.fu-tl-day { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--bb-primary); margin-bottom: 0.2rem; }
.fu-tl-title { font-size: 0.95rem; font-weight: 700; color: var(--bb-dark); margin-bottom: 0.4rem; }
.fu-tl-note { font-size: 0.8125rem; line-height: 1.5; color: var(--bb-gray); padding: 0 0.35rem; }
@media (max-width: 767px) {
    .fu-timeline { flex-direction: column; gap: 1.25rem; }
    .fu-timeline::before { top: 0; bottom: 0; left: 21px; right: auto; width: 3px; height: auto; }
    .fu-tl-step { display: grid; grid-template-columns: 44px 1fr; column-gap: 1rem; text-align: left; align-items: start; }
    .fu-tl-node { margin: 0; grid-row: span 3; }
    .fu-tl-day { align-self: center; }
}

/* Eingebettete Quiz-Sektion (#quiz) — cleane, dezent gerahmte Box (kein Glow) */
#quiz .bb-quiz {
    border: 1px solid var(--bb-border);
    box-shadow: 0 14px 44px -24px rgba(17, 23, 39, 0.22);
}

/* Formular-Vorlagen Hero (links Infos, rechts ausblendendes Beispiel-Formular) */
.formtpl-hero { padding: 130px 0 0; position: relative; overflow: hidden; }
.formtpl-hero-media { position: relative; }
.formtpl-hero-form {
    background: #fff;
    border-radius: var(--bb-radius-lg);
    padding: 1.75rem;
    box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.55);
    /* Nach unten ausblenden (wie das Pipeline-Board bei Umsatzzittern) */
    -webkit-mask-image: linear-gradient(to bottom, #000 52%, transparent 94%);
    mask-image: linear-gradient(to bottom, #000 52%, transparent 94%);
}
.formtpl-hero-form-head { margin-bottom: 1.25rem; }
.formtpl-hero-form-tag {
    display: inline-block; font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--bb-primary); background: rgba(126, 58, 253, 0.08);
    padding: 3px 10px; border-radius: 999px; margin-bottom: 0.6rem;
}
.formtpl-hero-form-head h3 { font-size: 1.1875rem; font-weight: 700; color: var(--bb-dark); margin: 0 0 0.35rem; }
.formtpl-hero-form-head p { font-size: 0.875rem; color: var(--bb-gray); margin: 0; line-height: 1.5; }
.formtpl-hero-form .bb-btn[disabled] { opacity: 0.6; cursor: not-allowed; box-shadow: none; }
.formtpl-hero-form .bb-btn[disabled]:hover { transform: none; }
@media (max-width: 991px) {
    .formtpl-hero { padding-top: 120px; }
    /* Auf Mobil ebenfalls nur hälftig zeigen und ausfaden */
    .formtpl-hero-form {
        -webkit-mask-image: linear-gradient(to bottom, #000 42%, transparent 86%);
        mask-image: linear-gradient(to bottom, #000 42%, transparent 86%);
    }
}

/* Formular-Vorlagen (Tab-Panels + Feld-Chips) */
.bb-formtpl-panel { display: none; }
.bb-formtpl-panel.active { display: block; animation: lpFeatureFade 0.35s ease; }
.bb-formtpl-chip {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    background: #fff; border: 1px solid var(--bb-border); color: var(--bb-dark);
    border-radius: 999px; padding: 0.3rem 0.75rem;
}

/* Kopierbare Text-Snippets */
.bb-snippets { margin-bottom: 1.25rem; }
.bb-snippets-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--bb-gray); margin-bottom: 0.6rem; }
.bb-snippet {
    display: flex; align-items: center; gap: 0.75rem;
    background: #fff; border: 1px solid var(--bb-border); border-radius: 10px;
    padding: 0.6rem 0.75rem; margin-bottom: 0.5rem;
}
.bb-snippet-main { min-width: 0; flex: 1; }
.bb-snippet-label { font-size: 0.6875rem; font-weight: 600; color: var(--bb-gray); margin-bottom: 0.1rem; }
.bb-snippet-val { font-size: 0.875rem; color: var(--bb-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bb-snippet-copy { flex-shrink: 0; padding: 0.4rem 0.6rem; font-size: 0.8125rem; }

@media print {
    header, footer, .bb-nav-mobile-toggle, .bb-quiz-cta, .btn-copy { display: none !important; }
    .bb-resource-block { break-inside: avoid; }
}
