:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #f59e0b;
  --light: #f8fafc;
  --dark: #111827;
  --gray: #6b7280;
  --accent: #81e6d9;
}

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

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.65;
  min-height: 100vh;
}

/* Désactiver les animations pour les utilisateurs ayant des préférences */
@media (prefers-reduced-motion: reduce) {
  .hero-content, section, .testimonial-card, header, .feature-card, .new-pricing-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* --------------------------------- */
/* HEADER & NAVIGATION */
/* --------------------------------- */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  padding: 1rem 0.5rem;
  position: sticky;
  top: 0; 
  z-index: 100;
  transition: padding 0.3s, font-size 0.3s;
}

/* Sticky Shrink State */
header.header-scrolled {
  padding: 0.5rem 0.5rem;
}
header.header-scrolled .logo {
  font-size: 1.3rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  gap:1.5rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  transition: font-size 0.3s;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.2s;
  border-radius:2px;
}
.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta):focus::after {
  width: 100%;
}
.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(37,99,235,0.08);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover,
.nav-cta:focus {
  background: var(--primary-dark);
  color: white;
}

/* Bouton Menu Burger (caché par défaut sur desktop) */
.menu-toggle {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.menu-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
}

/* --------------------------------- */
/* HERO */
/* --------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -55px; left: 0; right: 0;
  height: 110px;
  background: var(--light);
  transform: skewY(-2.5deg);
  z-index: 1;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInDown 1.3s cubic-bezier(0.19, 1, 0.22, 1); 
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px);}
  to   { opacity: 1; transform: none;}
}
.hero h1 {
  font-size: 2.65rem;
  font-weight: 800;
  margin-bottom: 1.3rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.93;
  font-weight: 500;
}
.buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem;}
.btn {
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.17s cubic-bezier(.41,.78,.41,1.7);
  display: inline-block;
  box-shadow: 0 2px 8px rgba(29,78,216,0.07);
  font-size: 1.03rem;
  border: 0;
}
.btn-primary {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}
.btn-primary:hover, .btn-primary:focus {
  background: transparent;
  color: white !important;
}
.btn-secondary {
  background: var(--secondary);
  color: white;
  border: 2px solid var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: transparent;
  color: var(--secondary) !important;
  border: 2px solid var(--secondary);
}

.hero-image { display: none; }

/* --------------------------------- */
/* SECTION GENERIC & TITRES */
/* --------------------------------- */
section { 
  animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1); 
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px);}
  80% {opacity: 0.85};
  100% { opacity: 1; transform: none;}
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: .5px
}
.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.07rem;
}

/* --------------------------------- */
/* FEATURES */
/* --------------------------------- */
.features {
  padding: 5rem 1rem 3rem;
  background: var(--light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 4px 10px -1px rgba(0,0,0,0.09), 0 2px 6px -1px rgba(0,0,0,0.06);
  transition: transform 0.24s cubic-bezier(.51,.7,.67,1.4), box-shadow 0.21s;
  cursor: pointer;
  position:relative;
}
.feature-card:hover {
  transform: translateY(-7px) scale(1.025) rotate(-.5deg);
  box-shadow: 0 16px 30px -10px rgba(37,99,235,0.15);
}
.feature-icon {
  width: 62px; height:62px;
  background: linear-gradient(140deg,#fff,#dbeafe);
  border-radius: 50%;
  display: flex;align-items: center;justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 1px 3px rgba(37,99,235,0.13);
  border:2.5px solid #eff6ff;
}
.feature-icon svg { width: 36px; height:36px;}
.feature-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.85rem;
  color: var(--dark);
  font-weight:700;
}
.feature-card p { color: var(--gray); font-size: 1.04rem; }

/* --------------------------------- */
/* STATS */
/* --------------------------------- */
.stats {
  background: var(--primary);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
  font-weight: 600;
}
.stats-container {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; max-width: 1100px;margin: 0 auto;
}
.stat-item { flex: 1; min-width: 200px; }
.stat-item h3 {
  font-size: 2.25rem; font-weight: 800; margin-bottom: 0.45rem; letter-spacing: 1.5px;}
.stat-item p { font-size: 1.05rem; opacity: 0.9; font-weight:500; }

/* --------------------------------- */
/* TESTIMONIALS */
/* --------------------------------- */
.testimonials { padding: 5rem 1rem; background: white;}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.2rem;
  max-width: 1100px; margin: 3rem auto 0;
}
.testimonial-card {
  background: var(--light);
  border-radius: 1rem;
  padding: 2.1rem 2rem 2rem;
  box-shadow: 0 5px 14px -5px rgba(64,64,128,0.09);
  transition: transform 0.16s;
  border-left: 6px solid var(--primary);
  position:relative;
  animation: fadeInUp 900ms cubic-bezier(0.19, 1, 0.22, 1);
}
.testimonial-card:hover {
  transform: scale(1.035) rotate(.3deg) translateY(-5px)
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 1.35rem;
  color: var(--dark);
  font-size: 1.06rem;
}
.testimonial-author { display: flex; align-items: center; }
.author-avatar {
  width: 52px;height: 52px; min-width:52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 60%, #60a5fa 100%);
  margin-right: 1rem;
  display: flex;align-items: center;justify-content: center;
  color: white;
  font-weight: 700;
  font-size:1.45rem;
  border:4px solid #fff;
  box-shadow: 0 2px 6px rgba(37,99,235,0.13);
  text-transform: uppercase;
}
.author-info h4 { font-size: 1.07rem; margin-bottom: 0.22rem; font-weight:700;}
.author-info p { font-size: 0.95rem; color: var(--gray); }

/* Google Link (added style for the link at the bottom of Testimonials) */
.google-link {
    text-align: center;
    margin-top: 30px;
}
.google-link a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    background-color: var(--secondary);
    color: white;
    transition: background-color 0.2s;
}
.google-link a:hover {
    background-color: #eab308;
}

/* --------------------------------- */
/* PRICING (Nouvelles cartes uniquement) */
/* --------------------------------- */
.pricing { padding: 5rem 1rem 4rem; background: var(--light);}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 2.2rem;
  max-width: 1100px;
  margin: 3rem auto 0; /* Centrage */
}

/* Styles des nouvelles cartes (Stage, Particuliers, Groupe) */
.section-title h2 { 
    color: var(--secondary); 
}

.pricing-grid-new {
    gap: 2.5rem;
    margin: 0 auto; /* Centrage de la grille */
}
.new-pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #e5e7eb;
}
.new-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -8px rgba(0,0,0,0.15);
}
.new-pricing-card.orange { border-top: 6px solid #ff7b2b; }
.new-pricing-card.green { border-top: 6px solid #10b981; }
.new-pricing-card.blue { border-top: 6px solid #3b82f6; }
.new-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    padding: 0.4rem 1.2rem;
    background: var(--primary); 
    border-bottom-left-radius: 0.75rem;
    z-index: 10;
}
.new-badge.danger {
    background: #ef4444; 
    /* Correction de l'alignement pour éviter le décalage */
    transform: rotate(45deg) translate(30%, 0); 
    padding: 0.3rem 3rem;
    top: 10px; 
    right: -50px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.new-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}
.new-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}
.new-details,
.new-price-info {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1; /* Assure que le contenu s'étire pour uniformiser la hauteur des cartes */
}
.new-details p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}
.new-details p strong {
    color: var(--dark);
    font-weight: 600;
}
.new-price-info p {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.new-price-info strong {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 800;
}
.new-cta {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, opacity 0.2s;
    margin-bottom: 0.8rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.orange-cta {
    background: #ff7b2b;
    color: white;
}
.orange-cta:hover { background: #e8631b; }
.green-cta {
    background: #10b981;
    color: white;
}
.green-cta:hover { background: #0c986c; }
.blue-cta {
    background: #3b82f6;
    color: white;
}
.blue-cta:hover { background: #2563eb; }
.contact-box {
    padding: 0.5rem 0;
    margin-bottom: 1rem;
}
.email-info {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.2rem;
}
.response-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary); 
}
.review-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light);
}
.review-link p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0.3rem;
}
.review-link p:last-child {
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
}


/* --------------------------------- */
/* STYLES DU MENU DÉROULANT (DROPDOWN) "RESSOURCES" */
/* --------------------------------- */
.dropdown {
    position: relative;
    display: inline-block;
    align-self: center; 
}
.dropbtn {
    background-color: transparent;
    color: var(--dark); 
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.dropbtn::after {
    content: '▼'; 
    font-size: 0.65rem;
    line-height: 1; 
    transition: transform 0.2s;
    display: inline-block;
}
.dropbtn:hover, .dropbtn:focus {
    color: var(--primary);
}
.dropdown:hover .dropbtn::after {
    transform: rotate(180deg);
}
.dropdown-content {
    display: none; 
    position: absolute;
    background-color: white; 
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 101; 
    border-top: 3px solid var(--primary); 
    left: 50%;
    transform: translateX(-50%); 
    border-radius: 0 0 0.5rem 0.5rem;
}
.dropdown-content a {
    color: var(--dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 400;
}
.dropdown-content a:hover {
    background-color: var(--light); 
    color: var(--primary);
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* ------------------------------------------------------------- */
/* STYLES SPÉCIFIQUES AUX PAGES INTERNES */
/* ------------------------------------------------------------- */
.page-content { 
    max-width: 900px; 
    margin: 5rem auto; 
    padding: 2rem; 
    background: white; 
    border-radius: 1rem; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); 
    min-height: 70vh; 
}
.page-content h1 { 
    color: var(--primary); 
    margin-bottom: 1.5rem; 
    font-size: 2.5rem; 
    text-align: center;
}
.page-content h3 { 
    color: var(--dark); 
    margin-top: 2rem; 
    margin-bottom: 0.8rem; 
    border-left: 4px solid var(--secondary); 
    padding-left: 10px;
    font-size: 1.4rem;
}
.page-content p { 
    margin-bottom: 1rem; 
    color: var(--gray); 
    font-size: 1.05rem;
}
.page-content ul { 
    padding-left: 25px; 
    margin-bottom: 1.5rem;
}
.page-content.copies-grid ul {
    list-style: none; padding: 0; margin-top: 2rem; 
}
.page-content.copies-grid li { 
    padding: 15px; 
    border-bottom: 1px solid #e2e8f0; 
    text-align: left; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.annales-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 2rem; 
}
.annales-table th, .annales-table td { 
    border: 1px solid #e5e7eb; 
    padding: 12px; 
    text-align: left; 
}
.annales-table th { 
    background-color: #f1f5f9; 
    color: var(--dark); 
    font-weight: 600; 
}
.annales-table td a { 
    color: var(--primary-dark); 
    font-weight: 600; 
    text-decoration: none;
}
.annales-table td a:hover { 
    text-decoration: underline; 
}


/* --------------------------------- */
/* RESPONSIVE & MOBILE */
/* --------------------------------- */
@media (max-width: 950px) {
  .footer-content { grid-template-columns: 1fr 1fr;}
  .features-grid, .testimonials-grid, .stats-container { grid-template-columns: 1fr 1fr;}
}
@media (max-width: 768px) {
  nav { flex-direction: row; justify-content: space-between; gap:.6rem;}
  
  /* Affichage du bouton burger */
  .menu-toggle {
    display: block;
  }
  
  /* Masquer et styliser les liens de navigation */
  .nav-links {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1rem 0;
    gap: 0;
    text-align: center;
  }
  .nav-links.is-open {
    display: flex; 
  }
  .nav-links a {
    padding: 10px 0;
    width: 100%;
  }
  .nav-links a:not(.nav-cta)::after {
    display: none;
  }
  .nav-cta {
    margin-top: 10px;
  }
  
  /* --- Ajustements du Dropdown Mobile (Géré par JS au clic) --- */
    .dropdown {
        width: 100%;
        display: block;
        padding: 10px 0; 
    }

    .dropbtn {
        width: 100%;
        text-align: center;
        padding: 0;
        display: flex; 
        justify-content: center;
        align-items: center;
    }
    .dropbtn[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .dropdown-content {
        display: none; 
        position: static; 
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        transform: none;
        border-top: none; 
        background-color: var(--light); 
        padding-top: 0;
    }
    .dropdown-content.is-open {
        display: block; 
    }
    .dropdown:hover .dropdown-content {
        display: none; 
    }

  /* Ajustements généraux */
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.09rem;}
  .buttons { flex-direction: column; align-items: center;}
  .btn { width: 100%; text-align: center; }
  .features-grid, .testimonials-grid, .pricing-grid-new, .stats-container, .footer-content {grid-template-columns: 1fr;}
  .footer-content { text-align:center;}
}
@media (max-width:500px){
  .hero-content { padding-right:0; padding-left:0;}
  .form-container { padding:1rem; }
}/* --------------------------------- */
/* FOOTER */
/* --------------------------------- */
footer {
    background-color: var(--dark); /* Couleur sombre pour le footer */
    color: var(--light);
    padding: 3rem 1rem;
    font-size: 0.95rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap; /* Permet le retour à la ligne sur mobile */
}
.footer-column {
    flex: 1;
    min-width: 200px; /* Assure une largeur minimale */
}
.footer-column h3 {
    font-size: 1.15rem;
    color: var(--primary); 
    margin-bottom: 1rem;
    font-weight: 700;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--primary);
}
.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}
/* Style pour la mise en page mobile dans les pages de Blog (Media Query) */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        padding-left: 0; 
    }
}/* --------------------------------- */
/* CONTACT FORM STYLES (Styles Ajoutés/Vérifiés) */
/* --------------------------------- */
.contact {
    padding: 5rem 1rem;
    background: white;
}
.form-container {
    max-width: 600px; /* Limite la largeur du formulaire */
    margin: 3rem auto 0; /* Centre le formulaire horizontalement */
    padding: 2rem;
    background: var(--light);
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* Espacement entre les groupes de formulaire */
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    width: 100%; /* S'assure que les champs prennent toute la largeur du conteneur */
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    outline: none;
}
.submit-btn {
    background: var(--primary);
    color: white;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-size: 1.1rem;
    margin-top: 1rem;
}
.submit-btn:hover {
    background: var(--primary-dark);
}
/* Correction pour le titre de section */
.section-title {
    padding-top: 0; /* Assurez-vous qu'il n'y a pas de marge qui décale */
}

/* --------------------------------- */
/* STYLES POUR LA SECTION METHODES */
/* --------------------------------- */
.methodes {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--light) 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}
.methodes::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e0f2fe" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e0f2fe" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}
.methodes .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}
.methodes .section-title h2 {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}
.methodes .section-title p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray);
}

.methodes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.methodes-text, .methodes-results {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.methodes-text h3 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.methodes-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--dark);
    font-size: 1.05rem;
}

.methodes-text blockquote {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 5px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--dark);
    font-size: 1.1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: 0 4px 12px rgba(37,99,235,0.1);
    position: relative;
}

.methodes-text blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: serif;
}

.methodes-results h3 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.methodes-results p {
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 1.05rem;
}

.success-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-list li {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--secondary);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.success-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.success-list li .icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: var(--secondary);
}

.success-list li strong {
    color: var(--primary);
    font-weight: 700;
}

/* Responsive pour la section methodes */
@media (max-width: 768px) {
    .methodes-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .methodes .section-title h2 {
        font-size: 1.8rem;
    }
    .methodes-text, .methodes-results {
        padding: 2rem;
    }
    .methodes-text blockquote {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* --------------------------------- */
/* STYLES POUR LA SECTION FAQ */
/* --------------------------------- */
.faq {
    padding: 5rem 1rem;
    background: var(--light);
}
.faq .section-title h2 {
    color: var(--primary);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.faq-question:hover {
    background: var(--light);
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.2s;
}
.faq-item[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    background: var(--light);
}
.faq-item[aria-expanded="true"] .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}
.faq-answer p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

/* --------------------------------- */
/* BOUTON WHATSAPP FLOTTANT */
/* --------------------------------- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366; /* Vert officiel WhatsApp */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* Assure que le bouton reste au-dessus des autres éléments */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-icon-svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Ajustement pour mobile pour ne pas gêner le contenu */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon-svg {
        width: 28px;
        height: 28px;
    }
}
/* --- STYLE SALLE VIRTUELLE ZOOM --- */
.zoom-access {
    background: var(--light);
    padding: 3rem 1rem 5rem;
    display: flex;
    justify-content: center;
}
.zoom-card {
    background: white;
    max-width: 500px;
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
    top: -60px; /* Chevauchement stylé sur le header */
}
.zoom-header {
    background: #2D8CFF;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.zoom-logo { width: 60px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.live-indicator {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}
.pulse {
    width: 10px; height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.zoom-body { padding: 2.5rem; text-align: center; }
.zoom-body h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.zoom-desc { color: var(--gray); margin-bottom: 2rem; }
.zoom-details {
    background: #f8fafc;
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    text-align: left;
}
.detail-row {
    display: flex; justify-content: space-between; margin-bottom: 0.8rem;
    border-bottom: 1px solid #e2e8f0; padding-bottom: 0.8rem;
}
.detail-row:last-child { border: none; margin: 0; padding: 0; }
.btn-zoom {
    display: block; width: 100%; padding: 1rem;
    background: #2D8CFF; color: white; text-decoration: none;
    border-radius: 0.75rem; font-weight: 700; font-size: 1.1rem;
    transition: background 0.2s;
}
.btn-zoom:hover { background: #1a73e8; }
.zoom-note { font-size: 0.85rem; color: var(--gray); margin-top: 1rem; }