/* --- PAGE IMPACT --- */
.impact-page {
    background-color: var(--beige); /* #f5f3ee */
    padding-top: 120px; /* Espace pour le header fixe */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
}

/* --- HERO SECTION --- */
.impact-hero {
    padding: 60px 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text { flex: 1; }
.hero-image { flex: 1; }

.hero-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-lux); /* Utilise ton ombre de global.css */
}

/* --- ZIGZAG SYSTEM --- */
.zigzag-container {
    padding: 100px 0;
    background-color: var(--beige); /* On peut mettre les rangées sur fond blanc pour détacher */
    border-radius: 60px 60px 0 0;
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
    padding: 0 6vw;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-column {
    flex: 1;
}

.impact-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.zigzag-text {
    padding: 20px;
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.15); /* Doré très transparent */
    display: block;
    margin-bottom: -20px;
}

.zigzag-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.zigzag-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-flex, .zigzag-row, .zigzag-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .impact-img {
        height: 100%;
        width: 100%;
        aspect-ratio: 4/3;
        border-radius: 30px;
    }
    
    .zigzag-text h2 {
        font-size: 1.8rem;
    }
}