.tdi-guarantee {
    padding: 56px 0 64px;
    background:
        radial-gradient(circle at 18% 35%, rgba(229, 45, 36, 0.055), transparent 32%),
        #030606;
    color: #fff;
}

.tdi-guarantee__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.tdi-guarantee__item {
    position: relative;
    min-height: 176px;
    padding: 32px 30px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 24px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.045), transparent 44%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        #090c0c;
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.tdi-guarantee__item:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 45, 36, 0.45);
    background:
        radial-gradient(circle at top left, rgba(229, 45, 36, 0.09), transparent 44%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
        #0a0d0d;
}

.tdi-guarantee__icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.tdi-guarantee__icon-img {
    width: 52px;
    height: 52px;
    display: block;
    object-fit: contain;
}

.tdi-guarantee__content {
    min-width: 0;
}

.tdi-guarantee__subtitle {
    margin: 0 0 4px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

.tdi-guarantee__title {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: #e52d24;
}

.tdi-guarantee__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.tdi-guarantee__text p {
    margin: 0;
}

.tdi-guarantee__bottom {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.tdi-guarantee__btn {
    min-width: 300px;
    height: 54px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid #e52d24;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.tdi-guarantee__btn:hover {
    transform: translateY(-2px);
    background: rgba(229, 45, 36, 0.12);
    border-color: #ff3a31;
    color: #fff;
}

.tdi-guarantee__btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #e52d24;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 991px) {
    .tdi-guarantee__grid {
        grid-template-columns: 1fr;
    }

    .tdi-guarantee__item {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .tdi-guarantee {
        padding: 42px 0 48px;
    }

    .tdi-guarantee__grid {
        gap: 14px;
        margin-top: 22px;
    }

    .tdi-guarantee__item {
        grid-template-columns: 46px 1fr;
        gap: 16px;
        padding: 22px 20px;
        border-radius: 12px;
    }

    .tdi-guarantee__icon {
        width: 44px;
        height: 44px;
    }

    .tdi-guarantee__icon-img {
        width: 42px;
        height: 42px;
    }

    .tdi-guarantee__subtitle {
        font-size: 15px;
    }

    .tdi-guarantee__title {
        font-size: 24px;
    }

    .tdi-guarantee__text {
        font-size: 14px;
    }

    .tdi-guarantee__btn {
        width: 100%;
        min-width: 0;
    }
}