/*
        =====================================================
        COACHTFE.FR - STYLES CSS PRINCIPAUX
        =====================================================
        Auteur: Christophe - Freelance Full-Stack MERN
        Description: Feuille de style pour le site CoachTFE.fr
        Date: 2025
        =====================================================
        */

/* Reset CSS global pour une base cohérente sur tous les navigateurs */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables CSS personnalisées - Palette de couleurs et ombres */
:root {
  /* Couleurs principales du thème français */
  --bleu-france: #002395; /* Bleu officiel français */
  --rouge-france: #ed2939; /* Rouge officiel français */
  --blanc: #ffffff; /* Blanc pur */

  /* Couleurs secondaires et neutres */
  --gris-clair: #f8f9fa; /* Gris très clair pour les arrière-plans */
  --gris: #6c757d; /* Gris moyen pour les textes secondaires */
  --noir: #212529; /* Noir pour les textes principaux */

  /* Effets et ombres */
  --shadow: 0 10px 30px rgba(0, 35, 149, 0.1); /* Ombre douce bleue */
}

/* Styles globaux du body - Typography et couleurs de base */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Police moderne et lisible */
  line-height: 1.6; /* Hauteur de ligne optimale pour la lisibilité */
  color: var(--noir); /* Couleur de texte principale */
  background: var(--blanc); /* Arrière-plan blanc */
  overflow-x: hidden; /* Empêche le défilement horizontal */
  width: 100%;
}

/* Conteneur global pour éviter les débordements */
html {
  overflow-x: hidden;
  width: 100%;
}

/* Reset pour éviter les débordements */
*,
*::before,
*::after {
  max-width: 100%;
}

/*
        =====================================================
        PROMO BOX - Petit cadre promotionnel dans hero section
        =====================================================
        */
.promo-box {
  background: linear-gradient(135deg, var(--rouge-france) 0%, #c21e3a 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(237, 41, 57, 0.3);
  animation: promoSlideIn 0.6s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.promo-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 41, 57, 0.4);
}

/* Style spécifique pour le cadre dans les stats */
.stats-promo {
  margin-bottom: 2rem;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.promo-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.promo-icon svg {
  width: 100%;
  height: 100%;
  color: white;
}

.promo-text {
  font-weight: 600;
  font-size: 11px;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.promo-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: promoShine 4s infinite;
}

@keyframes promoSlideIn {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes promoShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/*
        =====================================================
        NAVIGATION - Barre de navigation fixe
        =====================================================
        */
nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  min-height: 80px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-coachtfe {
  height: 100px;
  width: auto;
  max-width: 350px;
}
.logo-subtitle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 30px;
  height: 30px;
  justify-content: space-around;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--bleu-france);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.nav-links a {
  color: var(--noir);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--rouge-france);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--bleu-france);
}

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

.cta-nav {
  background: var(--rouge-france);
  color: var(--blanc) !important;
  padding: 0.75rem 1.75rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-nav::after {
  display: none;
}

.cta-nav:hover {
  background: #d02030;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/*
        =====================================================
        HERO SECTION - Section d'accueil principale
        =====================================================
        Contient le titre principal, sous-titre, points clés
        et les statistiques de réussite
        =====================================================
        */
.hero {
  margin-top: 72px;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--blanc) 0%, var(--gris-clair) 100%);
  position: relative !important;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: var(--bleu-france);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  margin-top: 10px;
}

.hero-text .subtitle {
  font-size: 1.3rem;
  color: var(--gris);
  margin-bottom: 2rem;
}

.expertise-points {
  list-style: none;
  margin-bottom: 2rem;
}

.expertise-points li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: var(--noir);
}

.expertise-points li svg {
  width: 20px;
  height: 20px;
  margin-right: 1rem;
  fill: var(--rouge-france);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: var(--rouge-france);
  color: var(--blanc);
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: #d02030;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--blanc);
  color: var(--bleu-france);
  padding: 1rem 2rem;
  border: 2px solid var(--bleu-france);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--bleu-france);
  color: var(--blanc);
}

.hero-image {
  background: var(--blanc);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--gris-clair);
  border-radius: 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--bleu-france);
  display: block;
}

.stat-label {
  color: var(--gris);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*
        =====================================================
        EXPERTISE SECTION - Notre savoir-faire
        =====================================================
        Présente les 3 domaines d'expertise principaux
        sous forme de cartes avec icônes
        =====================================================
        */
.expertise {
  padding: 2.5rem 2rem;
  background: var(--blanc);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--bleu-france);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gris);
  font-size: 1.1rem;
}

.expertise-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.expertise-card {
  background: var(--gris-clair);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid transparent;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-top-color: var(--rouge-france);
}

.expertise-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--bleu-france);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--blanc);
}

.expertise-card h3 {
  color: var(--noir);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.expertise-card p {
  color: var(--gris);
  line-height: 1.8;
}

/*
        =====================================================
        SOCIAL PROOF - Avatars chevauchés avec preuve sociale
        =====================================================
        */
.social-proof {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.expertise-social-proof {
  margin-top: 3rem;
}

/* Avatars chevauchés */
.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--blanc);
  box-shadow: 0 2px 6px rgba(0, 35, 149, 0.15);
  background: var(--gris-clair);
  transition: transform 0.3s ease;
}

.avatar + .avatar {
  margin-left: -16px; /* chevauchement ajusté pour la nouvelle taille */
}

.avatar:hover {
  transform: scale(1.1);
  z-index: 10;
  position: relative;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* Centré au milieu */
  display: block;
}

/* Ajustement spécifique pour HOME1.jpg */
.avatar img[src*="HOME1.jpg"] {
  object-position: center top; /* Centré vers le haut */
}

/* Ajustement spécifique pour HOME2.jpg */
.avatar img[src*="HOME2.jpg"] {
  object-position: center 40%; /* Légèrement vers le bas du centre */
}

/* Ajustement spécifique pour HOME3.jpg */
.avatar img[src*="HOME3.jpg"] {
  object-position: center top; /* Centré vers le haut */
}

.headline {
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--noir);
  letter-spacing: 0.2px;
  margin: 0;
}

.headline .accent {
  color: var(--rouge-france);
}

/*
        =====================================================
        SERVICES SECTION - Nos prestations détaillées
        =====================================================
        Présentation alternée gauche/droite des services
        =====================================================
        */
.services {
  padding: 2.5rem 2rem;
  background: var(--gris-clair);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) .service-content {
  direction: ltr;
}

.service-content h3 {
  font-size: 1.8rem;
  color: var(--bleu-france);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--gris);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.service-features li {
  padding: 0.5rem 0;
  color: var(--noir);
  display: flex;
  align-items: center;
}

.service-features li::before {
  content: "✓";
  color: var(--rouge-france);
  font-weight: bold;
  margin-right: 0.75rem;
}

.service-visual {
  background: var(--blanc);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  direction: ltr;
}

/*
        =====================================================
        FORMULAS SECTION - Nos offres tarifaires
        =====================================================
        3 formules d'accompagnement avec pricing
        =====================================================
        */
.formulas {
  padding: 2.5rem 2rem;
  background: var(--blanc);
}

.formulas-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.formula-card {
  background: var(--blanc);
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.formula-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--bleu-france);
}

.formula-card.popular {
  border-color: var(--rouge-france);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(237, 41, 57, 0.15);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rouge-france);
  color: var(--blanc);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.formula-name {
  font-size: 1.5rem;
  color: var(--bleu-france);
  margin-bottom: 0.5rem;
}

.formula-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--noir);
  margin-bottom: 1rem;
}

.formula-description {
  color: var(--gris);
  margin-bottom: 2rem;
}

.formula-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.formula-features li {
  padding: 0.75rem 0;
  color: var(--noir);
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}

.formula-features li::before {
  content: "✓";
  color: var(--rouge-france);
  font-weight: bold;
  margin-right: 0.75rem;
}

.formula-cta {
  background: var(--bleu-france);
  color: var(--blanc);
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  transition: all 0.3s ease;
}

.formula-cta:hover {
  background: #001a6c;
  transform: translateY(-2px);
}

.popular .formula-cta {
  background: var(--rouge-france);
}

.popular .formula-cta:hover {
  background: #d02030;
}

/* Roadmap Section */
.roadmap {
  padding: 2.5rem 2rem;
  background: var(--blanc);
}

.roadmap-container {
  max-width: 1000px;
  margin: 0 auto;
}

.roadmap-track {
  position: relative;
  padding: 2rem 0;
}

.roadmap-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--bleu-france) 0%,
    var(--rouge-france) 100%
  );
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.roadmap-marker {
  width: 60px;
  height: 60px;
  background: var(--blanc);
  border: 3px solid var(--bleu-france);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--bleu-france);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.roadmap-item:nth-child(even) .roadmap-marker {
  border-color: var(--rouge-france);
  color: var(--rouge-france);
}

.roadmap-content {
  margin-left: 2rem;
  padding: 1.5rem;
  background: var(--gris-clair);
  border-radius: 10px;
  flex: 1;
  position: relative;
  transition: all 0.3s ease;
}

.roadmap-content:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.roadmap-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--gris-clair);
}

.roadmap-content h3 {
  color: var(--bleu-france);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.roadmap-content p {
  color: var(--gris);
  margin-bottom: 0.5rem;
}

.roadmap-duration {
  display: inline-block;
  background: var(--rouge-france);
  color: var(--blanc);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Guarantee Section */
.guarantee {
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--gris-clair) 0%, var(--blanc) 100%);
}

.guarantee-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.guarantee-item {
  background: var(--blanc);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: var(--gris-clair);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg {
  width: auto;
  max-width: 200px;
}

.guarantee-item h3 {
  color: var(--bleu-france);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.guarantee-item p {
  color: var(--gris);
  line-height: 1.8;
}

.contact-direct {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--blanc);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-direct p {
  font-size: 1.2rem;
  color: var(--noir);
  margin-bottom: 1.5rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn svg {
  width: 20px;
  height: 20px;
}

.contact-btn.phone {
  background: var(--bleu-france);
  color: var(--blanc);
}

.contact-btn.phone:hover {
  background: #001a6c;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-btn.whatsapp {
  background: #25d366;
  color: var(--blanc);
}

.contact-btn.whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-direct {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--blanc);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-direct p {
  font-size: 1.2rem;
  color: var(--noir);
  margin-bottom: 1.5rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn svg {
  width: 20px;
  height: 20px;
}

.contact-btn.phone {
  background: var(--bleu-france);
  color: var(--blanc);
}

.contact-btn.phone:hover {
  background: #001a6c;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-btn.whatsapp {
  background: #25d366;
  color: var(--blanc);
}

.contact-btn.whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Floating Action Buttons */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.main-fab {
  background: var(--rouge-france);
  position: relative;
  z-index: 10000;
}

.main-fab:hover {
  transform: scale(1.1);
  background: #d02030;
}

.fab svg {
  width: 30px;
  height: 30px;
  fill: var(--blanc);
}

.fab-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fab-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  transform: scale(0);
}

.fab-menu:not(.hidden) .fab-item {
  animation: fabItemShow 0.3s ease forwards;
}

@keyframes fabItemShow {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fab-menu:not(.hidden) .fab-item:nth-child(1) {
  animation-delay: 0.3s;
}
.fab-menu:not(.hidden) .fab-item:nth-child(2) {
  animation-delay: 0.2s;
}
.fab-menu:not(.hidden) .fab-item:nth-child(3) {
  animation-delay: 0.1s;
}

.fab-item svg {
  width: 25px;
  height: 25px;
  fill: var(--blanc);
}

.phone-fab {
  background: var(--bleu-france);
}

.phone-fab:hover {
  background: #001a6c;
  transform: scale(1.1);
}

.whatsapp-fab {
  background: #25d366;
}

.whatsapp-fab:hover {
  background: #20ba5a;
  transform: scale(1.1);
}

.phone-fab {
  background: var(--rouge-france);
  cursor: pointer;
}

.phone-fab:hover {
  background: #d02030;
  transform: scale(1.1);
}

/* Trust Section */
.trust {
  padding: 2rem 2rem;
  background: var(--gris-clair);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trust-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--bleu-france);
}

.trust-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--bleu-france);
  display: block;
}

.trust-label {
  color: var(--gris);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  padding: 2.5rem 2rem 1rem 2rem;
  background: var(--blanc);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--gris-clair);
  padding: 2rem;
  border-radius: 10px;
  position: relative;
}

.testimonial-quote {
  font-style: italic;
  color: var(--gris);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--bleu-france);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-weight: bold;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: bold;
  color: var(--noir);
}

.author-role {
  font-size: 0.9rem;
  color: var(--gris);
}

/* FAQ Section */
.faq {
  padding: 1rem 2rem 2.5rem 2rem;
  background: var(--blanc);
}

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

.faq-item {
  background: var(--gris-clair);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 35, 149, 0.05);
}

.faq-question h3 {
  color: var(--bleu-france);
  font-size: 1.1rem;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.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;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--gris);
  line-height: 1.8;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--bleu-france) 0%, #001a6c 100%);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-button {
  background: var(--rouge-france);
  color: var(--blanc);
  padding: 1.2rem 3rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #d02030;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/*
        =====================================================
        FOOTER - Pied de page avec liens et informations
        =====================================================
        Contient les liens de navigation, informations de contact
        et intégration Trustpilot
        =====================================================
        */
footer {
  background: var(--noir);
  color: var(--blanc);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section p,
.footer-section a {
  color: #adb5bd;
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #343a40;
  color: #adb5bd;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--blanc);
}

.footer-section a:hover {
  color: var(--blanc);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

/* Modal Entretien Gratuit - Design moderne et fluide */
.entretien-modal-content {
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 550px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 35, 149, 0.15);
  border: 1px solid rgba(0, 35, 149, 0.08);
  animation: modalSlideIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.modal-header-entretien {
  background: var(--bleu-france);
  color: white;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-radius: 16px 16px 0 0;
  position: relative;
}

.modal-header-entretien::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rouge-france);
}

.modal-header-entretien h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.modal-header-entretien p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.entretien-form {
  padding: 1.75rem 1.5rem;
}

.form-group-entretien {
  margin-bottom: 1.25rem;
}

.form-group-entretien label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--noir);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.form-group-entretien .required {
  color: var(--rouge-france);
  font-weight: 700;
}

.form-group-entretien input,
.form-group-entretien select,
.form-group-entretien textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  background: #fafafa;
}

.form-group-entretien input:focus,
.form-group-entretien select:focus,
.form-group-entretien textarea:focus {
  outline: none;
  border-color: var(--bleu-france);
  box-shadow: 0 0 0 3px rgba(0, 35, 149, 0.08);
  background: white;
}

.form-group-entretien textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}

.form-submit-group {
  text-align: center;
  margin-top: 1.75rem;
}

.btn-submit-entretien {
  background: var(--bleu-france);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 35, 149, 0.2);
  min-width: 200px;
  justify-content: center;
}

.btn-submit-entretien:hover {
  background: #001870;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 35, 149, 0.3);
}

.btn-submit-entretien:active {
  transform: translateY(0);
}

.btn-submit-entretien svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.btn-submit-entretien:hover svg {
  transform: translateX(2px);
}

.form-note {
  margin-top: 0.75rem;
  color: var(--gris);
  font-size: 0.85rem;
  font-style: italic;
}

/* Hidden honeypot field */
.hidden {
  display: none !important;
}

/* Animation de fermeture simplifiée */
.modal-closing .entretien-modal-content {
  animation: modalSlideOut 0.2s ease-out;
}

@keyframes modalSlideOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.95);
  }
}

/* Responsive optimisé */
/* Promo Box Responsive */
@media (max-width: 768px) {
  .stats-promo {
    margin-bottom: 1.5rem;
  }

  .promo-text {
    font-size: 10px;
  }

  .promo-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .stats-promo {
    margin-bottom: 1rem;
  }

  .promo-box {
    padding: 6px 10px;
  }

  .promo-text {
    font-size: 9px;
  }

  .promo-content {
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .entretien-modal-content {
    width: 95%;
    max-height: 92vh;
    border-radius: 12px;
  }
  
  .modal-header-entretien {
    padding: 1.5rem 1.25rem;
    border-radius: 12px 12px 0 0;
  }
  
  .modal-header-entretien h2 {
    font-size: 1.3rem;
  }
  
  .entretien-form {
    padding: 1.5rem 1.25rem;
  }
  
  .form-group-entretien {
    margin-bottom: 1rem;
  }
  
  .btn-submit-entretien {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .entretien-modal-content {
    width: 98%;
    max-height: 95vh;
  }
  
  .modal-header-entretien {
    padding: 1.25rem 1rem;
  }
  
  .entretien-form {
    padding: 1.25rem 1rem;
  }
  
  .form-group-entretien input,
  .form-group-entretien select,
  .form-group-entretien textarea {
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
  }
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blanc);
  padding: 3rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gris);
}

.modal-close:hover {
  color: var(--noir);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--noir);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bleu-france);
}

.form-submit {
  background: var(--rouge-france);
  color: var(--blanc);
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #d02030;
}

/* Floating Button - REMOVED DUPLICATE */

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

/* Popup CTA */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: var(--blanc);
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gris);
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: var(--noir);
}

.popup-content h2 {
  color: var(--bleu-france);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.popup-content p {
  color: var(--gris);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.popup-features {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.popup-features div {
  color: var(--noir);
  font-weight: 600;
}

.popup-btn {
  background: var(--rouge-france);
  color: var(--blanc);
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-btn:hover {
  background: #d02030;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popup-disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gris);
}

/* Blog Section */
.blog {
  padding: 5rem 2rem;
  background: var(--gris-clair);
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.blog-card {
  background: var(--blanc);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-header {
  border-bottom: 2px solid var(--gris-clair);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.blog-header h3 {
  color: var(--bleu-france);
  margin-bottom: 0.5rem;
}

.blog-date {
  color: var(--rouge-france);
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-content {
  color: var(--gris);
  line-height: 1.8;
}

.blog-content p {
  margin-bottom: 1rem;
}

/*
        =====================================================
        SECTION RESPONSIVE - ADAPTABILITÉ MULTI-ÉCRANS
        =====================================================
        Breakpoints utilisés :
        - 1200px+ : Écrans larges (desktop)
        - 992px-1199px : Écrans moyens (petits desktop/laptop)
        - 768px-991px : Tablettes
        - 576px-767px : Grandes mobiles (phablets)
        - 320px-575px : Mobiles standard
        =====================================================
        */

/* TABLETTES ET PETITS ÉCRANS (max 992px) */
@media (max-width: 992px) {
  /* Navigation - Masquage des liens sur écrans moyens */
  .nav-container {
    padding: 1rem;
  }

  /* Hero section - Réduction des espacements */
  .hero {
    padding: 1.5rem 1rem;
  }

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

  /* Grilles - Passage en 2 colonnes */
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .formulas-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .trust-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* TABLETTES PORTRAIT ET GRANDES MOBILES (max 768px) */
@media (max-width: 768px) {
  /* Fix global pour éviter le débordement */
  body,
  html {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* Cookie consent responsive */
  .cookie-consent {
    padding: 15px;
    width: 100%;
    left: 0;
    right: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cookie-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 100%;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Sections overflow fixes */
  section {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .container,
  [class*="container"] {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  /* Images responsive - sauf logos spécifiques */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Tailles spécifiques des logos sur mobile */
  .logo-coachtfe {
    height: 60px !important;
    width: auto !important;
    max-width: 200px !important;
  }

  .staka-logo {
    height: 15px !important;
    width: auto !important;
  }

  .trustpilot-logo {
    max-height: 25px !important;
    width: auto !important;
  }

  .trust-logo {
    max-height: 40px !important;
    width: auto !important;
  }

  /* Fix for absolute positioned elements */
  .popular-badge {
    white-space: nowrap;
  }

  /* Désactiver les animations potentiellement problématiques */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }

  /* Navigation - Masquage complet des liens */
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 1.5rem;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }

  /* Hero section - Layout en colonne unique */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

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

  /* Grilles - Passage en colonne unique */
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-item:nth-child(even) {
    direction: ltr;
  }

  .formulas-container {
    grid-template-columns: 1fr;
  }

  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .logo-coachtfe {
    height: 70px;
    width: auto;
    max-width: 220px;
  }

  .roadmap-content {
    margin-left: 3rem;
  }

  .roadmap-line {
    left: 20px;
  }

  .roadmap-marker {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .roadmap-item {
    margin-bottom: 2rem;
  }

  .roadmap-container {
    padding-left: 0.5rem;
  }

  /* Navigation mobile */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 1.5rem;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gris-clair);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .cta-nav {
    background: var(--bleu-france) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 30px !important;
    text-align: center;
    margin-top: 1rem;
  }
}

/* CTA Section */
.cta-title {
  font-size: 2rem;
}

.cta-button {
  padding: 1rem 2rem;
}

/* MOBILES STANDARD (max 576px) */
@media (max-width: 576px) {
  /* Typography - Réduction générale des tailles */
  .logo-coachtfe {
    height: 45px;
    width: auto;
    max-width: 200px;
  }

  .section-title {
    font-size: 1.8rem;
  }
  .hero-text .subtitle {
    font-size: 1.1rem;
  }
  /* Navigation - Logo plus petit */
  .logo-text {
    font-size: 1.2rem;
  }

  /* Espacement - Réduction générale */
  .hero {
    padding: 1rem 1rem;
    margin-top: 80px;
  }

  .expertise,
  .services,
  .formulas,
  .roadmap,
  .guarantee,
  .testimonials,
  .faq,
  .cta-section {
    padding: 1.5rem 1rem;
  }

  /* Espacement réduit Testimonials-FAQ sur tablette */
  .testimonials {
    padding-bottom: 0.5rem;
  }
  .faq {
    padding-top: 0.5rem;
  }

  /* Boutons - Adaptation mobile */
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  /* Grilles - Tout en colonne unique */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  /* Cards - Padding réduit */
  .expertise-card,
  .formula-card,
  .guarantee-item,
  .testimonial-card {
    padding: 1.5rem;
  }

  /* Trustpilot - Optimisation mobile */
  .trustpilot-content {
    flex-direction: column;
    gap: 1rem;
  }

  .trustpilot-bar {
    padding: 1.5rem 1rem;
  }

  .trustpilot-bar-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Modal - Adaptation mobile */
  .modal-content,
  .popup-content {
    width: 95%;
    padding: 2rem 1rem;
    margin: 1rem;
  }

  /* FAB - Repositionnement */
  .fab-container {
    bottom: 20px;
    right: 20px;
  }

  .fab {
    width: 50px;
    height: 50px;
  }

  /* CTA Section */
  .cta-title {
    font-size: 1.8rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}

/* TRÈS PETITS MOBILES (max 400px) */
@media (max-width: 400px) {
  /* Typography - Tailles minimales */
  .hero-text h1 {
    font-size: 1.5rem;
  }

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

  /* Espacement - Minimal */
  .hero,
  .expertise,
  .services,
  .formulas,
  .roadmap,
  .guarantee,
  .testimonials,
  .faq,
  .cta-section {
    padding: 1rem 0.5rem;
  }

  /* Espacement réduit Testimonials-FAQ sur mobile */
  .testimonials {
    padding-bottom: 0.3rem;
  }
  .faq {
    padding-top: 0.3rem;
  }

  /* Cards - Padding minimal */
  .expertise-card,
  .formula-card,
  .guarantee-item,
  .testimonial-card {
    padding: 1rem;
  }

  /* Boutons - Taille réduite */
  .btn-primary,
  .btn-secondary,
  .cta-button,
  .formula-cta {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  /* Logo - Taille minimale */
  .logo-text {
    font-size: 1rem;
  }

  .by-text {
    font-size: 0.6rem;
  }

  .staka-logo {
    height: 15px;
  }
}

/* Styles for logo */
.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #002395;
}

.logo-subtitle {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.by-text {
  font-size: 0.7rem;
  color: #6c757d;
  font-style: italic;
}

.staka-logo {
  height: 20px;
  width: auto;
  opacity: 0.85;
}

/* Hidden utility class */
.hidden {
  display: none;
}

/* Trustpilot styles */
.trustpilot-section {
  text-align: center;
  margin-top: 3rem;
}

.trustpilot-container {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  display: inline-block;
}

.trustpilot-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trustpilot-logo {
  width: auto;
  max-height: 40px;
  height: auto;
}

.trustpilot-rating {
  text-align: left;
}

.stars {
  color: #00b67a;
  font-size: 1.5rem;
}

.rating-text {
  font-weight: bold;
  color: #212529;
}

.review-count {
  color: #6c757d;
  font-size: 0.9rem;
}

.trustpilot-cta {
  background: #00b67a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trustpilot-cta:hover {
  background: #00a66a;
  transform: translateY(-2px);
}

.trustpilot-icon {
  width: 16px;
  height: 16px;
  fill: white;
}

.trustpilot-widget {
  margin-top: 1rem;
}

.footer-section .trustpilot-link {
  display: inline-block !important;
  background: #00b67a;
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-section .trustpilot-link:hover {
  background: #00a66a;
  color: white !important;
}

.trustpilot-link-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trustpilot-link-icon {
  width: 20px;
  height: 20px;
  fill: white;
}

.trustpilot-bar {
  background: #1a1a1a;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.trustpilot-bar-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trustpilot-bar-title {
  color: white;
  margin-bottom: 1rem;
}

.trustpilot-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.stat-stars {
  color: #00b67a;
  font-size: 2rem;
  font-weight: bold;
}

.trustpilot-stat-number {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.trustpilot-stat-score {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.trustpilot-stat-label {
  color: #adb5bd;
  font-size: 0.9rem;
}

.trustpilot-main-cta {
  background: #00b67a;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.trustpilot-main-cta:hover {
  background: #00a66a;
  transform: translateY(-2px);
}

/* Cookie Consent Popup Styles */
.cookie-consent {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: auto;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 10000;
  display: none;
  animation: slideUp 0.5s ease;
  border: 1px solid rgba(0, 35, 149, 0.1);
}

.cookie-consent.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-text h3 {
  color: #002395;
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
}

.cookie-text p {
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-settings {
  background: transparent;
  color: #002395;
  border: 2px solid #002395;
}

.cookie-settings:hover {
  background: #002395;
  color: white;
}

.cookie-reject {
  background: #e0e0e0;
  color: #333;
}

.cookie-reject:hover {
  background: #d0d0d0;
}

.cookie-accept {
  background: linear-gradient(135deg, #002395 0%, #0033cc 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 35, 149, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 35, 149, 0.4);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  backdrop-filter: blur(5px);
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cookie-settings-header {
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-settings-header h2 {
  margin: 0;
  color: #002395;
  font-size: 24px;
}

.close-settings {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-settings:hover {
  background: #f0f0f0;
  color: #333;
}

.cookie-settings-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.cookie-category {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.category-header h3 {
  margin: 0;
  color: #333;
  font-size: 18px;
}

.cookie-category p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #002395;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.toggle-switch.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.cookie-settings-footer {
  padding: 20px 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-consent {
    left: 5px;
    right: 5px;
    bottom: 5px;
    max-width: calc(100% - 10px);
    padding: 10px;
  }

  .cookie-content {
    gap: 8px;
  }

  .cookie-actions {
    justify-content: space-between;
  }

  .cookie-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .cookie-settings-content {
    width: 95%;
    margin: 10px;
  }
}
