.results {
    padding: 100px 0;
    background: transparent;
    /* Прозрачный фон для чередования */
    position: relative;
    overflow: hidden;
}

.results__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.results__title {
    text-align: center;
    font-size: 2.5rem;
    color: #00f5d4;
    margin-bottom: 15px;
}

.results__subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.results__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.results__number {
    position: relative;
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    color: #00f5d4;
    margin-bottom: 10px;
    font-family: 'Expletus Sans', sans-serif;
    padding-right: 1.5rem;
    /* Добавляем место для знака % */
}

.results__percent {
    font-size: 1.8rem;
    /* Уменьшаем размер */
    position: absolute;
    top: 0.2rem;
    /* Смещаем выше */
    right: 0;
    line-height: 1;
}

.results__label {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.results__description {
    color: #94a3b8;
    font-size: 1rem;
}

.results__cases {
    max-width: 800px;
    margin: 0 auto;
}

.results__cases-title {
    text-align: center;
    font-size: 1.8rem;
    color: #00f5d4;
    margin-bottom: 40px;
}

.results__case {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(3px);
    border-radius: 12px;
    border-left: 3px solid;
    transition: all 0.3s ease;
}

.results__case:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 245, 212, 0.1);
}

.results__case:nth-child(1) {
    border-left-color: #00f5d4;
}

.results__case:nth-child(2) {
    border-left-color: #00bbf9;
}

.results__case:nth-child(3) {
    border-left-color: #9d4edd;
}

.results__case-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.results__case-content {
    flex: 1;
}

.results__case-title {
    font-size: 1.4rem;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.results__case-text {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Анимированные фоновые круги */
.results__circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.results__circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1), transparent);
    opacity: 0.3;
    animation: float 15s infinite linear;
}

.results__circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-duration: 20s;
}

.results__circle:nth-child(2) {
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -250px;
    animation-duration: 25s;
    animation-delay: 5s;
}

.results__circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 20px) rotate(90deg);
    }

    50% {
        transform: translate(40px, 0) rotate(180deg);
    }

    75% {
        transform: translate(20px, -20px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .results__stats {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
}

@media (max-width: 768px) {
    .results {
        padding: 60px 0;
    }

    .results__title {
        font-size: 2rem;
    }

    .results__subtitle {
        font-size: 1rem;
    }

    .results__number {
        font-size: 3rem;
        padding-right: 1.2rem;
    }

    .results__percent {
        font-size: 1.2rem;
        top: 0.1rem;
    }

    .results__case {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}