.cbp-section {
    background: #f1f1f1;
    padding: 58px 0 72px;
}

.cbp-list-wrap {
    max-width: 1100px;
}

.cbp-item {
    margin-bottom: 64px;
    --reveal-delay: var(--cbp-delay, 0ms);
}

.cbp-item:last-child {
    margin-bottom: 0;
}

.cbp-item-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.cbp-number {
    width: 58px;
    min-width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--violet-900);
    color: #fff;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.02em;
    padding-bottom: 2px;
}

.cbp-item-head h3 {
    margin: 2px 0 0;
    color: #383d43;
    font-size: clamp(1.375rem, 2.6vw, 2.25rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -.01em;
}

.cbp-points {
    margin-block: 0 0; margin-inline: 80px 0;
    padding: 0;
    list-style: none;
}

.cbp-points li {
    position: relative;
    padding-inline-start: 29px;
    margin-bottom: 11px;
    color: #5b6066;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.45;
    font-weight: 500;
}

.cbp-points li:last-child {
    margin-bottom: 0;
}

.cbp-points li::before {
    content: "\2713";
    position: absolute;
    inset-inline-start: 0;
    top: 1px;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    color: #00c7f0;
}

.cbp-cta-wrap {
    margin-top: 14px;
    padding-inline-start: 80px;
    --reveal-delay: var(--cbp-delay, 0ms);
}

.cbp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    height: 56px;
    padding: 0 24px;
    background: var(--violet-900);
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 2px;
    transition: transform .2s ease, box-shadow .25s ease, opacity .2s ease;
}

.cbp-cta-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px color-mix(in srgb, var(--violet-900) 28%, transparent);
    opacity: .97;
}

@media (max-width: 1199px) {
    .cbp-item-head h3 {
        font-size: clamp(1.375rem, 2.6vw, 2.25rem);
    }

    .cbp-points li {
        font-size: clamp(1rem, 1.4vw, 1.125rem);
    }
}

@media (max-width: 991px) {
    .cbp-section {
        padding: 42px 0 56px;
    }

    .cbp-item {
        margin-bottom: 44px;
    }

    .cbp-number {
        width: 50px;
        min-width: 50px;
        height: 50px;
        font-size: clamp(1.5rem, 2.4vw, 2rem);
    }

    .cbp-item-head {
        gap: 14px;
    }

    .cbp-item-head h3 {
        font-size: clamp(1.375rem, 2.6vw, 2.25rem);
    }

    .cbp-points {
        margin-inline-start: 68px;
    }

    .cbp-points li {
        font-size: clamp(1rem, 1.4vw, 1.125rem);
        padding-inline-start: 25px;
    }

    .cbp-points li::before {
        font-size: 1rem;
    }

    .cbp-cta-wrap {
        padding-inline-start: 68px;
    }

    .cbp-cta-btn {
        min-width: 176px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .cbp-item-head {
        gap: 12px;
        margin-bottom: 12px;
    }

    .cbp-number {
        width: 43px;
        min-width: 43px;
        height: 43px;
        font-size: clamp(1.5rem, 2.4vw, 2rem);
    }

    .cbp-item-head h3 {
        font-size: clamp(1.375rem, 2.6vw, 2.25rem);
    }

    .cbp-points {
        margin-inline-start: 0;
    }

    .cbp-points li {
        font-size: clamp(1rem, 1.4vw, 1.125rem);
        padding-inline-start: 22px;
    }

    .cbp-points li::before {
        font-size: 1rem;
        top: 1px;
    }

    .cbp-cta-wrap {
        padding-inline-start: 0;
    }

    .cbp-cta-btn {
        min-width: 168px;
        height: 48px;
        font-size: 15px;
    }
}

