        /* ========== Секция результатов ========== */
        .results-section {
            margin: -40px auto 60px;
            padding: 60px 20px 40px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        /* Общий контейнер — ограничиваем ширину */
        .results-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-grid-top {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .features-grid-bottom {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        /* Стили карточки */
        .feature-card {
            background: #fdf9f9;
            border-radius: 12px;
            padding: 28px 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.25s, box-shadow 0.25s;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-height: 280px;
            justify-content: center;
            width: 100%;
            max-width: 380px;
            box-sizing: border-box;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }

        .feature-card .feature-title {
            color: #e03e3e;
            font-weight: bold;
            font-size: 1.25rem;
            margin: 16px 0 12px;
        }

        .feature-card .feature-desc {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.5;
            overflow-wrap: break-word; /* перенос длинных слов */
        }

        /* Круглая иконка — гарантируем форму */
        .feature-card .feature-image {
            width: 100px;
            height: 100px;
            min-width: 100px;
            min-height: 100px;
            aspect-ratio: 1 / 1; /* ключевая защита от овала */
            margin-bottom: 16px;
            border-radius: 50%;
            overflow: hidden;
            background-color: #f5f0e6;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            flex-shrink: 0; /* не сжиматься в flex */
        }

        .feature-card .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Адаптация под мобильные */
        @media (max-width: 991px) {
            .features-grid-top,
            .features-grid-bottom {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .features-grid-top,
            .features-grid-bottom {
                grid-template-columns: 1fr;
            }

            .feature-card {
                width: 100%;
                min-width: 280px; /* не даём карточке стать слишком узкой */
                padding: 24px 16px;
            }

            .feature-card .feature-image {
                width: 100px;
                height: 100px;
                min-width: 60px;
                min-height: 60px;
            }
        }
