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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: #ffffff;
            overflow-x: hidden;
        }

        .container {
            /* max-width: 1400px; */
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Top Bar */
        .top-bar {
            background: #e71137bf;
            color: white;
            padding: 0.2rem 0;
            font-size: 0.9rem;
            display: none;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-bar-item:hover {
            color: #c9a961;
        }

        .top-bar-icon {
            font-size: 0.8rem;
        }

        .contact-cta {
            background: #c9a961;
            color: white !important;
            padding: 0.4rem 1rem;
            border-radius: 15px;
            font-weight: 600;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .contact-cta:hover {
            background: #b8965c;
            transform: translateY(-1px);
        }


        /* 1bis) Si tu utilises un overlay, mets-le sur un pseudo-élément */
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #00000021 0%, #00000000 100%);
            pointer-events: none;
            /* ne bloque jamais les clics */
            z-index: 0;
        }


        /* Navigation */
        .navbar {
            /* position: fixed; */
            /* Ajusté pour tenir compte de la top bar */
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: all 0.3s ease;
            position: relative;
            /* crée un nouveau contexte de superposition */
            z-index: 1000;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: #2c3e50;
            text-decoration: none;
        }

        .logo-icon {
            width: 212px;
            height: auto;
            justify-content: center;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
        }

        .nav-links a:hover {
            color: #128c55;
        }

        /* .nav-links a:last-child::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a961;
    transition: width 0.3s ease;
} */

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Dropdown container */
        .nav-links .dropdown {
            position: relative;
        }

        /* Dropdown menu (hidden by default) */
        .nav-links .dropdown-menu {
            display: none;
            position: absolute;
            z-index: 2000;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 1rem;
            border-radius: 5px;
            list-style: none;
        }

        /* Show the dropdown menu when hovering over the dropdown */
        .nav-links .dropdown:hover .dropdown-menu {
            display: block;
        }

        /* Style the links inside the dropdown */
        .nav-links .dropdown-menu li {
            padding: 0.5rem 1rem;
            width: 176px;
        }

        .nav-links .dropdown-menu li a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            display: block;
            transition: color 0.3s ease;
        }

        .nav-links .dropdown-menu li a:hover {
            color: #128c55;
        }

        .contact-btn {
            background: #df0028;
            color: white !important;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background: #c00022;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
        }

        .mobile-menu {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

     

        /* Adapter la grille Hero */
        .hero-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            align-items: center;
            padding-top: 4rem;
        }



        .hero-text {
            padding: 7rem 2rem 12rem 2rem;
        }

        .hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .hero-text .highlight {
            color: #c9a961;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-text .subtitle {
            font-size: 0.9rem;
            color: #c9a961;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 900;
            color: #c9a961;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #ffffff;
            margin-top: 0.5rem;
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            width: 100%;
            max-width: 600px;
            height: 400px;
            background: url('<?php echo get_template_directory_uri(); ?>/element-2.png');
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;


        }

        .floating-badge {
            position: absolute;
            background: white;
            padding: 8px 15px;
            border-radius: 15px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .badge-1 {
            top: 10%;
            right: -10%;
            color: #c9a961;
        }

        .badge-2 {
            bottom: 15%;
            left: -10%;
            color: #2c3e50;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #df0028, #a7021f);
            color: white;
        }

        .btn-primary:hover {
            background: #c00022;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .btn-outline:hover {
            background: #ffffff;
            color: #000000;
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: #fafbfc;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            color: #128c55;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .section-description {
            color: #6c757d;
            font-size: 1.1rem;
            /* max-width: 600px; */
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #269564, #007342);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #269564, #007342);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin-top: 1rem;
        }

        .service-features li {
            color: #6c757d;
            padding: 0.3rem 0;
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.9rem;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #d50026;
            font-weight: bold;
        }

/* Simulator Section */
.simulator-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.simulator-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.simulator-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.simulator-info p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.simulator-specs {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #6c757d;
    font-weight: 500;
}

.spec-value {
    color: #2c3e50;
    font-weight: 600;
}

.simulator-visual {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.simulator-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.certification-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9a961, #b8965c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-see-more {
    display: inline-block;
    background: linear-gradient(135deg, #128c55 0%, #0a6d42 100%);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 140, 85, 0.2);
}

.btn-see-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 85, 0.3);
    background: linear-gradient(135deg, #0a6d42 0%, #085a36 100%);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #128c55;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-description {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* RESPONSIVE DESIGN */

/* Tablettes (max-width: 992px) */
@media (max-width: 992px) {
    .simulator-section {
        padding: 4rem 0;
    }

    .simulator-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .simulator-info h3 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .simulator-section {
        padding: 3rem 0;
    }

    .simulator-showcase {
        gap: 2rem;
    }

    .simulator-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .simulator-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .simulator-visual {
        padding: 1.5rem;
    }

    .simulator-visual h4 {
        font-size: 1.2rem;
    }

    .simulator-specs {
        padding: 1.5rem;
    }

    .spec-item {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.6rem 0;
    }

    .spec-label,
    .spec-value {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .btn-see-more {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    .certification-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }
}

/* Petits mobiles (max-width: 480px) */
@media (max-width: 480px) {
    .simulator-section {
        padding: 2rem 0;
    }

    .simulator-info h3 {
        font-size: 1.3rem;
    }

    .simulator-info p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .simulator-visual {
        padding: 1rem;
    }

    .simulator-visual h4 {
        font-size: 1.1rem;
    }

    .simulator-visual p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Très grands écrans (min-width: 1400px) */
@media (min-width: 1400px) {
    .simulator-showcase {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

        /* Discovery Section */
        .discovery-section {
            padding: 6rem 0;
            background: #e6e6e6;
;
        }

        .discovery-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .discovery-card {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
        }

        .discovery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .discovery-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #269564, #007342);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 2rem;
        }

        .discovery-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .discovery-card p {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;

            color: #dedede;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 0.8rem;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        footer .social-links a {
            color: white;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #15293e;
            transform: translateY(-2px);
        }



        /* Quand l’écran est inférieur à 1200px, réduire déjà le titre et l’image */
        @media (max-width: 1300px) {
            .hero-content {
                gap: 2rem;
            }

            .hero-text h1 {
                font-size: 1.5rem;
            }

            /* .hero-text {
padding: 45px 2rem 23px 2rem;            } */
.nav-content {

    padding: 0;
}
            .hero-ctas .btn {
                display: inline-flex;
                align-items: center;
                gap: .5rem;
                padding: 4px 1.1rem;
            }

            .hero-text p {
                font-size: 16px;
            }

            .hero-image {
                max-width: 74%;
                height: auto;
                aspect-ratio: 3 / 2;
                /* garde un ratio flexible */
            }

            .badge-1 {
                top: 10%;
                right: -10%;
                color: #c9a961;
                font-size: 8px;
            }

            .badge-2 {
                bottom: 15%;
                left: -10%;
                color: #2c3e50;
                font-size: 8px;
            }
        }

        /* En dessous de 992px, bascule en 1 colonne */
        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 0;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image {
                margin: 0 auto;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 1rem;
            }

            .top-bar-left {
                gap: 1rem;
            }

            .navbar {
                /* top: 70px; */
                /* Ajusté pour mobile */
            }

            .hero {
                /* margin-top: 70px; */
                /* Ajusté pour mobile */
            }

            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-visual {
                display: none;
            }

            .hero-stats {
                justify-content: center;
            }

            .stat-number {
                font-size: 1rem;
            }

            .simulator-showcase {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .discovery-cards {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .floating-badge {
                display: none;
            }

            .container {
                padding: 0 1rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        .animate-delay-1 {
            animation-delay: 0.2s;
            animation-fill-mode: both;
        }

        .animate-delay-2 {
            animation-delay: 0.4s;
            animation-fill-mode: both;
        }

        .animate-delay-3 {
            animation-delay: 0.6s;
            animation-fill-mode: both;
        }
  


   
        .nav-links .dropdown > a i {
    font-size: 0.7rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

/* Quand on survole, la flèche pivote */
.nav-links .dropdown:hover > a i {
    transform: rotate(180deg);
}



/* version mobile  */

/* Desktop par défaut */
.menu-bar{
    position: sticky;
     top: 0;
     z-index: 3333;
}

.nav-links { display:flex; align-items:center; gap:3rem; }

/* --- MOBILE --- */
@media (max-width: 992px){
  .mobile-menu{ display:block; }
  .nav-content{ position:relative; }

  /* conteneur drawer */
  .nav-links{
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;                 /* caché par défaut */
    flex-direction: column;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    padding: .75rem 1rem;
    gap: .25rem;
    z-index: 1500;
  }
  .nav-links.open{ display:flex; }

  .nav-links > li{ width:100%; }
  .nav-links > li > a{
    display:flex; align-items:center; justify-content:space-between;
    padding: .8rem 0; width:100%;
        justify-content: center;
  }

  /* dropdown devient accordéon */
  .nav-links .dropdown{ position: static; }
  .nav-links .dropdown-menu{
    position: static;
    display: none;                 /* fermé par défaut */
    background: transparent;
    box-shadow: none;
    padding: 0 0 .5rem 0;
  }
  .nav-links .dropdown.open .dropdown-menu{ display:block; }

  .nav-links .dropdown-menu li a{
    padding:.55rem 0 .55rem .75rem;
    border-left:3px solid #e9ecef;
  }

  /* petite rotation de la flèche quand c'est ouvert */
  .nav-links .dropdown > a i{ transition: transform .25s ease; }
  .nav-links .dropdown.open > a i{ transform: rotate(180deg); }

  /* bouton hamburger stylé (optionnel) */
  .mobile-menu{
    width:42px;height:42px;border-radius:8px;
    display:flex;align-items:center;justify-content:center;
    background:#f4f6f8; user-select:none;
  }
}

    


    /* Style listes Discovery (même look que DGR) */
    .discovery-more ul,
    .discovery-more ol {
        list-style: none;
        margin: 1rem 0;
        padding: 0;
    }

    .discovery-more ul li,
    .discovery-more ol li {
        position: relative;
        padding-left: 1.5rem;
        margin: .4rem 0;
        color: #445268;
        line-height: 1.6;
    }

    /* Coche dorée pour UL */
    .discovery-more ul li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: #d50026;
        font-weight: bold;
    }

    /* Numérotation stylée pour OL */
    .discovery-more ol {
        counter-reset: step;
    }

    .discovery-more ol li {
        counter-increment: step;
    }

    .discovery-more ol li::before {
        content: counter(step) ".";
        position: absolute;
        left: 0;
        top: 0;
        font-weight: 700;
        color: #d50026;
    }

    /* Details (Read more) */
    .discovery-more summary {
        cursor: pointer;
        font-weight: 700;
        color: #2c3e50;
        margin: 1rem 0;
        list-style: none;
    }

    .discovery-more summary::-webkit-details-marker {
        display: none;
    }

    .discovery-more summary::after {
        content: "＋";
        font-weight: 900;
        margin-left: .5rem;
    }

    .discovery-more[open] summary::after {
        content: "–";
    }

    .discovery-more .more-body {
        text-align: left;
        color: #6c757d;
        line-height: 1.7;
    }

    .discovery-more .more-body ul,
    .discovery-more .more-body ol {
        padding-left: 1.2rem;
        margin: .5rem 0 1rem;
    }

    /* ===== Styles spécifiques à la(aucun override global) ===== */

    /* Story */
    .story-section {
        padding: 6rem 0 2rem 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .story-text {
        color: #6c757d;
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .image-placeholder {
        width: 100%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
        position: relative;
    }


    /* Bouton See more */
    .btn-see-more {
        display: inline-block;
        margin-top: 1rem;
        padding: .9rem 2rem;
        border-radius: 30px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        color: #fff;
        background: linear-gradient(135deg, #cd0125, #ad0120);
        box-shadow: 0 8px 24px rgba(201, 169, 97, .35);
        transition: .3s ease;
    }

    .btn-see-more:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(201, 169, 97, .45);
    }

    /* Vision card */
    .section-block {
        background: #fff;
        border-radius: 24px;
        padding: 3rem clamp(1.25rem, 3vw, 3rem);
        margin: 3rem 6px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .vision-hero {
        position: relative;
        overflow: hidden;
        border-left: 6px solid #128c55;
        background:
            radial-gradient(1200px 400px at 10% -20%, rgba(201, 169, 97, .10), transparent 60%),
            radial-gradient(1000px 400px at 110% 120%, rgba(201, 169, 97, .08), transparent 60%),
            linear-gradient(135deg, #ffffff 0%, #f7f7f8 100%);
    }

    .vision-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(#e9ecef 1px, transparent 1px);
        background-size: 22px 22px;
        opacity: .25;
        pointer-events: none;
    }

    .vision-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        align-items: center;
    }

    .vision-kicker {
        text-transform: uppercase;
        letter-spacing: .12em;
        font-weight: 800;
        font-size: .9rem;
        color: #128c55;

        margin-bottom: .5rem;
        text-align: left;
    }

    .vision-title {
        font-size: clamp(1.9rem, 5vw, 3rem);
        line-height: 1.1;
        font-weight: 900;
        color: #2c3e50;
        margin: 0 0 1rem;
        text-align: left;
    }

    .vision-lead {
        color: #6c757d;
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .vision-text {
        color: #6c757d;
        margin: 0 0 1rem;
    }

    .vision-tags {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
        margin-top: .5rem;
    }

    .vision-tags span {
        background: #0000009e;
        color: #fff;
        padding: .4rem .75rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: .85rem;
        box-shadow: 0 6px 16px rgba(201, 169, 97, .25);
    }

    .vision-visual img {
        width: 100%;
        border-radius: 18px;
        object-fit: cover;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .story-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .vision-grid {
            grid-template-columns: 1fr;
        }

        .vision-kicker,
        .vision-title {
            text-align: center;
            font-size: 1rem;
        }
    }




        .planning-download {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: #fff;
            border: 1px solid #eceff3;
            border-radius: 16px;
            padding: 1rem 1.25rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
            margin-top: 1.25rem;
        }

        .planning-download__icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
    background: linear-gradient(135deg, #b5b5b3, #8f8f8f);            color: #fff;
            font-size: 1.25rem;
        }

        .planning-download__text h4 {
            margin: 0 0 .25rem;
            color: #2c3e50;
            font-weight: 800;
        }

        .planning-download__text p {
            margin: 0;
            color: #6c757d;
        }

        @media (max-width:768px) {
            .planning-download {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Section */
        .planning-section {
            padding: 4.5rem 0;
            background: #ffffff;
        }

        .planning-wrap {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }

        /* Colonne texte */
        .planning-title {
            font-size: clamp(1.8rem, 2.8vw, 2.2rem);
            font-weight: 800;
            color: #2c3e50;
            margin: 0 0 .75rem;
        }

        .planning-intro {
            color: #6c757d;
            margin: 0 0 1.25rem;
        }

        .planning-subtitle {
            margin: 1.25rem 0 .5rem;
            font-size: 1.05rem;
            font-weight: 800;
            color: #2c3e50;
        }

        .planning-list {
            list-style: none;
            margin: 0 0 1rem;
            padding: 0;
        }

        .planning-list li {
            position: relative;
            padding-left: 1.3rem;
            margin: .4rem 0;
            color: #445268;
        }

        .planning-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #d50026;
            font-weight: 800;
        }

        .planning-text {
            color: #6c757d;
        }

        /* Colonne image */
        .planning-visual {
            align-self: center;
            /* bien centré dans la grille */
            background: #fff;
            border: 1px solid #eceff3;
            border-radius: 16px;
            padding: .6rem;
            /* fin liseré autour de l'image */
            box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
            overflow: hidden;
        }

        .planning-visual img {
            display: block;
            width: 100%;
            height: auto;
            /* conserve le ratio */
            border-radius: 12px;
            object-fit: cover;
            /* au cas où l'image dépasse */
        }

        /* Optionnel: réduire la taille max de l'image sur très grands écrans */
        @media (min-width: 1200px) {
            .planning-visual {
                max-width: 720px;
                justify-self: end;
            }
        }

        /* Responsive: la grille passe déjà en 1 colonne via ton @media existant */

        /* Responsive */
        @media (max-width: 992px) {
            .planning-wrap {
                grid-template-columns: 1fr;
            }

            .planning-schema {
                grid-template-columns: 1fr;
                gap: .9rem;
            }

            .arrow {
                width: 100%;
                height: 2px;
            }

            .arrow::after {
                right: 0;
            }
        }
    

         /* En dessous de 992px, bascule en 1 colonne */
        @media (max-width: 992px) {
       
       .section-title    {
          
    font-size: 1rem;

            }
        }