
        :root {
            --primary-dark-blue: #ba0000;
            --primary-light-blue: #000000; /* Lighter shade of blue for gradients */
            --accent-gold: #f9d038;
            --secondary-blue: #0ea5e9; /* Kept for general blue-ish accents if needed */

            --dark: #0f172a;
            --dark-light: #1e293b;
            --gray: #64748b;
            --gray-light: #cbd5e1;
            --light: #f1f5f9;
            --white: #ffffff;
            --success: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;

            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800; /* Increased weight for impact */
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
        h2 { font-size: clamp(2rem, 5vw, 3rem); }
        h3 { font-size: clamp(1.75rem, 4vw, 2.25rem); }

        p {
            margin-bottom: 1rem;
            color: var(--gray);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .container-wide {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header & Navigation */
       .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent; /* plus de couleur blanche */
    backdrop-filter: none;    /* supprime le flou si tu veux voir clairement la vidéo */
    box-shadow: none;         /* supprime l'ombre */
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    /* Si tu veux garder un effet au scroll, tu peux ajouter une légère couleur ou flou */
    background: rgba(0, 0, 0, 0.3); /* exemple semi-transparent */
    backdrop-filter: blur(5px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


      .navbar {
    display: flex;
    justify-content: center; /* centre horizontalement tout le contenu */
    align-items: center;     /* centre verticalement */
    gap: 3rem;               /* espace entre logo, nav-links et bouton */
    padding: 1rem 0;
}

   .logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ba0000;
    text-decoration: none;
}

        .logo-icon {
            width: 45px;
            height: 45px;
            background: #ba0000;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
        }

      .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    justify-content: center; /* centre les liens */
}
        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: color 0.3s ease, transform 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #ba0000;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: #ba0000;
            border-radius: 2px;
            transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .nav-links a:hover::after {
            width: 100%;
        }
/* ===== Dropdown Menu ===== */
.nav-links {
  position: relative;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.dropdown .arrow {
  margin-left: 6px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* Menu caché par défaut */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-light-blue));
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;
}

/* Apparition au survol */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Style des liens du menu déroulant */
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-light-blue) 100%);
    color: white;
}

/* Pour le mobile */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
  }

  .dropdown-menu li a {
    padding-left: 30px;
    color: #ddd;
  }
}

        /* Buttons */
.btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center; /* centre le texte verticalement */
    justify-content: center;
}

        .btn-primary {
            background: #ba0000;
            color: var(--white);
            box-shadow: #ba0000;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: #ba0000;
        }
        
        .btn-primary.pulsate {
            animation: pulsate 1.5s infinite ease-out;
        }

        @keyframes pulsate {
            0% { transform: scale(1); box-shadow: 0 10px 20px rgba(17, 62, 119, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 15px 30px rgba(17, 62, 119, 0.45); }
            100% { transform: scale(1); box-shadow: 0 10px 20px rgba(17, 62, 119, 0.3); }
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-dark-blue);
            color: var(--primary-dark-blue);
        }

        .btn-outline:hover {
            background: var(--primary-dark-blue);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(17, 62, 119, 0.2);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
            transition: transform 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            padding: 10rem 0 6rem;
            background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-light-blue) 100%);
            position: relative;
            overflow: hidden;
            color: var(--white);
        }

        .hero::before, .hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            animation: float-shape 20s infinite ease-in-out;
            z-index: 0;
            pointer-events: none;
        }
        .hero::before {
            width: 700px; height: 700px;
            top: -100px; left: -150px;
            animation-delay: 0s;
        }
        .hero::after {
            width: 500px; height: 500px;
            bottom: -100px; right: -100px;
            animation-delay: 5s;
        }

        @keyframes float-shape {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            25% { transform: translateY(-20px) scale(1.05) rotate(45deg); }
            50% { transform: translateY(0) scale(1) rotate(90deg); }
            75% { transform: translateY(20px) scale(1.05) rotate(135deg); }
            100% { transform: translateY(0) scale(1) rotate(180deg); }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
             font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 10px rgba(0,0,0,0.2);
               display: inline-block;
    min-width: 500px; /* Ajuste selon la longueur maximale de ton texte */
    white-space: nowrap; /* Empêche le retour à la ligne */
        }

        .hero-text p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .hero-buttons .btn-primary {
            background: black; /* Using warning for a lighter gold */
            color: #ba0000;
            box-shadow: 0 10px 20px rgba(249, 208, 56, 0.4);
        }
        .hero-buttons .btn-primary:hover {
             box-shadow: 0 15px 30px rgba(249, 208, 56, 0.5);
        }

        .hero-image {
            position: relative;
            perspective: 1000px;
        }

        .mockup-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            transform-style: preserve-3d;
            animation: mockup-float 8s infinite ease-in-out;
        }

        .mockup-container .mockup {
            width: 50%;
            border-radius: var(--radius-lg);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease-out;
            transform: translateZ(20px);
            background: var(--white);
            padding: 1rem;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .mockup-container .mockup.mobile {
            width: 250px; /* Specific width for mobile */
            transform: translateZ(40px) translateX(20px) rotateY(-10deg);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        }

        .mockup-container .mockup.desktop {
            width: 70%;
            max-width: 600px;
            transform: translateZ(0px) translateX(-20px) rotateY(10deg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .mockup-container img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-md);
        }
        
        @keyframes mockup-float {
            0%, 100% { transform: translateY(0) rotateY(0deg); }
            50% { transform: translateY(-15px) rotateY(5deg); }
        }

        /* Reveal Animation */
        .reveal-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .reveal-item.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .reveal-left.revealed {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .reveal-right.revealed {
            opacity: 1;
            transform: translateX(0);
        }

  /* Advantages Section - Design Convivial */
.advantages {
    padding: 8rem 0;
    background: whitesmoke; /* noir mat dégradé */
    position: relative;
    overflow: hidden;
}

/* Bulles flottantes colorées */
.advantages .floating-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.advantages .floating-bubbles .bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ba0000, #000000); /* dégradé principal rouge -> noir */
    opacity: 0.1;
    animation: floatBubble 15s ease-in-out infinite;
    filter: blur(1px);
}

/* Bulle 1 */
.advantages .floating-bubbles .bubble:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    background: linear-gradient(135deg, #ba0000, #330000); /* rouge plus sombre */
}

/* Bulle 2 */
.advantages .floating-bubbles .bubble:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 10%;
    animation-delay: -2s;
    background: linear-gradient(135deg, #ff4d4d, #000000); /* rouge plus clair -> noir */
}

/* Bulle 3 */
.advantages .floating-bubbles .bubble:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 8%;
    animation-delay: -4s;
    background: linear-gradient(135deg, #ba0000, #1a0000); /* rouge -> noir très mat */
}

/* Bulle 4 */
.advantages .floating-bubbles .bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 15%;
    animation-delay: -6s;
    background: linear-gradient(135deg, #ff6666, #000000); /* rouge clair -> noir */
}

/* Étoiles scintillantes */
.advantages .twinkling-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.advantages .twinkling-stars .star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-light-blue);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
    opacity: 0.3;
}

.advantages .twinkling-stars .star:nth-child(1) { top: 25%; left: 20%; animation-delay: 0s; }
.advantages .twinkling-stars .star:nth-child(2) { top: 60%; left: 25%; animation-delay: 1s; }
.advantages .twinkling-stars .star:nth-child(3) { top: 35%; right: 25%; animation-delay: 2s; }
.advantages .twinkling-stars .star:nth-child(4) { top: 75%; right: 20%; animation-delay: 1.5s; }
.advantages .twinkling-stars .star:nth-child(5) { top: 45%; left: 15%; animation-delay: 0.5s; }

/* Effet de lumière douce */
.advantages .soft-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vmax;
    height: 80vmax;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    animation: softGlow 8s ease-in-out infinite;
    z-index: 0;
}

.advantages .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}.section-headere {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-headere h2 {
    color: #ba0000; /* couleur de fallback si animation ne marche pas */
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ba0000, #000000); /* dégradé rouge foncé -> noir */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.section-header h1 {
    color: #ba0000; /* couleur de fallback si animation ne marche pas */
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #000000); /* dégradé rouge foncé -> noir */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

/* Animation du dégradé */



.section-header p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 2.5rem auto 0;
    color: var(--dark);
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(0, 0, 0);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: start;
    position: relative;
}

.advantage-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 10px 40px rgba(17, 62, 119, 0.1),
        0 5px 20px rgba(17, 62, 119, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.05) 0%,
        rgba(255, 193, 7, 0.05) 50%,
        rgba(74, 144, 226, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ba0000, #000000, #ba0000); /* dégradé rouge -> noir -> rouge */
    border-radius: 27px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.6s ease;
}


.advantage-card:hover::after {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

.advantage-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(17, 62, 119, 0.15),
        0 15px 35px rgba(17, 62, 119, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.advantage-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-light-blue));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--white);
    margin: 0 auto 2.5rem;
    box-shadow: 
        0 15px 35px rgba(17, 62, 119, 0.25),
        0 5px 15px rgba(17, 62, 119, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.advantage-card:hover .advantage-icon::before {
    transform: translateX(100%);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 
        0 20px 45px rgba(17, 62, 119, 0.35),
        0 8px 25px rgba(17, 62, 119, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #ba0000, #000000, #ba0000); 
    animation: iconPulse 2s ease-in-out infinite;
}

.advantage-card h3 {
    color: black;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.6rem;
    position: relative;
    display: inline-block;
}

.advantage-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
   background: linear-gradient(135deg, #ba0000, #000000, #ba0000); 
    border-radius: 3px;
    transition: all 0.4s ease;
   
}

.advantage-card:hover h3::after {
    width: 100px;
    height: 4px;
   
}

.advantage-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    font-weight: 400;
    position: relative;
}

/* Badge "Nouveau" pour les nouvelles fonctionnalités */
.advantage-card .new-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-dark), #ee2020);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}
/* Effet couleur sur le texte au hover */
.advantage-card h3,
.advantage-card p {
    transition: color 0.4s ease;
}

.advantage-card:hover h3 {
    color: #ffffff; /* rouge vif */
}

.advantage-card:hover p {
    color: #ffffff; /* noir */
}

/* Animations */
@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(5deg);
    }
    66% {
        transform: translateY(20px) rotate(-5deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes softGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.2);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.1) rotate(8deg);
    }
    50% {
        transform: scale(1.15) rotate(12deg);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    }
}

/* Animation pour le reveal */
.reveal-item {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .advantages {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }
    
    .section-header p {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .advantage-card {
        padding: 2.5rem 1.5rem;
    }
    
    .advantage-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .advantage-card h3 {
        font-size: 1.4rem;
    }
    
    .advantage-card p {
        font-size: 1rem;
    }
}
        /* Relationship Section */
/* Relationship Section */
/* Relationship Section */
/* Relationship Section */
.relationship {
    padding: 8rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%); /* légèrement noir, sombre mais pas pur */
    position: relative;
    overflow: hidden;
}



.relationship::before, 
.relationship::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 200px;
    background: linear-gradient(90deg, rgba(186,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(186,0,0,0.1) 100%); /* rubans rouge et noir */
    opacity: 0.7;
    animation: ribbon-flow 25s infinite linear alternate;
    z-index: 0;
    pointer-events: none;
}

.relationship::before {
    top: 10%;
    left: -50%;
    transform: rotate(-5deg);
}

.relationship::after {
    bottom: 10%;
    right: -50%;
    transform: rotate(5deg);
    animation-delay: 5s;
}

@keyframes ribbon-flow {
    0% { transform: translateX(0) rotate(0deg); opacity: 0.7; }
    100% { transform: translateX(20%) rotate(5deg); opacity: 0.8; }
}

.relationship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.relationship-text h2 {
    margin-bottom: 1.5rem;
    color: #ba0000; /* titre rouge principal */
}

.relationship-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #ffffff; /* texte blanc pour contraste */
}

.relationship-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: url('images/client (1).jpg') center center / cover no-repeat;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); /* ombre plus sombre */
    overflow: hidden;
    transition: transform 0.5s ease-out;
}

/* Overlay pour storytelling */
.relationship-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(186,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%); /* rouge -> noir */
    border-radius: var(--radius-lg);
}

.relationship-image .flow-graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="%23ba0000" stop-opacity="0"/><stop offset="50%" stop-color="%23ba0000" stop-opacity="0.8"/><stop offset="100%" stop-color="%23000000" stop-opacity="0"/></linearGradient></defs><path d="M0,50 C25,25 75,75 100,50" stroke="url(%23g)" stroke-width="2" fill="none"/></svg>') center center / contain no-repeat;
    animation: flow-pulse 3s infinite alternate ease-in-out;
    opacity: 0.8;
}

@keyframes flow-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}


        /* Admin Supervision Section (formerly Portfolio) */
        .admin-supervision {
            padding: 6rem 0;
            background: var(--light);
             position: relative;
        }

        .admin-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .admin-text h2 {
            margin-bottom: 1.5rem;
            color: var(--primary-dark-blue);
        }

        .admin-text p {
            font-size: 1.15rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            color: var(--dark);
        }

        .admin-keywords {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .admin-keyword {
            background: var(--primary-dark-blue);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(17, 62, 119, 0.2);
            transition: all 0.3s ease;
        }

        .admin-keyword:hover {
            transform: translateY(-5px) scale(1.05);
            background: linear-gradient(45deg, var(--primary-dark-blue), var(--primary-light-blue));
            box-shadow: 0 8px 20px rgba(17, 62, 119, 0.3);
        }

        .admin-mockups {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .admin-mockups .mockup {
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            position: absolute;
            border: 4px solid var(--primary-light-blue); /* Luminous border */
            transition: all 0.5s ease;
        }

        .admin-mockups .mockup.desktop {
            width: 80%;
            transform: translateX(-10%) translateY(0) rotate(-3deg);
            z-index: 2;
        }

        .admin-mockups .mockup.mobile {
            width: 250px;
            transform: translateX(30%) translateY(80px) rotate(8deg);
            z-index: 3;
            border-color: var(--accent-gold);
        }

        .admin-mockups img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-md);
        }
        /* Conteneur du défilement */
/* Conteneur du défilement */
/* Conteneur du défilement */
/* Conteneur du défilement */
.logo-marquee {
    position: absolute;
    top: 50%;               /* Centré verticalement */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-50%);
    z-index: 0;             /* Derrière le contenu */
    pointer-events: none;   /* Pas cliquable */
    overflow: hidden;
}

/* Style du logo */
.eagle-logo {
    width: 80px;
    height: auto;
    opacity: 0.2;           /* Peu lumineux / sombre */
    animation: logo-scroll 30s linear infinite; /* Vitesse réduite */
}

/* Animation du logo de droite à gauche avec ondulation */
@keyframes logo-scroll {
    0% {
        transform: translateX(100vw) translateY(0);
    }
    25% {
        transform: translateX(75vw) translateY(-20px);
    }
    50% {
        transform: translateX(50vw) translateY(0);
    }
    75% {
        transform: translateX(25vw) translateY(20px);
    }
    100% {
        transform: translateX(-100px) translateY(0);
    }
}

    
        /* Stats Section */
/* Stats Section */
.stats-impact {
    background: linear-gradient(135deg, #330000 0%, #ba0000 50%, #000000 100%); /* Dégradé rouge sombre -> rouge principal */
    color: #ffffff; /* Texte blanc pour contraste */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Animated, rounded ribbon-like shapes in background */
.stats-impact::before, .stats-impact::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 186, 186, 0.1); /* Rubans semi-transparents rouge clair */
    filter: blur(80px);
    animation: stats-ribbon-move 25s infinite ease-in-out alternate;
    z-index: 0;
    pointer-events: none;
}

.stats-impact::before {
    width: 600px; height: 600px;
    top: -150px; left: -100px;
    animation-delay: 0s;
}

.stats-impact::after {
    width: 400px; height: 400px;
    bottom: -100px; right: -80px;
    animation-delay: 8s;
}

@keyframes stats-ribbon-move {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.1; }
    25% { transform: translate(20px, -10px) rotate(5deg) scale(1.05); opacity: 0.15; }
    50% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.1; }
    75% { transform: translate(-20px, 10px) rotate(-5deg) scale(1.05); opacity: 0.15; }
}

.stats-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(186, 0, 0, 0.2); /* Fond semi-transparent rouge */
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(186, 0, 0, 0.4); /* Bordures rouge foncé transparent */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    background: rgba(186, 0, 0, 0.3);
}

.stat-item h3 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #ffffff; /* Texte blanc */
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9); /* Texte blanc légèrement transparent */
    font-size: 1.1rem;
    font-weight: 500;
}


      /* Why Choose Section */
/* Why Choose Section - Design Moderne Sans Cartes */
.why-choose {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-light-blue) 50%, 
        transparent 100%);
}

.modern-features {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

/* Premier élément : icône à gauche (défaut) */
.feature-row:nth-child(1) {
    grid-template-areas: "visual content";
}

.feature-row:nth-child(1) .feature-visual {
    grid-area: visual;
}

.feature-row:nth-child(1) .feature-content {
    grid-area: content;
}

/* Deuxième élément : icône à droite */
.feature-row:nth-child(2) {
    grid-template-areas: "content visual";
}

.feature-row:nth-child(2) .feature-visual {
    grid-area: visual;
}

.feature-row:nth-child(2) .feature-content {
    grid-area: content;
}

/* Troisième élément : icône à gauche */
.feature-row:nth-child(3) {
    grid-template-areas: "visual content";
}

.feature-row:nth-child(3) .feature-visual {
    grid-area: visual;
}

.feature-row:nth-child(3) .feature-content {
    grid-area: content;
}

.feature-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    grid-area: visual;
}

.feature-content {
    padding: 2rem;
    grid-area: content;
}

.floating-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-light-blue));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 
        0 20px 40px rgba(74, 144, 226, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visual-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #330000 0%, #ba0000 50%, #000000 100%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.visual-element::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-light-blue);
    border-radius: 50%;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-row:hover .floating-icon {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4d0000 0%, #ba0000 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(230, 184, 0, 0.3);
}

.feature-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--dark), var(--primary-dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 2rem;
}

/* Stats */
.feature-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
}

/* Feature List */
.feature-list-mini {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list-mini li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--gray);
    font-size: 1.05rem;
}

.feature-list-mini li i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Integration Badges */
.integration-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.integration-item {
    background: var(--white);
    color: var(--primary-dark-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.integration-item:hover {
    background: var(--primary-light-blue);
    color: var(--white);
    border-color: var(--primary-light-blue);
    transform: translateY(-2px);
}

/* CTA Section */
.features-cta {
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-light-blue));
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    margin-top: 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff; /* texte blanc */
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
     color: #ffffff; /* texte blanc */
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color:#ba0000;
    box-shadow: #ba0000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark-blue);
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 968px) {
    .feature-row {
        grid-template-columns: 1fr;
        grid-template-areas: "visual" "content" !important;
        gap: 3rem;
        text-align: center;
    }
    
    .feature-visual {
        height: 300px;
        order: -1;
    }
    
    .modern-features {
        gap: 4rem;
    }
    
    .features-cta {
        padding: 3rem 2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 6rem 0;
    }
    
    .feature-content h3 {
        font-size: 1.8rem;
    }
    
    .feature-stats {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Stats */
.feature-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Feature List */
.feature-list-mini {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list-mini li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--gray);
    font-size: 1.05rem;
}

.feature-list-mini li i {
    color: var(--accent-bleu);
    font-size: 1.1rem;
}

/* Integration Badges */
.integration-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.integration-item {
    background: var(--white);
    color: var(--primary-dark-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.integration-item:hover {
    background: var(--primary-light-blue);
    color: var(--white);
    border-color: var(--primary-light-blue);
    transform: translateY(-2px);
}

/* CTA Section */
.features-cta {
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-light-blue));
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    margin-top: 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-dark-blue);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark-blue);
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 968px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .feature-visual {
        height: 300px;
        order: -1;
    }
    
    .modern-features {
        gap: 4rem;
    }
    
    .features-cta {
        padding: 3rem 2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 6rem 0;
    }
    
    .feature-content h3 {
        font-size: 1.8rem;
    }
    
    .feature-stats {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
/* Nouvelles fonctionnalités */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
}

.feature-tag {
    background: var(--light);
    color: var(--primary-dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.choice-card:hover .feature-tag {
    background: var(--primary-light-blue);
    color: var(--white);
    border-color: var(--primary-light-blue);
}

/* CTA Section */
.why-choose-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.why-choose-cta .btn {
    margin: 0 0.75rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background:black;
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-dark-blue);
    color: var(--primary-dark-blue);
}

.btn-secondary:hover {
    background: var(--primary-dark-blue);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .choice-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-cta .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 280px;
    }
}

        /* CTA Section (formerly Contact) */
        .cta-final {
            padding: 8rem 0;
            background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-light-blue));
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-final::before, .cta-final::after {
            content: '';
            position: absolute;
            width: 120%;
            height: 150px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            filter: blur(50px);
            animation: move-ribbon 30s infinite linear alternate;
            z-index: 0;
            pointer-events: none;
        }
        .cta-final::before {
            top: 10%; left: -10%;
            transform: rotate(-10deg);
        }
        .cta-final::after {
            bottom: 15%; right: -10%;
            transform: rotate(15deg);
            animation-delay: 5s;
        }

        @keyframes move-ribbon {
            0% { transform: translateX(0%) rotate(0deg); opacity: 0.8; }
            50% { transform: translateX(20%) rotate(5deg); opacity: 0.9; }
            100% { transform: translateX(0%) rotate(0deg); opacity: 0.8; }
        }

        .cta-final .section-header h2,
        .cta-final .section-header p {
            color: var(--white);
        }

        .cta-final .btn-primary {
            margin-top: 2.5rem;
            padding: 1rem 3rem;
            font-size: 1.25rem;
            background: linear-gradient(45deg, var(--accent-gold), var(--warning));
            color: var(--primary-dark-blue);
            box-shadow: 0 15px 30px rgba(249, 208, 56, 0.4);
            border-radius: 50px;
            animation: pulsate-gold 2s infinite ease-out;
        }

        .cta-final .btn-primary:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 20px 40px rgba(249, 208, 56, 0.5);
        }
        
        @keyframes pulsate-gold {
            0% { transform: scale(1); box-shadow: 0 15px 30px rgba(249, 208, 56, 0.4); }
            50% { transform: scale(1.03); box-shadow: 0 20px 40px rgba(249, 208, 56, 0.5); }
            100% { transform: scale(1); box-shadow: 0 15px 30px rgba(249, 208, 56, 0.4); }
        }

        /* Footer */
   /* Footer */
.footer {
    background: linear-gradient(135deg, #330000 0%, #ba0000 50%, #000000 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    border-top-left-radius: 0; /* Suppression arrondis */
    border-top-right-radius: 0; /* Suppression arrondis */
}


        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-about .logo {
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease, transform 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .footer-social a:hover {
            background: var(--accent-gold);
            color: var(--primary-dark-blue);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(249, 208, 56, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Toast Notification (if needed, keep previous) */
        .toast {
            position: fixed;
            top: 100px;
            right: 2rem;
            background: var(--white);
            padding: 1rem 1.5rem;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 9999;
            transform: translateX(400px);
            transition: transform 0.3s ease;
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast.success {
            border-left: 4px solid var(--success);
        }

        .toast-icon {
            font-size: 1.5rem;
            color: var(--success);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content,
            .relationship-content,
            .admin-content,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero {
                padding: 8rem 0 4rem;
            }

            .hero-text {
                order: 1;
                text-align: center;
            }
            .hero-buttons {
                justify-content: center;
            }

            .mockup-container {
                flex-direction: column;
                gap: 2rem;
            }
            .mockup-container .mockup.mobile {
                transform: translateZ(40px) translateX(0) rotateY(0deg) translateY(0px);
            }
            .mockup-container .mockup.desktop {
                transform: translateZ(0px) translateX(0) rotateY(0deg);
                width: 90%;
            }

            .admin-mockups .mockup.desktop {
                transform: translateX(0%) translateY(0) rotate(0deg);
            }

            .admin-mockups .mockup.mobile {
                transform: translateX(0%) translateY(80px) rotate(0deg);
            }

            .admin-mockups {
                padding-bottom: 10rem; /* Ensure mobile mockup is visible */
            }

            .relationship-text {
                order: 1;
            }
            .relationship-image {
                margin-bottom: 2rem;
            }
            
            .cta-final .section-header h2 {
                font-size: clamp(2rem, 5vw, 3rem);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                border-bottom-left-radius: var(--radius-lg);
                border-bottom-right-radius: var(--radius-lg);
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .mobile-menu-toggle {
                display: block;
            }

            h1 { font-size: clamp(2rem, 8vw, 3rem); }
            h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }

            .stats-impact-grid,
            .advantages-grid,
            .why-choose-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-about .logo {
                justify-content: center;
            }
            .footer-social {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .header {
                box-shadow: none; /* Hide shadow on small devices for clean look */
            }
            .header.scrolled {
                 box-shadow: var(--shadow-md);
            }
            .navbar {
                padding: 0.75rem 0;
            }
            .logo {
                font-size: 1.4rem;
            }
            .logo-icon {
                width: 38px;
                height: 38px;
                font-size: 1.3rem;
            }
            .hero {
                padding: 6rem 0 3rem;
            }
            .hero-text p {
                font-size: 1rem;
            }
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.95rem;
            }
            .cta-final .btn-primary {
                font-size: 1.1rem;
                padding: 0.9rem 2rem;
            }
        }


        /* Section pour les tarifs*/
   
       
        
        .mise-en-place {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
        
        /* Effets de lucioles avec parallaxe */
        .fireflies {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        
        .firefly {
            position: absolute;
            border-radius: 50%;
            filter: blur(1px);
            opacity: 0.8;
            animation: float 15s infinite ease-in-out;
            transform-style: preserve-3d;
        }
        
        /* Lucioles de différentes tailles et couleurs */
        .firefly.large {
            width: 8px;
            height: 8px;
            background: var(--accent-dark);
            box-shadow: 0 0 20px 5px var(--accent-primary);
        }
        
        .firefly.medium {
            width: 6px;
            height: 6px;
            background: var(--primary-light-blue);
            box-shadow: 0 0 15px 4px var(--primary-light-blue);
        }
        
        .firefly.small {
            width: 4px;
            height: 4px;
            background: white;
            box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.8);
        }
        
        /* Positions et animations variées */
        .firefly:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; animation-duration: 20s; }
        .firefly:nth-child(2) { top: 70%; left: 90%; animation-delay: 2s; animation-duration: 18s; }
        .firefly:nth-child(3) { top: 40%; left: 20%; animation-delay: 4s; animation-duration: 22s; }
        .firefly:nth-child(4) { top: 80%; left: 50%; animation-delay: 6s; animation-duration: 16s; }
        .firefly:nth-child(5) { top: 25%; left: 70%; animation-delay: 8s; animation-duration: 19s; }
        .firefly:nth-child(6) { top: 60%; left: 10%; animation-delay: 10s; animation-duration: 21s; }
        .firefly:nth-child(7) { top: 35%; left: 85%; animation-delay: 12s; animation-duration: 17s; }
        .firefly:nth-child(8) { top: 75%; left: 30%; animation-delay: 14s; animation-duration: 23s; }
        .firefly:nth-child(9) { top: 20%; left: 40%; animation-delay: 1s; animation-duration: 24s; }
        .firefly:nth-child(10) { top: 55%; left: 65%; animation-delay: 3s; animation-duration: 15s; }
        .firefly:nth-child(11) { top: 45%; left: 15%; animation-delay: 5s; animation-duration: 20s; }
        .firefly:nth-child(12) { top: 85%; left: 75%; animation-delay: 7s; animation-duration: 18s; }
        
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.7;
            }
            25% {
                transform: translate(30px, -20px) scale(1.2);
                opacity: 1;
            }
            50% {
                transform: translate(-20px, 30px) scale(0.8);
                opacity: 0.5;
            }
            75% {
                transform: translate(40px, 10px) scale(1.1);
                opacity: 0.9;
            }
        }
        
        /* Effet de scintillement supplémentaire */
        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        
        .firefly::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, currentColor 0%, transparent 70%);
            transform: translate(-50%, -50%);
            opacity: 0.3;
            animation: twinkle 3s infinite ease-in-out;
        }
        
        /* Effet parallaxe au scroll */
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 120%;
            height: 120%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(46, 92, 184, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 209, 102, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(108, 140, 213, 0.06) 0%, transparent 50%);
            transform: translateZ(-1px) scale(2);
            z-index: -1;
            transition: transform 0.1s ease-out;
        }
        
        .mise-en-place-content {
            position: relative;
            z-index: 1;
            transform: translateZ(0);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-header h1 {
            font-size: 2.8rem;
            color: #1a3a6c;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .section-header p {
            font-size: 1.4rem;
            color: #000102;
            max-width: 600px;
            margin: 0 auto 25px;
        }
        
        .highlight {
            color: #f88b8b;
            font-weight: bold;
            background: linear-gradient(135deg, #330000 0%, #ba0000 50%, #000000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .etapes-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .etape {
            display: flex;
            align-items: flex-start;
            padding: 30px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }
        
        .etape::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-light-blue));
            transition: all 0.4s ease;
        }
        
        .etape::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(46, 92, 184, 0.03), rgba(106, 157, 255, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        /* Effet Hover */
        .etape:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 15px 35px rgba(46, 92, 184, 0.2);
            background: rgba(255, 255, 255, 0.95);
        }
        
        .etape:hover::before {
            width: 8px;
            background: linear-gradient(135deg, #330000 0%, #ba0000 50%, #000000 100%);
        }
        
        .etape:hover::after {
            opacity: 1;
        }
        
        .etape:hover .numero {
            transform: scale(1.1);
            background: linear-gradient(135deg, #330000 0%, #ba0000 50%, #000000 100%);
            box-shadow: 0 8px 20px rgba(3, 111, 235, 0.4);
        }
        
        .etape:hover .etape-content h3 {
            color: var(--primary-light-blue);
            transform: translateX(5px);
        }
        
        .etape:hover .etape-content p {
            transform: translateX(3px);
        }
        
        .numero {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-light-blue));
            color: white;
            border-radius: 50%;
            font-size: 1.8rem;
            font-weight: bold;
            margin-right: 25px;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(46, 92, 184, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1;
        }
        
        .etape-content {
            flex: 1;
            z-index: 1;
        }
        
        .etape-content h3 {
            font-size: 1.6rem;
            color: #1a3a6c;
            margin-bottom: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .etape-content p {
            color: #4a5568;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .contact-info {
            color: var(--primary-dark-blue);
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .etape:hover .contact-info {
            color: var(--primary-light-blue);
        }
        
        .cta-container {
            text-align: center;
            margin-top: 40px;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-light-blue));
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 20px rgba(46, 92, 184, 0.3);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(46, 92, 184, 0.4);
            background:  linear-gradient(135deg, #330000 0%, #ba0000 50%, #000000 100%);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button i {
            margin-left: 10px;
            font-size: 1.1rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2.2rem;
            }
            
            .section-header p {
                font-size: 1.2rem;
            }
            
            .etape {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
            }
            
            .numero {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .etape::before {
                width: 100%;
                height: 5px;
            }
            
            .etape:hover::before {
                width: 100%;
                height: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .mise-en-place {
                padding: 60px 0;
            }
            
            .section-header h1 {
                font-size: 1.8rem;
            }
            
            .etape-content h3 {
                font-size: 1.4rem;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 1.1rem;
            }
        }
        

            /* Pour la video avec effet paralax */
    /* --- Section Parallaxe --- */
/* --- Section Parallaxe --- */
.video-section {
  position: relative;
  background-image: url('images/paralaxe.png');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
}

.video-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #330000 0%, #ba0000 50%, #000000 100%);
  color: white;
}

/* --- Bouton Play --- */
.play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70% { box-shadow: 0 0 0 25px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* --- Modal Vidéo --- */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  padding: 20px;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Wrapper pour garder les proportions naturelles --- */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* ✅ garde le bon ratio sans déformation */
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ pas de rognage, conserve la forme originale */
  background: #000;
  border-radius: 15px;
  outline: none;
  pointer-events: none; /* empêche clic droit (téléchargement) */
}

/* --- Bouton de fermeture --- */
.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease, color 0.3s ease;
}

.close-modal:hover {
  transform: scale(1.2);
  color: #ffd166;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .video-content h2 {
    font-size: 1.8rem;
  }
  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  .video-modal-content {
    width: 100%;
    border-radius: 10px;
  }
  .video-wrapper {
    aspect-ratio: 9 / 16; /* ✅ Format vertical adapté pour mobile */
  }
}



.hero_video {
    position: relative;
    width: 100%;
    height: 100vh; /* pleine hauteur */
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;      /* remplit tout l’espace */
    object-position: top;   /* montre le haut de la vidéo */
    z-index: -1;
}


.hero_video .container,
.hero_video .hero-content {
    position: relative;
    z-index: 1; /* contenu au-dessus de la vidéo */
    color: #fff; /* texte blanc pour contraste */
}



 /* ======= Section dynamique ======= */
  .dynamic-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
      background: rgb(0, 0, 0);
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 4rem;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1s ease;
  }
/* Ajout d'une classe pour inverser l'ordre texte/image */
.slide.reverse {
    flex-direction: row-reverse;
}

/* Animation gauche -> droite */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-80px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Animation droite -> gauche */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(80px); }
    to { opacity: 1; transform: translateX(0); }
}

.text.animate-left {
    animation: slideInLeft 1.2s ease forwards;
}

.text.animate-right {
    animation: slideInRight 1.2s ease forwards;
}

.image.animate-left {
    animation: slideInLeft 1.2s ease forwards;
}

.image.animate-right {
    animation: slideInRight 1.2s ease forwards;
}

  .slide.active {
    opacity: 1;
    z-index: 2;
  }

  .text {
    flex: 1;
    padding: 2rem;
    font-size: 1.3rem;
    opacity: 0;
    color: white;
  }

  .text h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color:white
  }
.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    background: transparent; /* <- important pour ne pas avoir de fond blanc */
}

.image img {
    width: auto;           /* laisser la largeur s’adapter à la hauteur */
    max-width: 100%;       /* ne pas dépasser le conteneur */
    height: 350px;         /* hauteur fixe pour uniformité */
    object-fit: contain;   /* garde l’image entière visible */
    border-radius: 20px;
    background: transparent; /* <- pour les PNG transparents */
}

  /* ======= Animations ======= */
  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-80px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(80px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .text.animate-left {
    animation: slideInLeft 1.2s ease forwards;
  }

  .image.animate-right {
    animation: slideInRight 1.2s ease forwards;
  }

  /* ======= Responsive ======= */
  @media (max-width: 768px) {
    .slide {
      flex-direction: column;
      text-align: center;
      height: auto;
      padding: 2rem;
    }
    .text, .image {
      width: 100%;
      padding: 1rem;
    }
    .image img {
      width: 100%;
    }
    .btn-container {
      bottom: 20px;
    }
    .section-title {
      font-size: 2rem;
    }
  }
 .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
  }

  .image img {
    width: 90%;
    max-width: 500px; /* taille maximale commune */
    height: 25°0px;    /* hauteur fixe pour uniformité */
    object-fit: contain; /* garde l’image entière visible */
    border-radius: 20px;
    /* fond doux pour images transparentes */
  }
