.fears__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 30px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 90px;
}

/* Вступительный блок */
.fears__intro {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.fears__title {
    font-family: "Evolventa", sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

.fears__title_accent {
    color: #229DA4;
}

.fears__subtitle {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
}

/* Карточка */
.fears__card {
    flex-shrink: 0;
    width: 400px;
    background: #FFF;
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fears__card-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.fears__card-number {
    flex-shrink: 0;
    padding-top: 4px;
    width: 61px;
    height: 59px;
    border: 1px solid #229DA4;
    border-radius: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Evolventa", sans-serif;
    font-size: 31px;
    font-weight: 400;
    line-height: normal;
    color: #229DA4;
}

.fears__card-title {
    flex: 1;
    font-family: "Evolventa", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

/* Список пунктов */
.fears__card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fears__card-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fears__check {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
}

.fears__card-item span {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
}

/* ===== Мобильная версия ===== */
@media (max-width: 767px) {
    .fears__container {
        padding: 40px 20px;
        gap: 16px;
    }

    .fears__intro {
        width: 100%;
        gap: 16px;
    }

    .fears__title {
        font-size: clamp(24px, 7.5vw, 30px);
    }

    .fears__subtitle {
        font-size: 16px;
    }

    .fears__card {
        width: 100%;
        border-radius: 20px;
        padding: 20px;
        gap: 16px;
    }

    .fears__card-header {
        gap: 14px;
    }

    .fears__card-number {
        width: 48px;
        height: 46px;
        font-size: 24px;
        padding-top: 3px;
    }

    .fears__card-title {
        font-size: 20px;
    }

    .fears__card-item span {
        font-size: 16px;
    }

    .fears__check {
        width: 28px;
        height: 28px;
    }

    .fears__card-list {
        gap: 8px;
    }

    .fears__card-item {
        gap: 10px;
    }
}