.trust {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.trust__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.trust__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust__content {
    position: relative;
    z-index: 2;
}

.trust__title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 55px;
    line-height: 64px;
    color: #5C075E;
    margin-bottom: 48px;
}

.trust__cards {
    display: grid;
    grid-template-columns: repeat(2, 382px);
    gap: 24px;
    margin-bottom: 48px;
}

.trust__card {
    background: rgba(252, 245, 252, 1);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-height: 222px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(141, 42, 143, 0.15);
}

.trust__card-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(151, 53, 153, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    color: rgba(255, 255, 255, 1);
    flex-shrink: 0;
}

.trust__card-text {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    color: rgba(92, 7, 94, 1);
    margin: 0;
    margin-top: auto;
}

.trust__card-text p {
    margin: 0;
}

.trust__cta {
    display: flex;
    align-items: center;
    gap: 48px;
}

.trust__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    background: linear-gradient(180deg, #C05FC2 0%, #8D2A8F 100%);
    border-radius: 12px;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.trust__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(141, 42, 143, 0.3);
}

.trust__messengers {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust__messengers-text {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: rgba(142, 70, 143, 1);
    margin: 0;
}

.trust__socials {
    display: flex;
    gap: 21px;
    align-items: center;
}

.trust__social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.trust__social-link:hover {
    transform: scale(1.1);
}

.trust__social-icon {
    width: 38px;
    height: 38px;
}

@media (max-width: 1024px) {

    .trust__title {
        font-size: 34px;
        line-height: 46px;
        font-weight: 700;
        margin-bottom: 35px;
    }

    .trust__cards {
        grid-template-columns: repeat(2, 276px);
        gap: 20px;
        margin-bottom: 25px;
    }

    .trust__card {
        padding: 20px;
        min-height: 159px;
        border-radius: 20px;
    }

    .trust__card-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        line-height: 22px;
    }

    .trust__card-text {
        font-size: 16px;
        line-height: 22px;
    }

    .trust__cta {
        gap: 35px;
        align-items: flex-end;
    }

    .trust__button {
        padding: 10px 22px;
        font-size: 12px;
        line-height: 16px;
        border-radius: 8px;
    }

    .trust__messengers-text {
        font-size: 14px;
        line-height: 19px;
    }

    .trust__social-link {
        width: 36px;
        height: 36px;
    }

    .trust__socials {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .trust__title {
        font-size: 24px;
        line-height: 27px;
        margin-bottom: 25px;
    }

    .trust__cards {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 5px;
    }

    .trust__card {
        padding: 15px 0;
        min-height: auto;
        border-radius: 0;
        background: transparent;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .trust__card:hover {
        transform: none;
        box-shadow: none;
    }

    .trust__card-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        line-height: 22px;
    }

    .trust__card-text {
        font-size: 16px;
        line-height: 22px;
        margin-top: 0;
    }

    .trust__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .trust__button {
        width: 100%;
        padding: 10px 20px;
        font-size: 12px;
        line-height: 16px;
        border-radius: 8px;
        background: #FEFAFF;
    }

    .trust__button span {
        background: linear-gradient(180deg, #C05FC2 0%, #8D2A8F 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    .trust__messengers {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .trust__messengers-text {
        font-size: 14px;
        line-height: 19px;
        font-size: 0;
    }

    .trust__messengers-text::before {
        content: "Или напишите нам:";
        font-size: 14px;
        line-height: 19px;
    }

    .trust__social-link {
        width: 36px;
        height: 36px;
    }

    .trust__socials {
        gap: 15px;
    }
}