/* Section Sondages - Basée sur le design Figma */
.heho-surveys {
    background: var(--color-black);
    padding: 0;
    overflow: hidden;
}

.heho-surveys__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 827px;
}

.heho-surveys__content {
    flex: 1;
    padding: 0 0 0 210px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 618px;
}

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

.heho-surveys__title .bold {
    font-weight: 700;
}

.heho-surveys__title .italic {
    font-weight: 300;
    font-style: italic;
}

.heho-surveys__subtitle {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: var(--font-h5-desktop);
    color: var(--color-white);
    line-height: var(--line-height-normal);
    height: 62px;
}

.heho-surveys__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heho-surveys__feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.heho-surveys__feature-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.heho-surveys__feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

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

.heho-surveys__cta {
    margin-top: 25px;
}

.heho-surveys__visual {
    width: 1049px;
    height: 827px;
    background-image: url('../images/surveys-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1400px) {
    .heho-surveys__visual {
        width: 800px;
        height: 600px;
    }
    
    .heho-surveys__content {
        padding: 0 0 0 100px;
    }
}

@media (max-width: 1200px) {
    .heho-surveys__inner {
        flex-direction: column;
        min-height: auto;
        padding: 50px 0;
    }
    
    .heho-surveys__content {
        order: 2;
        padding: 0;
        text-align: center;
        max-width: 800px;
    }
    
    .heho-surveys__visual {
        order: 1;
        width: 100%;
        max-width: 600px;
        height: 400px;
    }
    
    .heho-surveys__features {
        align-items: center;
    }
    
    .heho-surveys__feature {
        justify-content: center;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .heho-surveys__inner {
        padding: 30px 0;
    }
    
    .heho-surveys__content {
        gap: 20px;
    }
    
    .heho-surveys__title {
        font-size: var(--font-h2-mobile);
    }
    
    .heho-surveys__subtitle {
        font-size: var(--font-h5-mobile);
        height: auto;
    }
    
    .heho-surveys__visual {
        height: 300px;
    }
    
    .heho-surveys__features {
        gap: 15px;
    }
    
    .heho-surveys__feature-text {
        font-size: var(--font-text-mobile);
    }
    
    .heho-surveys__description {
        font-size: var(--font-text-mobile);
    }
}