/*
 * Process Steps Section
 * How Our Link Building Solutions Work - Step-by-step process display
 *
 * @package RankExpert
 * @since 1.0.0
 */

.process-steps-section {
    background: #F5F7FA;
    padding: 80px 0;
}

.process-steps-section .section-title {
    font-size: 44px;
    line-height: 52px;
    font-weight: 600;
    text-align: center;
    color: #2D3E50;
    margin: 0 0 64px 0;
    letter-spacing: -0.5px;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.process-step-item {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.process-step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-step-item.has-arrow::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #4F46E5;
    opacity: 0.4;
    z-index: 1;
}

.step-number {
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    color: #E8E9F3;
    margin: 0 0 24px 0;
    letter-spacing: -2px;
}

.step-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #2D3E50;
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
}

.step-description {
    font-size: 16px;
    line-height: 24px;
    color: #646570;
    margin: 0;
    flex: 1;
}

.step-arrow {
    display: none;
}

.process-cta {
    text-align: center;
    margin-top: 24px;
}

.button-large {
    padding: 16px 48px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.button-large:hover {
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

/* Responsive Design */
@media (max-width: 1023px) {
    .process-steps-section {
        padding: 60px 0;
    }
    
    .process-steps-section .section-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 48px;
    }
    
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 48px;
    }
    
    .process-step-item.has-arrow::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-steps-section {
        padding: 48px 0;
    }
    
    .process-steps-section .section-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 40px;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .process-step-item {
        padding: 32px 24px;
    }
    
    .step-number {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .step-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    
    .step-description {
        font-size: 15px;
        line-height: 22px;
    }
    
    .button-large {
        padding: 14px 36px;
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .process-steps-section {
        padding: 40px 0;
    }
    
    .process-step-item {
        padding: 28px 20px;
    }
    
    .button-large {
        width: 100%;
        padding: 14px 24px;
    }
}

