
    :root {
        --gi-brand-red: #ff0000;
        --gi-text-dark: #2c2c2c;
        --gi-text-title: #555555;
        --gi-text-grey: #666666;
        --gi-border-light: #e8ebee;
        --gi-bg-light: #f7f9fa;
        --gi-font-primary: 'Open Sans', sans-serif;
        --gi-font-display: 'Open Sans', sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .vv-page {
        font-family: var(--gi-font-primary);
        color: var(--gi-text-dark);
        background: #fff;
        line-height: 1.6;
    }

    .vv-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ============================================================
   1. HERO SECTION
   ============================================================ */
    .vv-hero {
        position: relative;
        height: 440px;
        overflow: hidden;
        background: #fff;
        border-bottom: 1px solid var(--gi-border-light);
    }

    .vv-hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .vv-hero-split {
        display: grid;
        grid-template-columns: 45% 55%;
        width: 100%;
        height: 100%;
        align-items: center;
    }

    .vv-hero-textbox {
        padding-right: 40px;
    }

    .vv-hero-textbox h1 {
        font-family: var(--gi-font-primary);
        font-size: 2.3rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--gi-text-title);
        margin-bottom: 20px;
    }

    .vv-hero-textbox p {
        font-size: 0.95rem;
        color: var(--gi-text-grey);
        line-height: 1.6;
        margin-bottom: 35px;
    }

    .vv-hero-image-side {
        height: 100%;
        position: relative;
    }

    .vv-hero-image-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    /* Diagonal faded overlay mimicking the original image soft transition */
    .vv-hero-image-side::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 150px;
        background: linear-gradient(to right, #ffffff, transparent);
        z-index: 1;
    }

    .vv-btn-red {
        display: inline-block;
        background-color: var(--gi-brand-red);
        color: #fff;
        text-decoration: none;
        padding: 12px 28px;
        border-radius: 4px;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        transition: background 0.2s;
    }

    .vv-btn-red:hover {
        background: #b8001a;
    }

    /* ============================================================
   2. PRÉSENTATION SECTION
   ============================================================ */
    .vv-presentation {
        padding: 70px 0;
        background: #fff;
    }

    .vv-section-title {
        font-family: var(--gi-font-primary);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--gi-text-title);
        margin-bottom: 35px;
    }

    .vv-presentation-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
        gap: 25px;
        align-items: stretch;
    }

    .vv-pres-text-block {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .vv-pres-text-block p {
        font-size: 0.92rem;
        color: var(--gi-text-grey);
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .vv-img-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        height: 100%;
    }

    .vv-img-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .vv-pres-text-block .vv-img-card {
        height: 180px;
    }

    /* ============================================================
   3. NOS PRESTATIONS DE CÂBLAGE
   ============================================================ */
    .vv-prestations {
        padding: 70px 0;
        background: var(--gi-bg-light);
        border-top: 1px solid var(--gi-border-light);
        border-bottom: 1px solid var(--gi-border-light);
    }

    .vv-steps-container {
        background: #fff;
        border: 1px solid var(--gi-border-light);
        border-radius: 18px;
        padding: 40px 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    .vv-steps-flow {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .vv-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 12px;
        position: relative;
    }

    /* Border separator lines between columns */
    .vv-step:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: var(--gi-border-light);
    }

    .vv-step-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vv-step-icon svg {
        width: 100%;
        height: 100%;
    }

    .vv-step p {
        font-size: 0.8rem;
        color: var(--gi-text-grey);
        line-height: 1.5;
        font-weight: 600;
    }
    .vv-icons-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0 18px 0;
    margin-top: 24px;
}

.vv-icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.vv-icon-item:hover {
    opacity: 0.85;
}

.vv-icon-item img {
    object-fit: contain;
    /* converts colored SVGs to grey to match Image 1 */
    filter: grayscale(100%) brightness(0.7);
}

    /* ============================================================
   4. VALEUR AJOUTÉE & APPORTS
   ============================================================ */
    .vv-valeur {
        padding: 70px 0;
        background: #fff;
    }

    .vv-valeur-split {
        display: grid;
        grid-template-columns: 45% 55%;
        gap: 40px;
        align-items: center;
    }

    .vv-valeur-text h2 {
        font-family: var(--gi-font-primary);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--gi-text-title);
        margin-bottom: 25px;
    }

    .vv-valeur-list {
        margin-top: 60px;
        margin-left: -6%;
        list-style: none;
        margin-bottom: 35px;
    }

    .vv-valeur-list li {
        font-size: 0.95rem;
        color: var(--gi-text-dark);
        font-weight: 600;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .vv-valeur-list li::before {
        content: '•';
        color: var(--gi-brand-red);
        font-size: 1.5rem;
        line-height: 1;
    }

    .vv-valeur-icons {
        display: flex;
        gap: 20px;
    }

    .vv-valeur-icon-item {
        width: 42px;
        height: 42px;
        border: 1px solid #ccc;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vv-valeur-icon-item svg {
        width: 22px;
        height: 22px;
        fill: var(--gi-text-grey);
    }

    .vv-valeur-image-side {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .vv-valeur-image-side img {
        width: 100%;
        display: block;
    }

    /* ============================================================
   5. POINTS FORTS
   ============================================================ */
    .vv-points-forts {
        padding: 70px 0;
        background: #fff;
        border-top: 1px solid var(--gi-border-light);
    }

    .vv-pf-grid-top {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .vv-pf-grid-bottom {
        display: flex;
        justify-content: center;
    }
.vv-pf-card {
    background: var(--gi-border-light);
    border: 1px solid var(--gi-border-light);
    border-radius: 18px;
    padding: 50px 25px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}



    /* .vv-pf-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 7px;
        background: var(--gi-brand-red);
        border-radius: 6px 0 0 6px;
        height: 100%;
    } */

    .vv-pf-card h3 {
        font-family: var(--gi-font-primary);
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--gi-text-grey);
        line-height: 1.5;
        text-align: center;
    }

    .vv-pf-grid-bottom .vv-pf-card {
        width: 100%;
    }

    /* ============================================================
   6. RED CTA BANNER
   ============================================================ */
    .vv-cta-banner {
        background: var(--gi-brand-red);
        padding: 35px 20px;
        text-align: center;
    }

    .vv-cta-banner h2 {
        font-family: var(--gi-font-primary);
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.5px;
    }

    /* ============================================================
   RESPONSIVE DESIGN SYSTEM
   ============================================================ */
    @media (max-width: 992px) {
        .vv-hero {
            height: auto;
            padding: 40px 0;
        }

        .vv-hero-split {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .vv-hero-textbox {
            padding-right: 0;
            text-align: center;
        }

        .vv-hero-image-side {
            height: 300px;
        }

        .vv-hero-image-side::before {
            display: none;
        }

        .vv-presentation-grid {
            grid-template-columns: 1fr;
        }

        .vv-presentation-grid>div {
            min-height: 250px;
        }

        .vv-steps-flow {
            flex-direction: column;
            gap: 30px;
        }

        .vv-step {
            width: 100%;
            padding: 20px 0;
        }

        .vv-step(:not(:last-child))::after {
            display: none;
        }

        .vv-valeur-split {
            grid-template-columns: 1fr;
        }

        .vv-pf-grid-top {
            grid-template-columns: 1fr;
        }
    }
