/* Section Comment ça marche - Basée sur le design Figma */
.heho-how-it-works {
    background: var(--color-black);
    padding: 100px 0;
}

.heho-how-it-works__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Section principale */
.heho-how-it-works__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.heho-how-it-works__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 346px;
    flex-shrink: 0;
}

.heho-how-it-works__title {
    font-family: var(--font-accent);
    font-size: var(--font-h2-desktop);
    color: var(--color-white);
    line-height: var(--line-height-normal);
}

.heho-how-it-works__title .italic {
    font-weight: 300;
    font-style: italic;
}

.heho-how-it-works__title .bold {
    font-weight: 700;
}

.heho-how-it-works__description {
    font-family: var(--font-base);
    font-size: var(--font-text-desktop);
    color: var(--color-muted);
    line-height: var(--line-height-normal);
}

.heho-how-it-works__visual {
    background: var(--gradient-orange-overlay);
    border-radius: 10px;
    width: 882px;
    height: 413px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.heho-how-it-works__visual-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 75px 0 75px;
    width: 389px;
    z-index: 2;
}

.heho-how-it-works__visual-title {
    font-family: var(--font-accent);
    font-weight: 600;
    font-style: italic;
    font-size: var(--font-h5-desktop);
    color: var(--color-white);
    text-transform: uppercase;
}

.heho-how-it-works__visual-text {
    font-family: var(--font-base);
    font-size: var(--font-text-desktop);
    color: var(--color-white);
    line-height: var(--line-height-normal);
}

.heho-how-it-works__visual-image {
    position: absolute;
    right: -50px;
    top: 0;
    width: 543px;
    height: 413px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
}

/* Section des étapes */
.heho-how-it-works__steps {
    display: flex;
    gap: 50px;
}

.heho-how-it-works__step {
    background: var(--gradient-orange-overlay);
    border-radius: 10px;
    width: 616px;
    height: 648px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.heho-how-it-works__step-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heho-how-it-works__step-title {
    font-family: var(--font-accent);
    font-weight: 600;
    font-style: italic;
    font-size: var(--font-h5-desktop);
    color: var(--color-white);
    text-transform: uppercase;
}

.heho-how-it-works__step-text {
    font-family: var(--font-base);
    font-size: var(--font-text-desktop);
    color: var(--color-white);
    line-height: var(--line-height-normal);
    height: 78px;
}

.heho-how-it-works__step-image {
    flex: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 35px;
    min-height: 200px;
}

/* Responsive */
@media (max-width: 1400px) {
    .heho-how-it-works__visual {
        width: 700px;
        height: 350px;
    }
    
    .heho-how-it-works__visual-image {
        width: 450px;
        height: 350px;
    }
    
    .heho-how-it-works__step {
        width: 500px;
        height: 550px;
    }
}

@media (max-width: 1200px) {
    .heho-how-it-works__main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .heho-how-it-works__content {
        width: 100%;
        max-width: 500px;
    }
    
    .heho-how-it-works__visual {
        width: 100%;
        max-width: 800px;
        height: 300px;
    }
    
    .heho-how-it-works__steps {
        flex-direction: column;
        align-items: center;
    }
    
    .heho-how-it-works__step {
        width: 100%;
        max-width: 600px;
        height: auto;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .heho-how-it-works {
        padding: 50px 0;
    }
    
    .heho-how-it-works__inner {
        gap: 30px;
    }
    
    .heho-how-it-works__main {
        gap: 30px;
    }
    
    .heho-how-it-works__title {
        font-size: var(--font-h2-mobile);
    }
    
    .heho-how-it-works__description {
        font-size: var(--font-text-mobile);
    }
    
    .heho-how-it-works__visual {
        height: 250px;
    }
    
    .heho-how-it-works__visual-content {
        padding: 0 30px;
        width: 100%;
    }
    
    .heho-how-it-works__visual-title {
        font-size: var(--font-h5-mobile);
    }
    
    .heho-how-it-works__visual-text {
        font-size: var(--font-text-mobile);
    }
    
    .heho-how-it-works__visual {
        background: var(--gradient-orange-overlay);
        padding: 30px;
        text-align: center;
    }
    
    .heho-how-it-works__visual-image {
        display: none;
    }
    
    .heho-how-it-works__steps {
        gap: 30px;
    }
    
    .heho-how-it-works__step {
        min-height: 400px;
    }
    
    .heho-how-it-works__step-content {
        padding: 30px;
    }
    
    .heho-how-it-works__step-title {
        font-size: var(--font-h5-mobile);
    }
    
    .heho-how-it-works__step-text {
        font-size: var(--font-text-mobile);
        height: auto;
    }
}