/* ============================================
           FEUILLE DE STYLES PRINCIPALE
           maintenance-sav-wordpress
           ============================================ */
        /* ============================================
           VARIABLES CSS
           ⚠️ MODIFIER ICI pour changer les couleurs du site
           ============================================ */
        :root {
            /* Palette de bleus */
            --blue-900: #1e3a5f;    /* Bleu très foncé (hero, footer) */
            --blue-800: #1e4d7b;    /* Bleu foncé */
            --blue-700: #2563eb;    /* Bleu principal (boutons) */
            --blue-600: #3b82f6;    /* Bleu vif */
            --blue-500: #60a5fa;    /* Bleu moyen */
            --blue-400: #93c5fd;    /* Bleu clair (accents) */
            --blue-100: #dbeafe;    /* Bleu très clair */
            --blue-50: #eff6ff;     /* Bleu quasi-blanc */
            
            /* Neutres */
            --white: #ffffff;
            --gray-900: #1f2937;    /* Texte foncé */
            --gray-700: #374151;
            --gray-600: #4b5563;    /* Texte normal */
            --gray-500: #6b7280;    /* Texte secondaire */
            --gray-300: #d1d5db;    /* Bordures */
            --gray-200: #e5e7eb;
            --gray-100: #f3f4f6;    /* Fonds clairs */
            
            /* Ombres */
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 25px -3px rgb(0 0 0 / 0.15);
            
            /* Rayons de bordure */
            --radius: 12px;
            --radius-sm: 8px;
        }

        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;  /* Défilement fluide pour les ancres */
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-600);
            background-color: var(--white);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        /* ============================================
           TYPOGRAPHIE
           ============================================ */
        h1, h2, h3, h4, h5, h6 {
            color: var(--gray-900);
            font-weight: 700;
            line-height: 1.2;
        }

        /* H1 : Utilisé uniquement dans le Hero */
        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);  /* Responsive : 32px à 56px */
            font-weight: 800;
        }

        /* H2 : Titres de sections */
        h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);  /* 28px à 40px */
            margin-bottom: 20px;
        }

        /* H3 : Sous-titres, cartes */
        h3 {
            font-size: 1.25rem;  /* 20px */
            margin-bottom: 12px;
        }

        p {
            margin-bottom: 16px;
        }

        /* ============================================
           LAYOUT : CONTENEURS
           ============================================ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-narrow {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }

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

        /* Intro de section (texte sous le H2) */
        .section-intro {
            font-size: 1.125rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto 48px;
        }

        /* ============================================
           BOUTONS
           ⚠️ Classes réutilisables pour tous les boutons
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        /* Bouton principal bleu */
        .btn-primary {
            background: var(--blue-700);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--blue-800);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Bouton secondaire (contour) */
        .btn-secondary {
            background: var(--white);
            color: var(--blue-700);
            border: 2px solid var(--blue-700);
        }

        .btn-secondary:hover {
            background: var(--blue-50);
        }

        /* Bouton CTA (call-to-action) - plus visible */
        .btn-cta {
            background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
            color: var(--white);
            padding: 16px 32px;
            font-size: 1.1rem;
            box-shadow: var(--shadow);
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* ============================================
           HEADER / NAVIGATION
           ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        /* Header transparent au départ (devient blanc au scroll) */
        .header.transparent {
            background: transparent;
            box-shadow: none;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ============================================
           LOGO
           ⚠️ REMPLACER le texte par ton logo image si besoin
           ============================================ */
        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blue-700);
            width:100px;
        }

        .logo span {
            color: var(--blue-400);
        }

        .header.transparent .logo {
            color: var(--white);
        }

        /* ============================================
           NAVIGATION DESKTOP
           ============================================ */
        .nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--gray-600);
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--blue-700);
        }

        .header.transparent .nav-links a {
            color: var(--blue-100);
        }

        .header.transparent .nav-links a:hover {
            color: var(--white);
        }

        /* Bouton CTA dans le header */
        .nav .btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        /* ============================================
           MENU MOBILE (hamburger)
           ============================================ */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--gray-700);
            transition: all 0.3s ease;
        }

        .header.transparent .mobile-menu-btn span {
            background: var(--white);
        }

        /* Menu mobile ouvert */
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: var(--shadow);
            padding: 20px;
        }

        .nav-mobile.active {
            display: block;
        }

        .nav-mobile a {
            display: block;
            padding: 12px 0;
            color: var(--gray-700);
            border-bottom: 1px solid var(--gray-100);
        }

        /* ============================================
           SECTION HERO
           La première section visible, cruciale pour l'impact
           ============================================ */
        .hero {
            padding: 140px 0 80px;  /* 140px top pour compenser le header fixe */
            background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        /* Motif décoratif en arrière-plan */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            color: var(--white);
            margin-bottom: 24px;
        }

        /* Le mot "SAV" en couleur différente */
        .hero-content h1 span {
            display: block;
            color: var(--blue-400);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--blue-100);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Bouton outline blanc dans le hero */
        .hero-cta .btn-outline {
            background: transparent;
            border: 2px solid var(--blue-400);
            color: var(--white);
        }

        .hero-cta .btn-outline:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Image du hero 
        .hero-image img {
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }*/

        /* Points forts sous le CTA */
        .hero-features {
            display: flex;
            gap: 24px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--blue-100);
            font-size: 0.95rem;
        }

        .hero-feature svg {
            width: 20px;
            height: 20px;
            color: var(--blue-400);
        }

       /* ============================================
   ANIMATIONS HERO - MAINTENANCE SAV WORDPRESS
   ============================================
   
   2 OPTIONS DISPONIBLES :
   - Option 1 : Parallax au survol (effet 3D)
   - Option 2 : Écrous/éléments flottants en boucle
   
   Tu peux utiliser l'une, l'autre, ou les deux !
   
============================================ */


/* ============================================
   OPTION 1 : PARALLAX AU SURVOL
   ============================================
   
   L'image se déplace légèrement dans le sens 
   inverse du curseur, créant un effet de profondeur.
   
   Pour l'activer : 
   - Ajoute la classe "parallax-hover" à ton conteneur d'image
   - Inclus le JavaScript ci-dessous
   
============================================ */

/* Conteneur de l'image avec effet 3D */
.hero-image-parallax {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-image-parallax img {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Effet de survol léger sans JS (alternative simple) */
.hero-image-simple:hover img {
    transform: translateY(-10px) scale(1.02);
    transition: transform 0.4s ease;
}


/* ============================================
   OPTION 2 : ÉLÉMENTS FLOTTANTS EN BOUCLE
   ============================================
   
   Les écrous/engrenages flottent doucement 
   de quelques pixels, créant un effet "vivant".
   
   2 sous-options :
   A) Animation sur l'image entière (plus simple)
   B) Animation sur des PNG séparés (plus contrôlé)
   
============================================ */

/* -----------------------------------------
   OPTION 2A : Animation légère sur l'image entière
   ----------------------------------------- */
.hero-image-float img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Variante avec rotation subtile */
.hero-image-float-rotate img {
    animation: floatRotate 8s ease-in-out infinite;
}

@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}


/* -----------------------------------------
   OPTION 2B : Écrous séparés qui flottent
   ----------------------------------------- 
   
   Structure HTML requise :
   
   <div class="hero-image hero-image-animated">
       <img src="personnage.png" class="hero-main-image" alt="...">
       <img src="ecrou-1.png" class="floating-element ecrou-1" alt="">
       <img src="ecrou-2.png" class="floating-element ecrou-2" alt="">
       <img src="ecrou-3.png" class="floating-element ecrou-3" alt="">
   </div>
   
----------------------------------------- */

.hero-image-animated {
    position: relative;
    display: inline-block;
}

.hero-main-image {
    position: relative;
    z-index: 1;
}

/* Éléments flottants (écrous, engrenages) */
.floating-element {
    position: absolute;
    z-index: 2;
    pointer-events: none; /* Ne bloque pas les clics */
}

/* Écrou haut-droite */
.ecrou-1 {
    top: 5%;
    right: 10%;
    width: 40px;
    animation: floatEcrou1 4s ease-in-out infinite;
}

/* Écrou milieu-droite */
.ecrou-2 {
    top: 40%;
    right: 0%;
    width: 50px;
    animation: floatEcrou2 5s ease-in-out infinite;
}

/* Écrou bas-droite */
.ecrou-3 {
    bottom: 20%;
    right: 5%;
    width: 35px;
    animation: floatEcrou3 6s ease-in-out infinite;
}

/* Engrenage haut-gauche (si tu en as un) */
.wp {
    top: 10%;
    left: 5%;
    width: 60px;
    animation: rotateGear 20s linear infinite;
}

/* Animations des écrous - mouvement vers l'extérieur */
@keyframes floatEcrou1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(5px, -8px) rotate(10deg);
    }
}

@keyframes floatEcrou2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(8px, 5px) rotate(-15deg);
    }
}

@keyframes floatEcrou3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(6px, 8px) rotate(12deg);
    }
}

/* Rotation continue pour les engrenages */
@keyframes rotateGear {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ============================================
   OPTION 3 : COMBINAISON (RECOMMANDÉE)
   ============================================
   
   - Parallax au survol (desktop)
   - Float léger en continu (tous devices)
   
============================================ */

.hero-image-combo {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-image-combo img {
    animation: floatSubtle 6s ease-in-out infinite;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* Animation de flottement très subtile */
@keyframes floatSubtle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Au survol, le parallax prend le dessus */
.hero-image-combo:hover img {
    animation-play-state: paused;
}


/* ============================================
   ANIMATIONS BONUS
   ============================================ */

/* Effet pulse sur le bouton CTA */
.btn-cta-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 99, 235, 0.6);
    }
}

/* Apparition des éléments au scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Points forts qui apparaissent en décalé */
.hero-feature {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-feature.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-feature:nth-child(1) { transition-delay: 0.1s; }
.hero-feature:nth-child(2) { transition-delay: 0.2s; }
.hero-feature:nth-child(3) { transition-delay: 0.3s; }
.hero-feature:nth-child(4) { transition-delay: 0.4s; }


/* ============================================
   RESPONSIVE : Désactiver certains effets sur mobile
   ============================================ */

@media (max-width: 768px) {
    /* Réduire l'amplitude des animations sur mobile */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }
    
    @keyframes floatSubtle {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-5px); }
    }
}

/* Désactiver les animations si l'utilisateur préfère */
@media (prefers-reduced-motion: reduce) {
    .hero-image-float img,
    .hero-image-float-rotate img,
    .hero-image-combo img,
    .floating-element,
    .btn-cta-pulse {
        animation: none;
    }
}

        /* ============================================
           SECTION INTRO
           Court texte d'accroche après le hero
           ============================================ */
        .intro {
            padding: 60px 0;
            background: var(--white);
        }

        .intro-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .intro-content p {
            font-size: 1.125rem;
            color: var(--gray-600);
            line-height: 1.8;
        }

        .intro-content strong {
            color: var(--blue-700);
        }

        /* ============================================
           SECTION POURQUOI
           4 cartes expliquant les risques
           ============================================ */
        .pourquoi {
            padding: 80px 0;
            background: var(--gray-100);
        }

        .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* Force 2 colonnes */
    gap: 24px;
    margin-top: 48px;
}

/* Responsive : 1 colonne sur mobile */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

        .feature-card {
            background: var(--white);
            padding: 32px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-100);
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--blue-50);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.75rem;
        }

        .feature-card h3 {
            color: var(--gray-900);
        }

        .feature-card p {
            color: var(--gray-600);
            margin-bottom: 16px;
        }

        .feature-card ul {
            list-style: none;
            margin: 16px 0 0 0;
        }

        .feature-card li {
            padding: 6px 0;
            color: var(--gray-600);
            font-size: 0.95rem;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .feature-card li::before {
            content: '•';
            color: var(--blue-600);
            font-weight: bold;
        }

        /* ============================================
           SECTION SERVICES
           6 cartes des prestations incluses
           ============================================ */
        .services {
            padding: 80px 0;
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .service-card {
            padding: 28px;
            border-radius: var(--radius);
            border: 1px solid var(--gray-300);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: var(--blue-600);
            box-shadow: var(--shadow);
        }

        .service-card h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--blue-800);
            margin-bottom: 16px;
        }

        .service-card h3 svg {
            width: 24px;
            height: 24px;
            color: var(--blue-600);
            flex-shrink: 0;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 8px 0;
            color: var(--gray-600);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            color: var(--blue-600);
            flex-shrink: 0;
        }

        /* ============================================
           SECTION TARIFS
           3 cartes de pricing + intervention ponctuelle
           ============================================ */
        .tarifs {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 48px;
            align-items: stretch;
        }

        .pricing-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        /* Carte mise en avant (Sérénité) */
        .pricing-card.featured {
            border-color: var(--blue-600);
            transform: scale(1.02);
        }

        .pricing-card.featured:hover {
            transform: scale(1.02) translateY(-4px);
        }

        /* Badge "Recommandé" */
        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
            color: var(--white);
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .pricing-header {
            text-align: center;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--gray-100);
            margin-bottom: 24px;
        }

        .pricing-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        /* ============================================
           PRIX
           ⚠️ MODIFIER ICI pour changer les tarifs
           ============================================ */
        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--blue-700);
            line-height: 1;
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 500;
            color: var(--gray-500);
        }

        .pricing-annual {
            font-size: 0.9rem;
            color: var(--gray-500);
            margin-top: 8px;
        }

        .pricing-features {
            list-style: none;
            flex-grow: 1;
            margin-bottom: 24px;
        }

        .pricing-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--gray-600);
        }

        .pricing-features svg {
            width: 20px;
            height: 20px;
            color: var(--blue-600);
            flex-shrink: 0;
        }

        .pricing-ideal {
            text-align: center;
            padding: 16px;
            background: var(--blue-50);
            border-radius: var(--radius-sm);
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: var(--blue-800);
        }

        .pricing-ideal strong {
            display: block;
            font-size: 0.8rem;
            color: var(--gray-500);
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .pricing-card .btn {
            width: 100%;
        }

        .pricing-note {
            text-align: center;
            margin-top: 32px;
            font-size: 0.9rem;
            color: var(--gray-500);
        }

        /* Bloc intervention ponctuelle */
        .pricing-ponctuel {
            margin-top: 48px;
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px dashed var(--gray-300);
        }

        .pricing-ponctuel-content h3 {
            margin-bottom: 8px;
        }

        .pricing-ponctuel-content p {
            color: var(--gray-600);
            margin-bottom: 0;
        }

        /* ============================================
           SECTION MÉTHODE
           5 étapes de la méthodologie
           ============================================ */
        .methode {
            padding: 80px 0;
            background: var(--gray-100);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: var(--shadow);
        }

        .step h3 {
            color: var(--blue-800);
            margin-bottom: 12px;
        }

        .step p {
            color: var(--gray-600);
            font-size: 0.95rem;
        }

        /* ============================================
           SECTION FAQ
           Accordéon avec questions/réponses
           ============================================ */
        .faq {
            padding: 80px 0;
            background: var(--white);
        }

        .faq-container {
            max-width: 800px;
            margin: 48px auto 0;
        }

        .faq-item {
            border-bottom: 1px solid var(--gray-200);
        }

        .faq-question {
            width: 100%;
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--gray-900);
            transition: color 0.3s ease;
            font-family: inherit;
        }

        .faq-question:hover {
            color: var(--blue-700);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            color: var(--blue-600);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        /* Rotation de l'icône quand ouvert */
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 20px;
        }

        .faq-answer p {
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ============================================
           SECTION CONTACT
           Formulaire de contact
           ============================================ */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
            color: var(--white);
            position: relative;
        }

        /* Motif décoratif */
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .contact-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact h2 {
            color: var(--white);
        }

        .contact-intro {
            color: var(--blue-100);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            text-align: left;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--gray-700);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--gray-300);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--blue-600);
            box-shadow: 0 0 0 3px var(--blue-100);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .contact-form .btn {
            width: 100%;
            margin-top: 8px;
        }

      /* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--blue-900);
    color: var(--gray-300);
    padding: 40px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

        /* ============================================
           RESPONSIVE : TABLETTE (max 968px)
           ============================================ */
        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                text-align: center;
            }

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

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

            .hero-image {
                order: -1;  /* Image au-dessus sur tablette */
            }

            .hero-image img {
                max-width: 400px;
                margin: 0 auto;
            }

            .nav-links {
                display: none;  /* Cache le menu desktop */
            }

            .mobile-menu-btn {
                display: flex;  /* Affiche le bouton hamburger */
            }
        }

        /* ============================================
           RESPONSIVE : MOBILE (max 768px)
           ============================================ */
        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 60px;
            }

            .hero-container {
                gap: 40px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .hero-features {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .hero-image img {
                max-width: 300px;
            }

            .form-row {
                grid-template-columns: 1fr;  /* Champs en colonne */
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-4px);
            }

            .pricing-ponctuel {
                flex-direction: column;
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .steps {
                grid-template-columns: 1fr 1fr;  /* 2 colonnes au lieu de 5 */
            }
        }

        /* ============================================
           RESPONSIVE : PETIT MOBILE (max 480px)
           ============================================ */
        @media (max-width: 480px) {
            .steps {
                grid-template-columns: 1fr;  /* 1 colonne */
            }

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

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

        
    