/* ============================================================
       VARIABLES CSS GLOBALES
       Définies une seule fois ici, réutilisées partout dans le CSS
       Pour changer une couleur sur tout le site : modifie-la ici !
    ============================================================ */
    :root {
      --surface: #F6F7F4;   /* Couleur de fond principale (blanc cassé légèrement vert) */
      --ink: #11201B;        /* Couleur du texte principal (vert très foncé, quasi noir) */
      --spark: #D6FF3D;      /* Couleur d'accent jaune-vert vif (la signature SparkClean) */
      --spark-dim: #aec92e;  /* Version plus sombre du jaune-vert (pour les étoiles) */
      --steel: #C7D1CC;      /* Gris-vert clair (utilisé pour les bordures discrètes) */
      --teal: #5C7A71;       /* Vert moyen (utilisé pour les eyebrows / labels) */
      --white: #FFFFFF;      /* Blanc pur (fond des cartes) */
      --radius: 18px;        /* Arrondi standard des coins des cartes */
    }

    /* ============================================================
       RESET CSS
       Supprime les marges et paddings par défaut des navigateurs
       pour avoir un point de départ propre et cohérent
    ============================================================ */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    /* box-sizing: border-box → les paddings sont inclus dans la largeur totale */

    html { scroll-behavior: smooth; }
    /* scroll-behavior: smooth → les liens d'ancrage (#section) scrollent doucement */

    body {
      background: var(--surface);  /* Fond blanc cassé sur toute la page */
      color: var(--ink);            /* Couleur de texte par défaut */
      font-family: 'Inter', sans-serif; /* Police par défaut pour tout le texte */
      overflow-x: hidden;           /* Empêche le scroll horizontal non voulu */
    }

    /* Classe utilitaire pour la police monospace (style code/données) */
    .mono { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; }

    /* Tous les titres utilisent Unbounded, serrés et sans espace entre les lettres */
    h1, h2, h3 { font-family: 'Unbounded', sans-serif; line-height: 1.05; letter-spacing: -0.01em; }

    /* Les liens héritent de la couleur du texte parent et n'ont pas de soulignement */
    a { color: inherit; text-decoration: none; }

    /* Les images ne dépassent jamais leur conteneur */
    img { max-width: 100%; display: block; }

    /* ============================================================
       NAVIGATION (HEADER)
       Barre de navigation fixe en haut de la page
    ============================================================ */
    header {
      position: fixed;          /* Reste visible même en scrollant */
      top: 0; left: 0; right: 0;
      z-index: 100;             /* Reste au-dessus de tout le reste */
      display: flex;
      align-items: center;
      justify-content: space-between; /* Logo à gauche, nav au centre, bouton à droite */
      padding: 22px 5%;
      background: rgba(246, 247, 244, 0.85); /* Fond semi-transparent */
      backdrop-filter: blur(10px);            /* Effet flou derrière le header */
      border-bottom: 1px solid rgba(17, 32, 27, 0.08); /* Ligne très discrète en bas */
    }

    /* Logo SparkClean avec le point vert */
    .logo {
      font-family: 'Unbounded', sans-serif;
      font-weight: 700;
      font-size: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none; /* Supprime le point de liste si dans un <li> */
    }

    /* Le point vert animé à côté du logo */
    .logo .dot {
      width: 10px; height: 10px;
      border-radius: 50%;               /* Cercle parfait */
      background: var(--spark);         /* Jaune-vert vif */
      box-shadow: 0 0 0 4px rgba(214, 255, 61, 0.25); /* Halo autour du point */
    }

    /* Liste des liens de navigation */
    nav ul { display: flex; gap: 36px; list-style: none; }

    /* Style des liens de navigation */
    nav a {
      font-size: 14px;
      font-weight: 500;
      opacity: 0.75;              /* Légèrement transparent par défaut */
      transition: opacity .2s;   /* Transition douce au survol */
    }
    nav a:hover { opacity: 1; } /* Pleinement visible au survol */

    /* Lien actif (page courante) avec soulignement jaune */
    nav a.current { opacity: 1; position: relative; }
    nav a.current::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -6px;
      height: 2px;
      background: var(--spark); /* Barre jaune-vert sous le lien actif */
    }

    /* Bouton "Devis gratuit" dans la navigation */
    .nav-cta {
      background: var(--ink);      /* Fond foncé */
      color: var(--surface);       /* Texte clair */
      padding: 10px 20px;
      border-radius: 30px;         /* Très arrondi (style pill) */
      font-size: 14px;
      font-weight: 600;
      transition: transform .2s ease;
    }
    .nav-cta:hover { transform: translateY(-2px); } /* Monte légèrement au survol */

    /* Bouton hamburger (menu mobile) - caché par défaut sur desktop */
    .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
    .burger span { width: 24px; height: 2px; background: var(--ink); }

    /* ============================================================
       SECTION HERO (Accueil)
       La première grande section avec le titre et l'effet wipe
    ============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;          /* Au moins toute la hauteur de l'écran */
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 140px 5% 60px;    /* padding-top 140px pour passer sous la navbar fixe */
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Grille 2 colonnes : texte à gauche, carte wipe à droite */
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr; /* Colonne gauche légèrement plus large */
      gap: 60px;
      align-items: center;
    }

    /* Label au-dessus du titre (ex: "Nettoyage professionnel · Île-de-France") */
    .eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--teal);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    /* Petit trait horizontal avant le label */
    .eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--teal); }

    /* Titre principal H1 - taille fluide entre 40px et 76px selon l'écran */
    .hero h1 { font-size: clamp(40px, 5.6vw, 76px); font-weight: 800; margin-bottom: 22px; }

    /* Le mot "spark" en surbrillance jaune dans le titre */
    .hero h1 em {
      font-style: normal;
      color: var(--ink);
      background: var(--spark);   /* Fond jaune-vert */
      padding: 0 10px;
      border-radius: 6px;
      display: inline-block;
    }

    /* Paragraphe d'introduction sous le titre */
    .hero p.lede { font-size: 18px; line-height: 1.6; opacity: 0.78; max-width: 480px; margin-bottom: 34px; }

    /* Conteneur des deux boutons CTA du hero */
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

    /* Bouton principal (fond foncé) */
    .btn-primary {
      background: var(--ink);
      color: var(--surface);
      padding: 16px 28px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform .2s ease, background .2s ease;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover { transform: translateY(-3px); background: #0a1411; }

    /* Bouton secondaire (bordure, fond transparent) */
    .btn-secondary {
      border: 1.5px solid var(--ink);
      padding: 16px 26px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 15px;
      transition: background .2s ease;
    }
    .btn-secondary:hover { background: rgba(17, 32, 27, 0.06); }

    /* ============================================================
       CARTE WIPE (effet "avant/après" interactif)
       L'utilisateur fait glisser pour voir la différence
    ============================================================ */
    .wipe-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;           /* Cache ce qui dépasse les bords arrondis */
      aspect-ratio: 1/1.05;      /* Légèrement plus haute que large */
      box-shadow: 0 30px 60px -20px rgba(17, 32, 27, 0.25);
      cursor: grab;               /* Curseur "main ouverte" pour indiquer qu'on peut glisser */
      user-select: none;          /* Empêche la sélection de texte en glissant */
      touch-action: none;         /* Gère les événements tactiles manuellement */
    }

    /* Les deux couches superposées (sale et propre) */
    .wipe-layer { position: absolute; inset: 0; width: 100%; height: 100%; }

    /* Les images remplissent toute la couche, sans déformation */
.wipe-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* L'image couvre toute la zone sans s'étirer */
  display: block;
  pointer-events: none;     /* Les clics passent à travers (utile pour le drag) */
}

 /*   /* Couche "avant" (sale) - dégradé brun/beige 
    .wipe-dirty {
      background:
        radial-gradient(circle at 30% 20%, rgba(120, 100, 60, 0.35), transparent 40%),
        repeating-linear-gradient(115deg, rgba(80, 70, 40, 0.18) 0px, rgba(80, 70, 40, 0.18) 2px, transparent 2px, transparent 14px),
        linear-gradient(160deg, #8a8264, #5e5a44);
      filter: saturate(0.7) brightness(0.85);
    }*/

    /* Couche "après" (propre) - dégradé vert SparkClean
    .wipe-clean {
      background: linear-gradient(155deg, #eafcd8 0%, #d6ff3d 38%, #aee85e 70%, #6fae3f 100%);
    }
 */
    /* Grille subtile sur les deux couches pour un effet texture 
    .wipe-dirty::after, .wipe-clean::after {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 30px 30px;
    }*/


/* Couche "avant" (sale) - le fond décoratif a été retiré,
   on garde juste un fond neutre au cas où l'image charge lentement */
.wipe-dirty {
  background: var(--steel);
}

/* Couche "après" (propre) - fond neutre aussi */
.wipe-clean {
  background: var(--steel);
}



    /* La couche propre est "clipée" : seule la partie gauche est visible
       Le JavaScript modifie ce clip-path en temps réel selon le glissement */
    .wipe-clean { clip-path: polygon(0 0, 38% 0, 38% 100%, 0 100%); }

    /* La barre verticale de séparation entre avant/après */
    .wipe-handle {
      position: absolute;
      top: 0; bottom: 0;
      left: 38%;                  /* Position initiale à 38% */
      width: 3px;
      background: var(--white);
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    }

    /* Le cercle "↔" au milieu de la barre */
    .wipe-handle::after {
      content: '↔';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 46px; height: 46px;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--ink);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    /* Labels "Avant" et "SparkClean" en bas de la carte */
    .wipe-label {
      position: absolute;
      bottom: 18px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 6px 12px;
      border-radius: 20px;
      background: rgba(17, 32, 27, 0.55);
      color: #fff;
      backdrop-filter: blur(4px);
    }
    .label-before { left: 18px; }   /* "Avant" à gauche */
    .label-after { right: 18px; }   /* "SparkClean" à droite */

    /* Indicateur "défiler" en bas du hero */
    .scroll-cue {
      position: absolute;
      bottom: 28px; left: 5%;
      font-size: 12px; opacity: 0.5;
      display: flex; align-items: center; gap: 8px;
      font-family: 'JetBrains Mono', monospace;
    }
    .scroll-cue .line {
      width: 1px; height: 30px;
      background: var(--ink); opacity: 0.4;
      animation: cue 2s ease-in-out infinite; /* Animation de pulsation verticale */
    }
    @keyframes cue { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.4); } }

    /* ============================================================
       BANDE DE STATISTIQUES (trust strip)
       Les 4 chiffres clés sous le hero
    ============================================================ */
    .trust {
      border-top: 1px solid rgba(17, 32, 27, 0.1);
      border-bottom: 1px solid rgba(17, 32, 27, 0.1);
      padding: 26px 5%;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;           /* Passe à la ligne sur mobile */
      max-width: 1400px;
      margin: 0 auto;
    }
    .trust-item {
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px; opacity: 0.7;
      display: flex; gap: 8px; align-items: baseline;
    }
    .trust-item b { font-family: 'Unbounded', sans-serif; font-size: 20px; color: var(--ink); opacity: 1; }

    /* ============================================================
       SECTIONS GÉNÉRIQUES
       Padding et largeur max pour toutes les sections de contenu
    ============================================================ */
    .section { padding: 120px 5%; max-width: 1400px; margin: 0 auto; }

    /* En-tête de section (eyebrow + titre + description) */
    .section-head { margin-bottom: 54px; max-width: 640px; }
    .section-head .eyebrow { margin-bottom: 14px; }
    .section-head h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 700; }
    .section-head p { margin-top: 14px; opacity: 0.7; font-size: 16px; line-height: 1.6; }

    /* ============================================================
       ONGLETS (TABS) - Section Services
       Les boutons "Particuliers / Bureaux / Bâtiments"
    ============================================================ */
    .tabs { display: flex; gap: 10px; margin-bottom: 46px; flex-wrap: wrap; }

    /* Bouton d'onglet inactif */
    .tab-btn {
      padding: 12px 22px;
      border-radius: 30px;
      border: 1.5px solid rgba(17, 32, 27, 0.15);
      background: transparent;
      font-family: 'Inter'; font-weight: 600; font-size: 14px;
      cursor: pointer;
      transition: all .25s ease;
      color: var(--ink);
    }
    /* Bouton d'onglet actif (fond foncé) */
    .tab-btn.active { background: var(--ink); color: var(--surface); border-color: var(--ink); }

    /* Panneau d'onglet caché par défaut */
    .tab-panel { display: none; }
    /* Panneau d'onglet visible (grille 3 colonnes) */
    .tab-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

    /* ============================================================
       CARTES DE SERVICES
       Les cartes blanches avec icône, titre et description
    ============================================================ */
    .surface-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 30px 26px;
      border: 1px solid rgba(17, 32, 27, 0.08);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    /* Effet de survol : la carte monte légèrement */
    .surface-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px -16px rgba(17, 32, 27, 0.18);
    }
    .surface-icon { width: 42px; height: 42px; margin-bottom: 18px; }
    .surface-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; font-family: 'Inter'; }
    .surface-card p { font-size: 14px; opacity: 0.65; line-height: 1.55; }
    /* Label coloré en bas de la carte (ex: "Forfait à l'heure") */
    .surface-card .tag {
      display: inline-block;
      margin-top: 14px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--teal);
    }

    /* ============================================================
       SECTION MÉTHODE (Process)
       Bloc foncé avec les 3 étapes
    ============================================================ */
    .process {
      background: var(--ink);       /* Fond vert très foncé */
      color: var(--surface);        /* Texte clair */
      border-radius: 32px;
      padding: 80px 6%;
    }
    /* Les titres et textes dans le bloc foncé sont clairs */
    .process .section-head h2, .process .section-head p { color: var(--surface); }
    .process .eyebrow { color: var(--spark); }           /* Eyebrow en jaune-vert */
    .process .eyebrow::before { background: var(--spark); } /* Trait aussi en jaune-vert */

    /* Grille 3 colonnes pour les étapes */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }

    /* Chaque étape */
    .step { padding: 0 28px; position: relative; }
    /* Séparateur vertical entre les étapes (sauf la première) */
    .step:not(:first-child) { border-left: 1px solid rgba(246, 247, 244, 0.15); }
    /* Numéro de l'étape en jaune-vert */
    .step .num { font-family: 'JetBrains Mono', monospace; color: var(--spark); font-size: 14px; margin-bottom: 18px; display: block; }
    .step h3 { font-size: 22px; margin-bottom: 10px; font-weight: 600; font-family: 'Inter'; }
    .step p { font-size: 14px; opacity: 0.65; line-height: 1.6; }

    /* ============================================================
       SECTION ZONE
       Carte + liste des départements
    ============================================================ */
    .zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

    /* Carte illustrée de l'Île-de-France */
    .zone-map {
      position: relative;
      aspect-ratio: 1/0.9;
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(160deg, #e2e6dd, #cdd6c5);
      border: 1px solid rgba(17, 32, 27, 0.1);
    }
    .zone-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }

    /* Points de localisation animés sur la carte */
    .pin {
      position: absolute;
      width: 14px; height: 14px;
      background: var(--spark);
      border-radius: 50%;
      box-shadow: 0 0 0 6px rgba(214, 255, 61, 0.3);
      animation: pulse 2.4s ease-in-out infinite;
    }
    /* Animation de pulsation des points */
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 6px rgba(214, 255, 61, 0.3); }
      50% { box-shadow: 0 0 0 12px rgba(214, 255, 61, 0.12); }
    }

    /* Liste des départements sous forme de badges */
    .zone-list { list-style: none; margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
    .zone-list li {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px; padding: 8px 14px;
      border-radius: 20px;
      background: var(--white);
      border: 1px solid rgba(17, 32, 27, 0.1);
    }

    /* ============================================================
       SECTION AVIS CLIENTS (Témoignages)
    ============================================================ */
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

    /* Carte témoignage */
    .testi-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 30px;
      border: 1px solid rgba(17, 32, 27, 0.08);
    }
    /* Étoiles en jaune-vert */
    .stars { color: var(--spark-dim); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
    .testi-card p { font-size: 15px; line-height: 1.6; opacity: 0.8; margin-bottom: 20px; }
    .testi-who { font-size: 13px; font-weight: 600; opacity: 0.9; }
    .testi-where { font-size: 12px; opacity: 0.5; font-family: 'JetBrains Mono', monospace; }

    /* ============================================================
       SECTION CONTACT
       Bloc vert avec les infos + formulaire
    ============================================================ */
    .contact {
      background: linear-gradient(135deg, #eafcd8, #d6ff3d 60%, #aee85e); /* Dégradé vert vif */
      border-radius: 32px;
      padding: 80px 6%;
      display: grid;
      grid-template-columns: 1fr 1fr; /* Infos à gauche, formulaire à droite */
      gap: 60px;
    }
    .contact h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 16px; font-weight: 700; }
    .contact p.lede { opacity: 0.75; font-size: 16px; max-width: 420px; line-height: 1.6; }
    .contact-points { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
    .contact-points div { display: flex; gap: 12px; align-items: center; font-size: 14px; }
    .contact-points b { display: block; font-family: 'Unbounded', sans-serif; font-size: 15px; margin-bottom: 2px; }

    

    /* Formulaire blanc dans le bloc vert */
    form { background: var(--white); border-radius: 20px; padding: 36px; display: flex; flex-direction: column; gap: 16px; }
    .field { display: flex; flex-direction: column; gap: 6px; }
    /* Label du champ en petites majuscules */
    .field label { font-size: 12px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.6; }
    /* Style commun pour input, select et textarea */
    .field input, .field select, .field textarea {
      border: 1.5px solid rgba(17, 32, 27, 0.15);
      border-radius: 10px; padding: 12px 14px;
      font-size: 14px; font-family: 'Inter';
      background: var(--surface); color: var(--ink);
      resize: none; /* Empêche le redimensionnement du textarea */
    }
    /* Contour foncé quand le champ est sélectionné */
    .field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
    /* Grille 2 colonnes pour "Prénom" et "Téléphone" côte à côte */
    .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    form .btn-primary { justify-content: center; margin-top: 6px; }

    /* ============================================================
       BANDE CTA (appel à l'action)
       Bloc foncé avec un titre et un bouton jaune
    ============================================================ */
    .cta-band {
      background: var(--ink);
      color: var(--surface);
      border-radius: 28px;
      padding: 54px 6%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      margin: 0 auto 100px;
      max-width: 1400px;
    }
    .cta-band h3 { font-family: 'Unbounded', sans-serif; font-size: 24px; font-weight: 600; }
    .cta-band p { opacity: 0.65; font-size: 14px; margin-top: 6px; }
    /* Le bouton dans la bande CTA est en jaune-vert (inverse du reste) */
    .cta-band .btn-primary { background: var(--spark); color: var(--ink); }
    .cta-band .btn-primary:hover { background: #c2eb2c; }

    /* ============================================================
       FOOTER
       Pied de page avec logo, liens et copyright
    ============================================================ */
    footer { padding: 60px 5% 30px; max-width: 1400px; margin: 0 auto; }

    /* Partie haute du footer : logo + colonnes de liens */
    .footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(17, 32, 27, 0.1);
    }

    /* Colonnes de liens dans le footer */
    .footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
    .footer-col h4 { font-size: 13px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; opacity: 0.5; margin-bottom: 14px; }
    .footer-col a { display: block; font-size: 14px; margin-bottom: 10px; opacity: 0.75; }
    .footer-col a:hover { opacity: 1; }

    /* Partie basse du footer : copyright */
    .footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 12px; opacity: 0.5; flex-wrap: wrap; gap: 10px; }

    /* ============================================================
       RESPONSIVE DESIGN
       Adaptations pour les écrans < 980px (tablettes/mobiles)
    ============================================================ */
    @media (max-width: 980px) {
      nav, .nav-cta { display: none; }     /* Cache la nav et le bouton devis */
      .burger { display: flex; }            /* Affiche le menu hamburger */
      nav.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--surface); padding: 20px 5%; gap: 20px; border-bottom: 1px solid rgba(17,32,27,0.1); z-index: 99; }
      nav.open ul { flex-direction: column; gap: 16px; }
      .hero-grid { grid-template-columns: 1fr; }   /* Une seule colonne */
      .wipe-card { order: -1; max-height: 380px; } /* Carte wipe en premier */
      .tab-panel.active { grid-template-columns: 1fr 1fr; } /* 2 colonnes au lieu de 3 */
      .steps { grid-template-columns: 1fr; gap: 34px; } /* Étapes empilées */
      .step:not(:first-child) { border-left: none; border-top: 1px solid rgba(246, 247, 244, 0.15); padding-top: 30px; }
      .zone-grid, .contact, .footer-top { grid-template-columns: 1fr; } /* Une colonne */
      #offres > div { grid-template-columns: 1fr; } /* Section offres en une colonne sur mobile */
      .testi-grid { grid-template-columns: 1fr; } /* Témoignages empilés */

    #offres > div {
    grid-template-columns: 1fr !important;
    padding: 30px 20px !important;
  }

  



    }




    /* Adaptations pour les très petits écrans < 560px */
    @media (max-width: 560px) {
      .tab-panel.active { grid-template-columns: 1fr; } /* Une seule colonne */
      .trust { justify-content: flex-start; }
      .row2 { grid-template-columns: 1fr; } /* Champs du formulaire empilés */
    }

    /* Désactive toutes les animations pour les personnes qui préfèrent moins de mouvement */
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }


    