.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.3125rem;
    color: #555;
}

.benefits-list li::before {
    content: '✓';
    background: #9a9b9c;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.8em;
    font-weight: 700;
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ffd615 0%, #3e64eb 100%);
    color: white;
    text-decoration: none;
    border-radius: .625rem;
    font-size: 1.1em;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(62, 100, 235, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(62, 100, 235, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-preview {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.quiz-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd615 0%, #3e64eb 100%);
}

.quiz-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.quiz-steps {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.step {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(62, 100, 235, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.step:nth-child(2) {
    animation-delay: 0.3s;
}

.step:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .text-content h2 {
        font-size: 2em;
    }

    .benefits-list li {
        display: flex;
    }

    .quiz-preview {
        max-width: 300px;
        height: 250px;
    }
}

/*Блок порфолио*/

    .cases-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .case-card {
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.6);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        opacity: 0;
        transform: translateY(30px);

    }

    .case-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .case-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(62, 100, 235, 0.2);
    }

    .case-card:hover .case-image img {
        transform: scale(1.08);
    }

    .case-card:hover .case-arrow {
        transform: translateX(5px);
        opacity: 1;
    }

    .case-image {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16 / 10;
        background: linear-gradient(135deg, #ffd615 0%, #3e64eb 100%);
    }

    .case-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .case-category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        color: #3e64eb;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.75em;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .case-content {
        padding: 25px;
    }

    .case-title {
        font-size: 1.3em;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .case-description {
        font-size: 0.95em;
        color: #666;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .case-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid rgba(62, 100, 235, 0.1);
    }

    .case-link {
        color: #3e64eb;
        font-weight: 600;
        font-size: 0.95em;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease;
    }

    .case-arrow {
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .case-card:hover .case-link {
        color: #ffd615;
    }

    .case-stats {
        display: flex;
        gap: 15px;
    }

    .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-value {
        font-size: 1.1em;
        font-weight: 700;
        color: #3e64eb;
    }

    .stat-label {
        font-size: 0.7em;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .all-cases-btn {
        display: block;
        margin: 0 auto;
        padding: 18px 45px;
        background: linear-gradient(135deg, #ffd615 0%, #3e64eb 100%);
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-size: 1.05em;
        font-weight: 700;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(62, 100, 235, 0.3);
        border: none;
        cursor: pointer;
    }

    .all-cases-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(62, 100, 235, 0.4);
    }

    .all-cases-btn:active {
        transform: translateY(-1px);
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 992px) {
        .cases-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .section-header h2 {
            font-size: 2.3em;
        }
    }

    @media (max-width: 576px) {
        .cases-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .section-header h2 {
            font-size: 1.8em;
        }

        .section-header p {
            font-size: 1em;
        }

        .case-content {
            padding: 20px;
        }
    }