.approach-process {
border-radius: 20px;
    background: linear-gradient(180deg, #edeefe 0%, #c6c8f6 58%, #9fa5f0 100%);
}


.approach-process__inner {
    padding: 56px 30px 100px;
/*     border-radius: 20px;
    background: linear-gradient(180deg, #edeefe 0%, #c6c8f6 58%, #9fa5f0 100%); */
}

.approach-process__head {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(420px, 1.4fr);
    gap: 28px;
    align-items: start;
}

.approach-process__title {
    margin: 0;
    font-size: 50px;
    line-height: 1.06;
    font-weight: 600;
    color: #4a5fe6;
}

.approach-process__lead {
    margin: 0;
    max-width: 740px;
    font-size: 16px;
    line-height: 1.35;
    color: #2f3443;
}

.approach-process__cards {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.approach-process__card {
    min-height: 186px;
    padding: 20px 20px 22px;
    border-radius: 20px;
    border: 1px solid rgba(151, 165, 232, 0.45);
    background: #f4f5fd;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 14px;
    row-gap: 10px;
    align-content: start;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.approach-process__card--accent {
    border-color: rgba(106, 123, 242, 0.55);
    background: linear-gradient(140deg, #3e57f8 0%, #9e9fe2 100%);
}

.approach-process__card-number {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: static;
    display: block;
    align-self: start;
    justify-self: start;
    margin: -5px 0 0;
    font-size: 80px;
    line-height: 1;
    font-weight: 500;
    color: #c5cdf7;
    transition: color 0.25s ease;
}

.approach-process__card-title {
    grid-column: 2;
    grid-row: 1;
    position: static;
    margin: 0;
    align-self: start;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 600;
    color: #2f3443;
    transition: color 0.25s ease;
}

.approach-process__card-text {
    grid-column: 2;
    grid-row: 2;
    position: static;
    align-self: start;
    margin: 0;
    font-size: 16px;
	font-weight:400;
    line-height: 1.28;
    color: #757b8c;
    transition: color 0.25s ease;
}

.approach-process__card:hover,
.approach-process__card:focus-within {
    border-color: rgba(106, 123, 242, 0.55);
    background: linear-gradient(140deg, #3e57f8 0%, #9e9fe2 100%);
}

.approach-process__card:hover .approach-process__card-number,
.approach-process__card:focus-within .approach-process__card-number {
    color: rgba(255, 255, 255, 0.85);
}

.approach-process__card:hover .approach-process__card-title,
.approach-process__card:hover .approach-process__card-text,
.approach-process__card:focus-within .approach-process__card-title,
.approach-process__card:focus-within .approach-process__card-text {
    color: #f5f7ff;
}

.approach-process__card--accent .approach-process__card-number {
    color: rgba(255, 255, 255, 0.85);
}

.approach-process__card--accent .approach-process__card-title,
.approach-process__card--accent .approach-process__card-text {
    color: #f5f7ff;
}

.approach-process__work {
    margin-top: 200px;
	display:flex;
	justify-content:space-between;
    gap: 36px;
    align-items: start;
}

.approach-process__work-title {
    margin: 0;
    font-size: 56px;
    line-height: 0.95;
	width:300px;
    font-weight: 600;
    color: #4a5fe6;
}

.approach-process__timeline {
    position: relative;
}

.approach-process__line {
    position: absolute;
    left: 29px;
    top: 16px;
    bottom: 20px;
    width: 15px;
    height: calc(100% - 36px);
    object-fit: fill;
}

.approach-process__steps {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.approach-process__step {
    display: grid;
    grid-template-columns: 74px minmax(0, 510px);
    column-gap: 14px;
    align-items: center;
}

.approach-process__step-icon {
    width: 74px;
    height: 74px;
}

.approach-process__step-content {
    max-width: 510px;
}

.approach-process__step-title {
    margin: 0;
    font-size: 28px;
    line-height: 0.9;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #2600e5;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .approach-process__step-title {
        background: linear-gradient(90deg, #15007f 0%, #2600e5 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.approach-process__step-text {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.25;
    color: #4d5568;
	width:400px;
}

@media (max-width: 1440px) {
    .approach-process__title {
        font-size: 44px;
    }

    .approach-process__card-title {
        font-size: 26px;
    }

    .approach-process__work-title {
        font-size: 44px;
    }

    .approach-process__step-title {
        font-size: 26px;
    }
	.approach-process__card{
		grid-template-columns: 50px minmax(0, 1fr);
	}
	
}

@media (max-width: 1024px) {
    .approach-process {
        padding: 0 0 70px;
    }

    .approach-process__inner {
        padding: 36px 22px;
    }

    .approach-process__head {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .approach-process__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .approach-process__work {
        margin-top: 44px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .approach-process__work-title {
        font-size: 42px;
		width:100%;
    }

}

@media (max-width: 768px) {
    .approach-process {
        padding: 0 0 48px;
    }

    .approach-process__inner {
        padding: 26px 14px;
        border-radius: 14px;
    }

    .approach-process__title {
        font-size: 34px;
    }

    .approach-process__lead {
        font-size: 13px;
    }

    .approach-process__cards {
        grid-template-columns: 1fr;
        margin-top: 20px;
        gap: 10px;
    }

    .approach-process__card {
        min-height: 0;
        padding: 16px 14px;
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 10px;
        row-gap: 8px;
    }

    .approach-process__card-number {
        font-size: 48px;
        margin-top: -2px;
    }

    .approach-process__card-title {
        font-size: 24px;
        margin-top: 0;
    }

    .approach-process__card-text {
        font-size: 13px;
        margin-top: 0;
    }

    .approach-process__work {
        margin-top: 28px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .approach-process__work-title {
        font-size: 34px;
        width: auto;
    }

    .approach-process__line {
        left: 24px;
        width: 12px;
    }

    .approach-process__step {
        grid-template-columns: 62px minmax(0, 1fr);
        column-gap: 12px;
        align-items: start;
    }

    .approach-process__step-icon {
        width: 62px;
        height: 62px;
    }

    .approach-process__step-title {
        font-size: 24px;
        line-height: 1;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .approach-process__step-text {
        font-size: 13px;
        width: auto;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .approach-process__step-content {
        min-width: 0;
        max-width: 100%;
    }

}
