/* ── Section Wrapper ── */
.cb-about {
    padding-top: 80px;
    overflow: hidden;
}


/* ── Header Row ── */
.cb-about__header {
    padding: 0 24px;
    margin-bottom: 48px;
}

@media (min-width: 992px) {
    .cb-about__header {
        padding: 0 72px;
        margin-bottom: 72px;
    }
}

.cb-about__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.cb-about__headline {
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--bs-primary);
    margin-bottom: 0;
}

.cb-about__intro {
    line-height: 1.75;
    padding-top: 8px;
}


/* ── Dark Stats Band ── */
.cb-about__band {
    padding: 8rem;
    background: var(--bs-quaternary);
    position: relative;
}

.cb-about__band::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--bs-quaternary);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}


/* ── Stats Grid ── */
.cb-about__stats-grid {
    display: grid;
    padding: 48px 24px 0;
    gap: 0;

    /* Mobile: 1 Spalte */
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .cb-about__stats-grid {
        /* Tablet: 2 Spalten */
        grid-template-columns: repeat(2, 1fr);
        padding: 56px 40px 0;
    }
}

@media (min-width: 992px) {
    .cb-about__stats-grid {
        /* Ab 992px: 4 Spalten */
        grid-template-columns: repeat(4, 1fr);
        padding: 64px 48px 0;
    }
}

@media (min-width: 1200px) {
    .cb-about__stats-grid {
        padding: 72px 72px 0;
    }
}


/* ── Single Stat – Mobile (1 Spalte) ── */
.cb-stat {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cb-stat:last-child {
    border-bottom: none;
}


/* ── Single Stat – Tablet (2 Spalten) ── */
@media (min-width: 576px) {
    .cb-stat {
        padding: 40px 32px;
        border-bottom: none;
        border-right: none;
    }

    /* Linke Spalte */
    .cb-stat:nth-child(odd) {
        padding-left: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Rechte Spalte */
    .cb-stat:nth-child(even) {
        padding-right: 0;
        border-right: none;
    }

    /* Trennlinie unter Reihe 1 */
    .cb-stat:nth-child(1),
    .cb-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Reihe 2: kein Border unten */
    .cb-stat:nth-child(3),
    .cb-stat:nth-child(4) {
        border-bottom: none;
    }
}


/* ── Single Stat – Desktop (4 Spalten ab 992px) ── */
@media (min-width: 992px) {
    .cb-stat {
        padding: 0 32px 56px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cb-stat:first-child {
        padding-left: 0;
    }

    .cb-stat:last-child {
        padding-right: 0;
        border-right: none;
    }

    /* 2-Spalten-Overrides zurücksetzen */
    .cb-stat:nth-child(odd) {
        padding-left: 32px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cb-stat:first-child {
        padding-left: 0;
    }

    .cb-stat:nth-child(even) {
        padding-right: 32px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cb-stat:last-child {
        padding-right: 0;
        border-right: none;
    }

    .cb-stat:nth-child(1),
    .cb-stat:nth-child(2) {
        border-bottom: none;
    }
}

@media (min-width: 1200px) {
    .cb-stat {
        padding: 0 40px 56px;
    }

    .cb-stat:nth-child(odd) {
        padding-left: 40px;
    }

    .cb-stat:first-child {
        padding-left: 0;
    }

    .cb-stat:nth-child(even) {
        padding-right: 40px;
    }

    .cb-stat:last-child {
        padding-right: 0;
    }
}


/* ── Stat Number ── */
.cb-stat__number {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    line-height: 1;
    margin-bottom: 10px;
}

.cb-stat__number .cb-count {
    font-size: clamp(52px, 5.5vw, 84px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff !important;
    line-height: 1;
}

.cb-stat__number sup {
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 500;
    color: var(--bs-primary) !important;
    margin: 10px;
    letter-spacing: 0.02em;
}

.cb-stat__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35) !important;
    margin-bottom: 12px;
}

.cb-stat__desc {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.50);
    margin-bottom: 0;
}


/* ── CTA Row ── */
.cb-about__cta-row {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 576px) {
    .cb-about__cta-row {
        padding: 40px 40px 56px;
    }
}

@media (min-width: 992px) {
    .cb-about__cta-row {
        padding-top: 5rem;
        flex-direction: row;
        align-items: center;
    }
}

.cb-about__tagline,
.cb-about__tagline__header {
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 300;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.45);
    max-width: 540px;
    margin-bottom: 0;
}

.cb-about__tagline__header {
    color: #fff;
    font-weight: 700;
}

.px-0 {
    display: flex;
    justify-content: space-around;
}