.features-grid.three-steps .feature-card {
    position: relative;
    overflow: hidden;
}

.features-grid.three-steps .feature-card::after {
    position: absolute;
    z-index: 0;
    top: 13px;
    right: 22px;
    color: #e8efea;
    font-size: 55px;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.features-grid.three-steps .feature-card:nth-child(1)::after {
    content: "01";
}

.features-grid.three-steps .feature-card:nth-child(2)::after {
    content: "02";
}

.features-grid.three-steps .feature-card:nth-child(3)::after {
    content: "03";
}

.features-grid.three-steps .feature-card > img.step-icon {
    position: relative;
    z-index: 1;
    display: block;
    box-sizing: border-box;
    width: 82px;
    height: 82px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid #dbe9d5;
    border-radius: 22px;
    background: #eff8eb;
    box-shadow: 0 10px 26px rgba(87, 156, 58, 0.1);
    object-fit: contain;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.features-grid.three-steps .feature-card:hover > img.step-icon {
    background: #e9f5e4;
    box-shadow: 0 14px 30px rgba(87, 156, 58, 0.16);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 480px) {
    .features-grid.three-steps .feature-card > img.step-icon {
        width: 74px;
        height: 74px;
        padding: 14px;
        border-radius: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .features-grid.three-steps .feature-card > img.step-icon {
        transition: none;
    }
}
