.guarantees-section {
    padding: var(--site-pad-y) 0;
    background-color: #F5F5F7;
    color: #000
}

.guarantees-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: #111;
    text-transform: uppercase
}

.guarantees-section .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.5
}

.guarantees-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px
}

.guarantee-item {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: all .3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08)
}

.guarantee-bg-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 140px;
    height: 140px;
    color: #F1F5F9;
    z-index: 0;
    pointer-events: none;
    transition: color .3s ease
}

.guarantee-item:hover .guarantee-bg-icon {
    color: #E2E8F0
}

.guarantee-bg-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1
}

.g-text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1
}

.guarantee-item::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #F5F5F7;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11L11 1M11 1H1M11 1V11' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color .3s;
    z-index: 2
}

.guarantee-item:hover::after {
    background-color: #000;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11L11 1M11 1H1M11 1V11' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.legal-transparency-block {
    grid-column: span 3;
    margin-top: 20px;
    background: #6366F1;
    border-radius: 24px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
    position: relative
}

.legal-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366F1;
    flex-shrink: 0
}

.legal-icon svg {
    width: 24px;
    height: 24px
}

.legal-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap
}

.legal-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    white-space: normal
}

.legal-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: none;
    line-height: 1.4;
    text-align: left;
    word-break: break-word
}

@media(max-width:1024px) {
    .guarantees-list {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .guarantees-list {
        grid-template-columns: 1fr
    }

    .guarantees-section {
        padding: var(--site-pad-y) 0
    }

    .guarantee-item {
        min-height: auto;
        padding: 24px
    }

    .section-title {
        font-size: 2.5rem
    }

    .legal-transparency-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px
    }

    .legal-icon {
        width: 50px;
        height: 50px
    }
}