/* How We Work Section */
.how-we-work-section {
    background: linear-gradient(135deg, #F5F7FA 0%, #FFFFFF 50%, #F5F7FA 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.how-we-work-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 122, 43, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.how-we-work-section .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.how-we-work-header {
    text-align: left;
    margin-bottom: 100px;
    padding-left: 40px;
    border-left: 4px solid #C87A2B;
}

.how-we-work-header .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.how-we-work-header .section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4B5563;
    max-width: 600px;
    font-weight: 300;
}

/* Process Steps Container */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Process Step */
.process-step {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 60px;
    padding: 60px 0;
    position: relative;
    align-items: start;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step:hover {
    padding-left: 20px;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step:hover .step-title {
    color: #C87A2B;
}

/* Step Number */
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(200, 122, 43, 0.2);
    border-radius: 50%;
    position: relative;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(200, 122, 43, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.step-number .number {
    font-size: 2rem;
    font-weight: 200;
    color: #C87A2B;
    letter-spacing: -0.02em;
}

/* Step Content */
.step-content {
    padding-top: 10px;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 400;
    color: #1F2937;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.step-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4B5563;
    margin: 0;
    font-weight: 300;
    max-width: 700px;
}

/* Hide timeline */
.process-timeline {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .how-we-work-section {
        padding: 100px 20px;
    }

    .how-we-work-header {
        margin-bottom: 80px;
        padding-left: 30px;
    }

    .how-we-work-header .section-title {
        font-size: 3rem;
    }

    .process-step {
        grid-template-columns: 100px 1fr;
        gap: 40px;
        padding: 50px 0;
    }

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

    .step-number .number {
        font-size: 1.75rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .how-we-work-section {
        padding: 80px 20px;
    }

    .how-we-work-header {
        margin-bottom: 60px;
        padding-left: 20px;
        border-left-width: 3px;
    }

    .how-we-work-header .section-title {
        font-size: 2.5rem;
    }

    .how-we-work-header .section-description {
        font-size: 1rem;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
        text-align: left;
    }

    .process-step:hover {
        padding-left: 0;
    }

    .step-number {
        width: 70px;
        height: 70px;
        margin: 0;
    }

    .step-number .number {
        font-size: 1.5rem;
    }

    .step-content {
        padding-top: 0;
    }

    .step-title {
        font-size: 1.375rem;
    }

    .step-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .how-we-work-section {
        padding: 60px 15px;
    }

    .how-we-work-header {
        padding-left: 15px;
    }

    .how-we-work-header .section-title {
        font-size: 2rem;
    }

    .process-step {
        padding: 35px 0;
    }

    .step-number {
        width: 60px;
        height: 60px;
    }

    .step-number .number {
        font-size: 1.25rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}