/* BENEFITS */
.benefits {
    background: #F8F9FD
}
.benefits .section-headline {
    max-width: 558px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 3rem
}

.ben-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid #EAEAEA;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ben-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(57, 1, 174, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.ben-card:hover::before {
    opacity: 1;
}

.ben-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(57, 1, 174, 0.05);
    border-color: rgba(57, 1, 174, 0.2);
}

.ben-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s ease;
}

.ben-card:hover .ben-icon-wrap {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.bi-grad1 {
    background: linear-gradient(135deg, #ffe8d6, #ffd0b5)
}

.bi-grad2 {
    background: linear-gradient(135deg, #e8ecff, #d0d7ff)
}

.bi-grad3 {
    background: linear-gradient(135deg, #e0fff0, #c0ffe0)
}

.bi-grad4 {
    background: linear-gradient(135deg, #ffe8f0, #ffd0e0)
}

.ben-card h4 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #001D3F;
    width: 145px;
    height: 44px;
    margin-bottom: 11px;
    transition: color 0.3s ease;
}

.ben-card:hover h4 {
    color: #3901AE;
}

.ben-card p {
    font-size: 14px;
    line-height: 20px;
    color: #1E1E1E;
    font-weight: 400;
    width: 163px;
}

.ben-card .ben-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .25rem
}