.section-divider {
    padding: 28px 0 34px;
}

.section-divider__inner {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.section-divider__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #eaf8fc;
    color: #0891b2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-divider__title {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.18;
    font-weight: 800;
}

.section-divider__text {
    margin: 0 auto;
    max-width: 760px;
    color: #475569;
    font-size: 17px;
    line-height: 1.75;
}

.section-divider__wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.section-divider__wave span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f766e 0%, #0891b2 55%, #0ea5e9 100%);
    opacity: 0.9;
}

.section-divider__wave span:nth-child(1) {
    width: 56px;
}

.section-divider__wave span:nth-child(2) {
    width: 84px;
}

.section-divider__wave span:nth-child(3) {
    width: 56px;
}

@media (max-width: 768px) {
    .section-divider {
        padding: 24px 0 28px;
    }

    .section-divider__text {
        font-size: 16px;
    }

    .section-divider__wave {
        margin-top: 20px;
        gap: 8px;
    }

    .section-divider__wave span:nth-child(1),
    .section-divider__wave span:nth-child(3) {
        width: 40px;
    }

    .section-divider__wave span:nth-child(2) {
        width: 62px;
    }
}