/* benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.benefit-card {
    position: relative;
    min-height: 180px;
    padding: 20px 20px 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.benefit-card h3, .benefit-card p {
    width: 65%;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #e9ecf9;
    color: var(--blue);
    font-size: 14px;
}

.benefit-icon img {
    width: 20px;
    height: 20px;
}

.benefit-num {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 36px;
    color: #e7ebf3;
    font-weight: 600;
}

.benefit-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--text-dark);
}

.benefit-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
    margin-top: auto;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-card .card-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}