/* How It Works Hero */
.how-it-works-hero {
    padding: 120px 0 80px;
    background: var(--background);
    text-align: left;
}

.how-it-works-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.how-it-works-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: left;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -1.5rem;
    width: calc(100% - 40px);
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
}

.step-icon i {
    color: white;
    font-size: 2rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--background);
}

.benefits-section h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
}

.benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .step:nth-child(2)::after {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works-hero {
        padding: 100px 0 60px;
    }

    .how-it-works-hero h1 {
        font-size: 2.5rem;
    }

    .process-section,
    .benefits-section {
        padding: 60px 0;
    }

    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step::after {
        display: none;
    }

    .step {
        text-align: center;
    }

    .step-icon,
    .benefit-icon {
        margin: 0 auto 1.5rem;
    }

    .benefit-card {
        text-align: center;
    }

    .benefits-section h2 {
        text-align: center;
        font-size: 2rem;
    }
}
