/* How It Works specific styles */
.how-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--light) 0%, rgba(108, 99, 255, 0.05) 100%);
    text-align: center;
}

.how-hero h1 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--dark) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-section {
    padding: 50px 0;
    background: white;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.step.reverse {
    flex-direction: row-reverse;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    max-width: 500px;
}

.step-image {
    flex-shrink: 0;
}

.step-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 100%;
}

@media (max-width: 992px) {

    .step,
    .step.reverse {
        flex-direction: column;
        text-align: center;
    }

    .step-content p {
        max-width: none;
    }
}