.gradient-section {
    background: linear-gradient(180deg, #4FA6F2 0%, #4BE5BF 100%);
    width: 100%;
    padding: 120px 0 264px;
    position: relative;
}
.gradient-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 40px; /* визуальная “юбка” снизу */
    background: var(--bg);
    border-top-left-radius: 1000px 40px;
    border-top-right-radius: 1000px 40px;
}

/* Absolute features band pinned to gradient-section bottom */
.gradient-section__features {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -70px; /* немного нависает над следующим блоком */
    z-index: 2;
}
.gradient-section__features .container {
    pointer-events: none; /* чтоб не мешал плавать ховерам вокруг, при необходимости убрать */
}
.gradient-section__features .features-grid {
    pointer-events: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}
.features-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 20px 30px 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 195px;
    gap: 5px;
}
.features-card__title {
    margin: 0;
    color: #4FA6F2;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.15;
}
.features-card__text {
    margin: 0;
    color: var(--text);
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.2;
}
