/* HOW IT WORKS – стили только для блока */
.process {
    padding: 100px 60px;
	margin-bottom: 0px !important;
    width: 100% !important;
    max-width: 100% !important;
    /*background: var(--steel);*/
	background: #141414;

}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    /*margin-top: 60px;*/
}

.step {
	background: var(--bg2);
    padding: 36px 28px;
    position: relative;
    transition: background .2s;
}

.step:hover {
    border-color: rgba(57, 167, 81, 0.3);
}

.step-num {
    /*
	font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(57,167,81,0.12);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
    letter-spacing: 1px;
	*/

	    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: rgba(34, 197, 94, .08);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}

.step-icon {
	width: 40px;
    height: 40px;
    background: rgba(57, 167, 81, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    stroke-width: 1.5;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: .2px;
}

.step-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process {
        padding: 60px 20px;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
}