/* =============================================
   TM24 ANKAUF – B2B BANNER
   Premium, hochwertig, passend zum Hero-Stil
   ============================================= */

/* ===== SECTION ===== */
.b2b-banner {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(160deg, #1e1b4b 0%, #312e81 50%, #3730a3 100%);
    overflow: hidden;
}

/* Deko-Elemente */
.b2b-banner-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.b2b-deco-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
    top: -80px;
    right: -60px;
}

.b2b-deco-2 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%);
    bottom: -60px;
    left: -40px;
}

/* ===== INNER LAYOUT ===== */
.b2b-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* ===== BADGE ===== */
.b2b-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.b2b-banner-badge i {
    font-size: 15px;
    color: #a5b4fc;
}

/* ===== TITLE ===== */
.b2b-banner-title {
    margin: 0 0 20px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* ===== CHECKLISTE ===== */
.b2b-banner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b2b-banner-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
}

.b2b-check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
}

.b2b-check i {
    font-size: 17px;
    color: #4ade80;
    filter: drop-shadow(0 1px 3px rgba(74,222,128,0.3));
}

/* ===== ACTION / CTA ===== */
.b2b-banner-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.b2b-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    background: #fff;
    color: #1e1b4b;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.1) inset;
    transition: transform 220ms ease, box-shadow 220ms ease;
    white-space: nowrap;
}

.b2b-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 16px 48px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.15) inset;
    color: #1e1b4b;
    text-decoration: none;
}

.b2b-cta-arrow {
    font-size: 14px;
    transition: transform 220ms ease;
}

.b2b-cta-btn:hover .b2b-cta-arrow {
    transform: translateX(4px);
}

.b2b-cta-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

.b2b-cta-hint i {
    font-size: 12px;
    color: #4ade80;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .b2b-banner {
        padding: 40px 0;
    }

    .b2b-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .b2b-banner-list li {
        justify-content: center;
        text-align: left;
    }

    .b2b-cta-btn {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    .b2b-banner-badge {
        margin-left: auto;
        margin-right: auto;
    }
}
