/* Секция "Как мы работаем" */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.process-badge {
    display: inline-block;
    background: #E8F2FF;
    color: #2160FE;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid #2160FE;
    margin-bottom: 20px;
}

.process-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 60px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.process-card {
    background: white;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2160FE 0%, #4A90E2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card-content {
    text-align: left;
}

.process-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.process-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.process-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.process-cta-button {
    background: linear-gradient(135deg, #2160FE 0%, #4A90E2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(33, 96, 254, 0.3);
    text-align: center;
    min-width: 400px;
}

.process-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(33, 96, 254, 0.4);
    background: linear-gradient(135deg, #1a4fd4 0%, #3a7bc8 100%);
}

.process-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(33, 96, 254, 0.3);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .process-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-container {
        padding: 0 15px;
    }
    
    .process-badge {
        text-align: left !important;
    }
    
    .process-title {
        font-size: 28px;
        margin-bottom: 40px;
        text-align: left !important;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .process-card {
        padding: 24px 20px;
    }
    
    .process-card-title {
        font-size: 18px;
    }
    
    .process-cta-button {
        min-width: auto;
        width: 100%;
        max-width: 400px;
        padding: 16px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .process-badge {
        text-align: left !important;
    }
    
    .process-title {
        font-size: 24px;
        text-align: left !important;
    }
    
    .process-card {
        padding: 20px 16px;
    }
    
    .process-card-title {
        font-size: 16px;
    }
    
    .process-card-description {
        font-size: 13px;
    }
    
    .process-cta-button {
        padding: 14px 24px;
        font-size: 14px;
    }
}
