/* ============================================
   HOW IT WORKS - PROCESS STEPS
   4-step process visualization
   ============================================ */

.how-it-works {
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 24px;
        }

        .how-it-works .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .how-it-works .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #FF6B4A;
            margin-bottom: 16px;
        }

        .how-it-works .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #171717;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .how-it-works .section-subtitle {
            font-size: 18px;
            color: #737373;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .process-container {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        /* Progress line */
        .process-container::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(
                to right,
                #FF6B4A 0%,
                #FF6B4A 33%,
                #E5E5E5 33%,
                #E5E5E5 100%
            );
            z-index: 1;
        }

        .process-step {
            position: relative;
            text-align: center;
            z-index: 2;
        }

        .step-number {
            width: 100px;
            height: 100px;
            margin: 0 auto 24px;
            border-radius: 50%;
            background: white;
            border: 3px solid #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 700;
            color: #171717;
            transition: all 0.4s ease;
            position: relative;
        }

        .process-step:hover .step-number {
            border-color: #FF6B4A;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 107, 74, 0.2);
        }

        /* Active steps (1 and 2) */
        .process-step:nth-child(1) .step-number,
        .process-step:nth-child(2) .step-number {
            border-color: #FF6B4A;
            background: linear-gradient(135deg, #FAFAFA 0%, white 100%);
        }

        .step-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 38px;
        }

        .step-title {
            font-size: 20px;
            font-weight: 600;
            color: #171717;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .step-description {
            font-size: 15px;
            color: #737373;
            line-height: 1.6;
            max-width: 250px;
            margin: 0 auto;
        }

        .step-time {
            display: inline-block;
            margin-top: 12px;
            padding: 6px 14px;
            background: #171717;
            color: white;
            font-size: 12px;
            font-weight: 600;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        /* Mobile responsive */
        @media (max-width: 968px) {
            .how-it-works {
                padding: 80px 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .process-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 60px 30px;
                margin-top: 60px;
            }

            .process-container::before {
                display: none;
            }

            .step-number {
                width: 90px;
                height: 90px;
                font-size: 32px;
            }

            .step-icon {
                font-size: 34px;
            }
        }

        @media (max-width: 640px) {
            .how-it-works {
                padding: 60px 16px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .process-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .step-number {
                width: 80px;
                height: 80px;
                font-size: 28px;
            }

            .step-icon {
                font-size: 30px;
            }

            .step-title {
                font-size: 18px;
            }

            .step-description {
                font-size: 14px;
            }
        }

        /* Demo section */
        .demo-section {
            margin-top: 80px;
            padding: 40px;
            background: white;
            border-radius: 12px;
            border: 2px dashed #E5E5E5;
        }

        .demo-section h3 {
            color: #171717;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .demo-section p {
            color: #737373;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .demo-section code {
            background: #FAFAFA;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 14px;
            color: #FF6B4A;
        }

/* ============================================
   PROCESS TABS - Multi-Service Workflows
   ============================================ */

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 60px;
    flex-wrap: wrap;
}

.process-tab {
    padding: 12px 28px;
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #737373;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-tab:hover {
    border-color: #FF6B4A;
    color: #FF6B4A;
    background: #FFF5F3;
}

.process-tab.active {
    background: #FF6B4A;
    border-color: #FF6B4A;
    color: white;
}

.process-content {
    display: none;
}

.process-content.active {
    display: block;
}

/* Mobile responsive for tabs */
@media (max-width: 640px) {
    .process-tabs {
        flex-direction: column;
        gap: 8px;
        margin: 30px auto 50px;
    }

    .process-tab {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}
