/* Стили только для Process секции */
        .process-section {
            width: 100%;
            padding: 100px 0;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #f9fbfd 50%, 
                #f2f7fc 100%);
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(39, 174, 96, 0.04) 0%, transparent 70%);
            top: -250px;
            left: -250px;
            z-index: 1;
        }

        .process-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(41, 128, 185, 0.04) 0%, transparent 70%);
            bottom: -200px;
            right: -200px;
            z-index: 1;
        }

        .process-section .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .process-section .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .process-section .section-title h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a2a3a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .process-section .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #27ae60, #2ecc71);
            border-radius: 2px;
        }

        .process-section .section-title p {
            font-size: 1.3rem;
            color: #5a6c7d;
            max-width: 600px;
            margin: 25px auto 0;
            line-height: 1.6;
        }

        .process-section .process-flow {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            padding: 40px 0;
        }

        /* Вертикальная линия процесса для десктопов */
        .process-section .flow-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, 
                rgba(39, 174, 96, 0.2) 0%, 
                rgba(46, 204, 113, 0.2) 30%,
                rgba(46, 204, 113, 0.2) 70%,
                rgba(39, 174, 96, 0.2) 100%);
            z-index: 1;
        }

        .process-section .process-steps {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .process-section .process-step {
            background: white;
            border-radius: 20px;
            padding: 35px 25px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 5px 20px rgba(0, 0, 0, 0.05),
                0 1px 5px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            height: 100%;
        }

        .process-section .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.03), rgba(52, 152, 219, 0.03));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .process-section .process-step:hover {
            transform: translateY(-15px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                0 8px 16px rgba(39, 174, 96, 0.1);
            border-color: rgba(39, 174, 96, 0.2);
        }

        .process-section .process-step:hover::before {
            opacity: 1;
        }

        /* Акцентный уголок */
        .process-section .step-corner {
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 40px 40px 0;
            border-color: transparent rgba(39, 174, 96, 0.1) transparent transparent;
            transition: all 0.3s ease;
        }

        .process-section .process-step:hover .step-corner {
            border-color: transparent rgba(39, 174, 96, 0.3) transparent transparent;
        }

        /* Иконка процесса */
        .process-section .step-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(52, 152, 219, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .process-section .step-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.2), rgba(52, 152, 219, 0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .process-section .process-step:hover .step-icon {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(39, 174, 96, 0.15);
        }

        .process-section .process-step:hover .step-icon::before {
            opacity: 1;
        }

        .process-section .step-icon i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .process-section .process-step:hover .step-icon i {
            transform: scale(1.1);
        }

        .process-section .process-step h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a2a3a;
            margin-bottom: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .process-section .process-step h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #27ae60, #2ecc71);
            border-radius: 2px;
            opacity: 0.5;
            transition: width 0.3s ease, opacity 0.3s ease;
        }

        .process-section .process-step:hover h3 {
            color: #27ae60;
        }

        .process-section .process-step:hover h3::after {
            width: 60px;
            opacity: 1;
        }

        .process-section .process-step p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #5a6c7d;
            margin-bottom: 0;
        }

        /* Декоративные элементы */
        .process-section .decor-shape {
            position: absolute;
            opacity: 0.05;
            z-index: 1;
            pointer-events: none;
        }

        .process-section .decor-shape-1 {
            width: 150px;
            height: 150px;
            border-radius: 30px;
            background: #27ae60;
            top: 10%;
            left: 5%;
            transform: rotate(15deg);
            animation: float-shape 20s infinite ease-in-out;
        }

        .process-section .decor-shape-2 {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #3498db;
            bottom: 10%;
            right: 5%;
            animation: float-shape 25s infinite ease-in-out reverse;
        }

        @keyframes float-shape {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(10deg); }
            66% { transform: translateY(20px) rotate(-10deg); }
        }

        /* Анимация появления шагов */
        @keyframes fadeInUpProcess {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .process-section .process-step {
            animation: fadeInUpProcess 0.6s ease forwards;
            opacity: 0;
        }

        .process-section .process-step:nth-child(1) { animation-delay: 0.1s; }
        .process-section .process-step:nth-child(2) { animation-delay: 0.2s; }
        .process-section .process-step:nth-child(3) { animation-delay: 0.3s; }
        .process-section .process-step:nth-child(4) { animation-delay: 0.4s; }
        .process-section .process-step:nth-child(5) { animation-delay: 0.5s; }
        .process-section .process-step:nth-child(6) { animation-delay: 0.6s; }

        /* Адаптивность */
        @media (max-width: 1200px) {
            .process-section .process-steps {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
            
            .process-section .flow-line {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .process-section {
                padding: 80px 0;
            }
            
            .process-section .section-title h2 {
                font-size: 2.4rem;
            }
            
            .process-section .section-title p {
                font-size: 1.2rem;
            }
            
            .process-section .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-section .process-step {
                padding: 30px 20px;
            }
            
            .process-section .step-icon {
                width: 70px;
                height: 70px;
            }
            
            .process-section .step-icon i {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .process-section {
                padding: 70px 0;
            }
            
            .process-section .section-title h2 {
                font-size: 2.2rem;
            }
            
            .process-section .section-title p {
                font-size: 1.1rem;
            }
            
            .process-section .process-steps {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
                gap: 20px;
            }
            
            .process-section .decor-shape {
                display: none;
            }
            
            .process-section .process-step h3 {
                font-size: 1.3rem;
            }
            
            .process-section .process-step p {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 480px) {
            .process-section {
                padding: 60px 0;
            }
            
            .process-section .section-title h2 {
                font-size: 2rem;
            }
            
            .process-section .process-step {
                padding: 25px 20px;
            }
            
            .process-section .step-icon {
                width: 65px;
                height: 65px;
            }
            
            .process-section .step-icon i {
                font-size: 2rem;
            }
        }

        /* Стили для демонстрационного контента (не входят в секцию) */
        .demo-content {
            padding: 60px 20px;
            background-color: #1a2a3a;
            color: white;
        }
        
        .demo-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .demo-content h2 {
            margin-bottom: 20px;
        }