/* hervorhebendes Zitat mit grünem Balken links */
.highlight-quote {
    border-left: 6px solid #28a745;
    background: #f6fff7;
    padding: 0.85rem 1rem;
    margin: 1rem 0;
    color: #1f6b3a;
    border-radius: 3px;
    /* etwas größer und kräftiger */
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.highlight-quote p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 700;
}

/* Avatar im Zitat (Logo als Platzhalter) */
.highlight-quote .quote-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #28a745;
    object-fit: cover;
    flex: 0 0 auto;
    background: #fff;
}

@media (max-width: 767px) {
    .highlight-quote {
        font-size: 1rem;
        font-weight: 600;
    }

    .highlight-quote p {
        font-size: 1.02rem;
        font-weight: 700;
    }

    .highlight-quote .quote-avatar {
        width: 40px;
        height: 40px;
    }
}

/* Stat box (großer % Wert) */
.stat-trust-row {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    margin: 1.25rem 0;
}

.stat-box {
    flex: 0 0 220px;
    background: #e9fef0;
    border: 3px solid #28a745;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 3.25rem;
    font-weight: 800;
    color: #1f6b3a;
    line-height: 1;
}

.stat-box .stat-sub {
    font-size: 0.95rem;
    color: #155026;
    margin-top: 0.25rem;
}

/* -66% als float-Element (von Text umflossen, responsive) */
.stat-float {
    float: right;
    width: 220px;
    background: #e9fef0;
    border: 3px solid #28a745;
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    margin: 0 0 1rem 1rem;
}

.stat-float .stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1f6b3a;
    line-height: 1;
}

.stat-float .stat-sub {
    font-size: 0.95rem;
    color: #155026;
    margin-top: 0.25rem;
}

/* Trust-Signal full width */
.trust-signal-full {
    background: #fff;
    border-top: 1px solid #e6efe9;
    border-bottom: 1px solid #e6efe9;
}

.trust-signal-full .trust-signal-inner {
    padding: 1rem 0;
}

.trust-signal-full .trust-signal-box {
    margin: 0;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
}

/* CTA: center content and constrain width for better focus */
.cta-strip {
    background: #28a745;
    color: #ffffff;
    width: 100%;
    padding: 0;
    margin: 0;
}

.cta-strip .cta-inner {
    padding: 2rem 0;
    text-align: center;
}

.cta-strip .cta-inner .cta-content {
    max-width: 920px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-strip .btn-cta {
    background: #ffffff;
    color: #28a745;
    border: none;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    display: inline-block;
}

.cta-strip .btn-cta:hover {
    background: #e9f7ee;
    color: #1f6b3a;
}

.clear-float {
    clear: both;
}

@media (max-width: 767px) {
    .cta-strip .cta-inner h3 {
        font-size: 1.25rem;
    }

    .highlight-quote {
        padding: 0.6rem 0.9rem;
    }

    .stat-trust-row {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
        flex: 1 1 auto;
    }

    .stat-float {
        float: none;
        width: 100%;
        margin: 0 0 1rem 0;
    }

    .trust-signal-full .trust-signal-inner {
        padding: 0.75rem 0;
    }
}

/* NEU: Responsive Organizer-Box für Bild + Beschreibung
           - auf größeren Bildschirmen max-width: 40%, min-width: 220px (wie vorher)
           - auf kleinen Bildschirmen volle Breite, Min-Width zurücksetzen
        */
.organizer-box {
    background: #dddddd;
    padding: 1rem;
    border-radius: 8px;
    max-width: 40%;
    min-width: 220px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .organizer-box {
        float: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        /* Bootstrap-Utilities wie .ml-3 setzen oft `!important` — überschreiben */
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 1rem;
        /* zentriert innerhalb des Containers falls nötig */
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* NEU: Trust-Strip unter dem CTA mit hellgrauem Hintergrund */
.trust-strip {
    background: #dddddd;
    border-top: 1px solid #e6efe9;
    border-bottom: 1px solid #e6efe9;
}

.trust-strip .trust-signal-inner {
    padding: 1rem 0;
}

.trust-strip .trust-signal-box {
    margin: 0;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    text-align: center;
}

@media (max-width: 767px) {
    .trust-strip .trust-signal-inner {
        padding: 0.75rem 0;
    }
}