  :root {
    --primary: #2D3561;
    --secondary: #4A5578;
    --dark: #1A1A2E;
    --light: #F5F7FA;
    --white: #FFFFFF;
    --text: #2D3748;
    --text-light: #718096;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* Navigation */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  }

  .logo-container {
    display: flex;
    align-items: center;
    z-index: 999;
  }

  .logo-container img {
    height: 85px;
    width: auto;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
  }

  .hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
    border-radius: 3px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: #062f66;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
    }

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

  .nav-cta {
    background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);;
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: #062f66;
  }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 53, 97, 0.4);
    background: #062f66;
  }

  /* Hero Section */
  /* Desktop */
  .hero-website {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 7rem 5% 1.5rem;
    background: linear-gradient(135deg, rgb(21, 118, 173) 0%, rgb(6, 47, 102) 100%);
  }
  

  /* Desktop : afficher tous les tab-content simultanément (pas de tabs actifs/inactifs) */
@media (min-width: 769px) {
  .pricing-toggle { display: none !important; }   ← masque le toggle One Page/Start/Pro
  .pricing-card { display: flex !important; }     ← 3 cartes toujours visibles
  .benefits-show-more-wrapper { display: none !important; }
  .benefit-card-extra { display: flex !important; }
  .hero-text-website .hero-image-mobile { display: none !important; }
}


    /* ===== BANNIÈRE HERO ANIMÉE - site-internet ===== */
    .hero-website {
      background: linear-gradient(135deg, rgb(21, 118, 173) 0%, rgb(6, 47, 102) 100%);
    }

    .hba-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }

    .hba-p {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      animation: hbaFloat linear infinite;
    }

    .hba-p:nth-child(1)  { width: 6px;  height: 6px;  left: 8%;   animation-duration: 9s;  animation-delay: 0s;   }
    .hba-p:nth-child(2)  { width: 4px;  height: 4px;  left: 20%;  animation-duration: 12s; animation-delay: -3s;  }
    .hba-p:nth-child(3)  { width: 8px;  height: 8px;  left: 35%;  animation-duration: 8s;  animation-delay: -1s;  }
    .hba-p:nth-child(4)  { width: 3px;  height: 3px;  left: 50%;  animation-duration: 14s; animation-delay: -5s;  }
    .hba-p:nth-child(5)  { width: 5px;  height: 5px;  left: 65%;  animation-duration: 10s; animation-delay: -2s;  }
    .hba-p:nth-child(6)  { width: 7px;  height: 7px;  left: 80%;  animation-duration: 11s; animation-delay: -4s;  }
    .hba-p:nth-child(7)  { width: 4px;  height: 4px;  left: 92%;  animation-duration: 7s;  animation-delay: -6s;  }
    .hba-p:nth-child(8)  { width: 6px;  height: 6px;  left: 14%;  animation-duration: 13s; animation-delay: -8s;  }
    .hba-p:nth-child(9)  { width: 3px;  height: 3px;  left: 44%;  animation-duration: 16s; animation-delay: -7s;  }
    .hba-p:nth-child(10) { width: 9px;  height: 9px;  left: 72%;  animation-duration: 9s;  animation-delay: -9s;  }

    @keyframes hbaFloat {
      from { transform: translateY(700px) scale(0.8); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 0.6; }
      to   { transform: translateY(-40px) scale(1.1); opacity: 0; }
    }

    .hba-shimmer {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
      background-size: 200% 100%;
      animation: hbaShimmer 4s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes hbaShimmer {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .hba-geo {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.06);
      animation: hbaPulse 6s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }

    .hba-geo-1 { width: 600px; height: 600px; top: -220px;    right: -140px; animation-delay: 0s; }
    .hba-geo-2 { width: 360px; height: 360px; top: -120px;    right: -40px;  animation-delay: 1s; }
    .hba-geo-3 { width: 440px; height: 440px; bottom: -200px; left: -100px;  animation-delay: 2s; }

    @keyframes hbaPulse {
      0%, 100% { opacity: 0.4; transform: scale(1); }
      50%       { opacity: 0.8; transform: scale(1.04); }
    }
  @media (min-width: 769px) {
    .pricing-toggle {
      display: none !important;
    }
    .pricing-card {
      display: flex !important;
    }
  }

  /* Mobile */
 

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

  .hero-text-website h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
  }

  .highlight-outline {
    display: inline-block;
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }



  .hero-text-website p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .hero-buttons-website {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-image-mobile {
    display: none;
  }

  .hero-image-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
  }

.hero-image-desktop img {
  width: 100%;
  max-width: 900px;
  height: auto;
  animation: floatImage 3s ease-in-out infinite;
}

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

  .hero-image-desktop video,
  .hero-image-mobile video {
    width: 100%;
    max-width: 700px;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 20px;
  }

  .hero-image-mobile video {
    max-width: 100%;
    border-radius: 15px;
  }

  .btn {
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
  }

  .btn-primary {
    background: #062f66;
    color: white;
    box-shadow: 0 4px 15px rgba(45, 53, 97, 0.3);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 53, 97, 0.4);
    background: #062f66;
  }

  .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
  }

  .btn-secondary:hover {
    background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
    color: white;
  }

/* ===== ICÔNES PNG DANS LES TABS ===== */
.tab-icon-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  display: block;
}

/* Icône blanche quand onglet actif (fond dégradé bleu) */
.tab-btn.active .tab-icon-img {
  filter: brightness(0) invert(1);
}

/* Légère animation au hover */
.tab-btn:hover:not(.active) .tab-icon-img {
  transform: scale(1.12);
  filter: brightness(0) saturate(100%) invert(35%) sepia(80%) saturate(500%) hue-rotate(180deg);
}


.tabs-section {
  background: #f0f4f8;
  padding: 0;
}

.tabs-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 5% 0;
}

.tabs-navigation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 0;
  position: relative;
  border-bottom: none;
  flex-wrap: unset;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

/* Supprime les pseudo-éléments de l'ancienne nav */
.tabs-navigation::before,
.tabs-navigation::after {
  display: none;
}

.tab-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: white;
  border: 2px solid #e8ecf0;
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
}

/* Fond subtil au hover */
.tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,118,173,0.04) 0%, rgba(6,47,102,0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-btn:hover::before {
  opacity: 1;
}

.tab-btn:hover {
  border-color: #b8cfe8;
  transform: translateY(-3px);
  box-shadow: 0 -4px 20px rgba(21,118,173,0.12);
}

/* État actif */
.tab-btn.active {
  background: white;
  border-color: #1576ad;
  border-bottom: 3px solid white;
  transform: translateY(-4px);
  box-shadow: 0 -6px 25px rgba(21,118,173,0.2), 0 0 0 1px rgba(21,118,173,0.15);
  z-index: 2;
}

.tab-btn.active::before {
  opacity: 0;
}

/* Icône emoji */
.tab-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.tab-btn.active .tab-icon-wrapper {
  background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
  box-shadow: 0 4px 15px rgba(21,118,173,0.35);
  animation: popIcon 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIcon {
  0%   { transform: scale(0.8); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.tab-btn:hover .tab-icon-wrapper {
  background: linear-gradient(135deg, rgba(21,118,173,0.15) 0%, rgba(6,47,102,0.15) 100%);
}

.tab-btn.active:hover .tab-icon-wrapper {
  background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
}

.tab-emoji {
  font-size: 1.3rem;
  line-height: 1;
  /* Filtre pour forcer l'affichage correct sur tous les navigateurs */
  filter: none;
}

/* Textes */
.tab-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.tab-label-main {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4a5568;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tab-label-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: #a0aec0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.tab-btn.active .tab-label-main {
  color: #062f66;
}

.tab-btn.active .tab-label-sub {
  color: #1576ad;
}

.tab-btn:hover .tab-label-main {
  color: #062f66;
}

/* Indicateur de barre colorée en haut */
.tab-active-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1576ad 0%, #062f66 100%);
  border-radius: 14px 14px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn.active .tab-active-indicator {
  transform: scaleX(1);
}

/* Ligne de séparation sous les tabs */
.tabs-section-inner::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #1576ad 0%, #062f66 100%);
  border-radius: 0 0 3px 3px;
  position: relative;
  z-index: 3;
}

/* Contenu des tabs */
.tab-content {
  display: none;
  animation: fadeInTab 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  padding: 4rem 5%;
}

.tab-content.active {
  display: block;
}

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

@keyframes popStep {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); }
  100% { transform: scale(1.15); }
}

  .tab-content {
    display: none;
    animation: fadeIn 0.5s;
  }

  .tab-content.active {
    display: block;
  }

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

  .section-title-center {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: #062f66;
    margin-bottom: 1rem;
  }
  .section-title-center2 {
      font-size: 2rem;
      font-weight: 800;
      text-align: center;
      color: #ffffff;
      margin-bottom: 1rem;
  }

  .section-subtitle-center2 {
    font-size: 1.1rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
  }
  .section-subtitle-center {
    font-size: 1.1rem;
    text-align: center;
    color: #062f66;
    margin-bottom: 1rem;
  }
  /* Benefits Grid */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .benefit-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }

  .benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  .benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
  }

  /* Features Grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .feature-card-site {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  .feature-card-site:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .feature-icon-site img {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }

  .feature-card-site h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  .feature-card-site p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
  }

  /* Why Grid */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .why-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
  }

  .why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .why-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #062f66;
    margin-bottom: 1rem;
  }

  .why-card p {
    color: var(--text);
    line-height: 1.6;
  }

  /* Pricing Toggle */
  .pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem auto;
    max-width: 500px;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .toggle-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }

  .toggle-btn.active {
    background: #062f66;
    color: white;
    box-shadow: 0 4px 12px rgba(45, 53, 97, 0.3);
  }

  .toggle-btn:hover:not(.active) {
    color: var(--primary);
  }

  /* TARIFS RÉDUITS - 3 COLONNES */
  .pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
  }

  .pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }

  .pricing-card.featured {
    border: 3px solid var(--primary);
    box-shadow: 0 15px 50px rgba(45, 53, 97, 0.2);
  }

  .pricing-card.featured:hover {
    box-shadow: 0 25px 70px rgba(45, 53, 97, 0.3);
  }

  .popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark);
    padding: 0.4rem 2.5rem;
    font-weight: 800;
    font-size: 0.75rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }

  .popular-ribbon span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .pricing-card-header {
    background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
  }

  .plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
  }

  .plan-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
  }

  .price-tag {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.3rem;
  }

  .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.3rem;
  }

  .amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
  }

  .price-description {
    font-size: 0.8rem;
    opacity: 0.85;
  }

  .pricing-card-body {
    padding: 1.5rem 1.5rem;
    flex: 1;
  }

  .feature-category {
    margin-bottom: 1.5rem;
  }

  .feature-category:last-child {
    margin-bottom: 0;
  }

  .category-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--light);
  }

  .category-icon {
    font-size: 1.2rem;
  }

  .features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s;
  }

  .feature-item:hover {
    background: rgba(45, 53, 97, 0.03);
  }

  .feature-item.highlight {
    background: rgba(45, 53, 97, 0.05);
    border-left: 3px solid var(--primary);
    padding-left: 0.8rem;
  }

  .feature-item.unavailable {
    opacity: 0.5;
  }

  .feature-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: bold;
  }

  .feature-icon.check {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
  }

  .feature-icon.cross {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
  }

  .feature-icon.info {
    background: rgba(59, 130, 246, 0.1);
    font-size: 0.75rem;
  }

  .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }

  .feature-content strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
  }

  .feature-desc {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
  }

  .pricing-card-footer {
    padding: 0 1.5rem 1.5rem;
  }

  .btn-pricing {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #062f66;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(45, 53, 97, 0.3);
  }

  .btn-pricing:hover {
    background: #062f66;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 53, 97, 0.4);
  }

  .btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s;
  }

  .btn-pricing:hover .btn-arrow {
    transform: translateX(5px);
  }

  .pricing-card.featured .btn-pricing {
    background: #062f66;
    box-shadow: 0 8px 25px rgba(45, 53, 97, 0.4);
  }

  .pricing-card.featured .btn-pricing:hover {
    box-shadow: #062f66;
  }

  .help-choosing {
    margin-top: 4rem;
  }

  .help-box {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  .help-icon {
    font-size: 3rem;
    min-width: 60px;
  }

  .help-content {
    flex: 1;
  }

  .help-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .help-content p {
    font-size: 1rem;
    color: var(--text-light);
  }

  .btn-help {
    padding: 1rem 2.5rem;
    background: #062f66;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 53, 97, 0.2);
  }

  .btn-help:hover {
    background: #062f66;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 53, 97, 0.3);
  }

  /* Footer */
  .footer {
    background: linear-gradient(135deg, rgb(21, 118, 173) 0%, rgb(6, 47, 102) 100%);
    color: white;
    padding: 4rem 5% 2rem;
  }

  .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
  }

  .footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .footer-links {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
  }

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

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
  }

  .footer-social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
      align-items: center;
  }

  .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .social-icon img {
      width: 24px;
      height: 24px;
      object-fit: contain;
      transition: transform 0.3s ease;
      position: relative;
      z-index: 2;
  }

  .social-icon:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .social-icon:hover img {
      transform: scale(1.1);
  }

  .social-icon::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
  }

  .social-icon:hover::before {
      left: 100%;
  }

  .social-icon:nth-child(1):hover {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }

  .social-icon:nth-child(2):hover {
      background: #1877f2;
  }

  .social-icon:nth-child(3):hover {
      background: #000000;
  }

  .social-icon:nth-child(4):hover {
      background: #ff0000;
  }

  /* Navigation Dropdown */
  .nav-dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 900px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .dropdown-column-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
  }

  .dropdown-item {
    padding: 1rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
    border-radius: 8px;
  }

  .dropdown-item:hover {
    background: rgba(45, 53, 97, 0.05);
    color: var(--primary);
    transform: translateX(5px);
  }

  .dropdown-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(45, 53, 97, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
  }

  .dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .dropdown-item-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
  }

  .dropdown-item-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
  }

  /* Cookie Banner */
  .termsfeed-com---nb {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: #ffffff !important;
    padding: 12px 24px !important;
    margin: 0 !important;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15) !important;
    z-index: 99999 !important;
    font-family: 'Poppins', sans-serif !important;
  }

  .termsfeed-com---nb .cc-nb-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
  }

  .termsfeed-com---nb .cc-nb-title {
    display: none !important;
  }

  .termsfeed-com---nb .cc-nb-desc {
    color: #e0e0e0 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    flex: 1 !important;
    max-width: 600px !important;
  }

  .termsfeed-com---nb .cc-nb-buttons-container {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
    flex-wrap: nowrap !important;
  }

  .termsfeed-com---nb .cc-nb-okagree,
  .termsfeed-com---nb .cc-nb-reject,
  .termsfeed-com---nb .cc-nb-changep {
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    border: none !important;
    transition: background 0.2s, transform 0.1s !important;
    white-space: nowrap !important;
  }

  .termsfeed-com---nb .cc-nb-okagree:active,
  .termsfeed-com---nb .cc-nb-reject:active,
  .termsfeed-com---nb .cc-nb-changep:active {
    transform: scale(0.95) !important;
  }

  .termsfeed-com---nb .cc-nb-okagree {
    background: #062f66 !important;
    color: #fff !important;
  }

  .termsfeed-com---nb .cc-nb-okagree:hover {
    background: #062f66 !important;
  }

  .termsfeed-com---nb .cc-nb-reject {
    background: transparent !important;
    color: #e0e0e0 !important;
    border: 1px solid #e0e0e0 !important;
  }

  .termsfeed-com---nb .cc-nb-reject:hover {
    background: rgba(255,255,255,0.1) !important;
  }

  .termsfeed-com---nb .cc-nb-changep {
    background: transparent !important;
    color: #aaa !important;
    text-decoration: underline !important;
    padding: 8px 4px !important;
    font-size: 11px !important;
  }

  .termsfeed-com---nb .cc-nb-changep:hover {
    color: #fff !important;
  }

  /* Responsive Desktop */
  @media (max-width: 1024px) {
    .hero-content-website {
      grid-template-columns: 1fr;
    }

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

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

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

    .pricing-cards-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    body {
      overflow-x: hidden;
    }

    .container {
      width: 100%;
      max-width: 100%;
      padding: 0;
    }

    nav {
      padding: 1rem 5%;
    }

    .logo-container img {
      height: 70px;
    }

    .hamburger {
      display: flex;
      z-index: 1100;
    }

    .header-nav {
      display: none !important;
    }

    .dropdown-column {
      padding: 1rem 0;
    }

    .dropdown-column-title {
      font-size: 0.75rem;
      padding: 0 1rem;
      text-align: left;
    }

    .dropdown-item {
      padding: 1rem;
      border-bottom: 1px solid #E9ECEF;
      display: flex;
      align-items: center;
      gap: 1rem;
      text-align: left;
    }

    .dropdown-item-content {
      text-align: left;
      flex: 1;
    }

    .dropdown-item-title {
      text-align: left;
    }

    .dropdown-item-desc {
      text-align: left;
    }

    .dropdown-item:hover {
      transform: none;
    }

    .hero-website {
      padding: 6rem 5% 3rem;
      min-height: auto;
    }

    .hero-content-website {
      grid-template-columns: 1fr;
      padding-top: 1rem;
    }

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

    .hero-image-mobile {
      display: block !important;
      width: 100%;
      margin: 0 0 1.5rem 0;
    }

    .hero-image-mobile img {
      width: 100%;
      height: auto;
    }

    .hero-image-desktop {
      display: none !important;
    }

    .hero-text-website p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    .hero-buttons-website {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .hero-buttons-website .btn {
      width: 100%;
      text-align: center !important;
    }

    .tabs-navigation {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      border-bottom: none;
      margin-bottom: 2rem;
    }

    .tab-btn {
      padding: 0.8rem 0.5rem;
      font-size: 0.75rem;
      border-bottom: none;
      background: white;
      border-radius: 10px;
      text-align: center !important;
      border: 2px solid #E9ECEF;
      white-space: normal;
      line-height: 1.2;
    }

    .tab-btn.active {
      background: #1576ad;
      color: white;
      border-color: #1576ad;
    }

    .benefits-grid {
      grid-template-columns: 1fr !important;
      gap: 1.5rem;
    }

    .benefit-card {
      margin: 0;
      width: 100%;
    }

    .features-grid {
      grid-template-columns: 1fr !important;
      gap: 1.5rem;
    }

    .feature-card-site {
      margin: 0;
      width: 100%;
    }

    .tabs-section {
      padding: 3rem 5%;
    }

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

    .section-subtitle-center {
      font-size: 1rem;
    }

    .tab-content {
      padding: 0;
    }

    .why-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .why-card {
      margin: 0;
      width: 100%;
    }

    .pricing-toggle {
      margin: 2rem auto;
      max-width: 100%;
      flex-wrap: wrap;
    }

    .toggle-btn {
      padding: 0.8rem 1rem;
      font-size: 0.85rem;
    }

    .pricing-cards-container {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 1rem 0;
    }

    .pricing-card {
      margin: 0;
    }

    .popular-ribbon {
      font-size: 0.75rem;
      padding: 0.4rem 2.5rem;
    }

    .pricing-card-header {
      padding: 2.5rem 1.5rem 2rem;
    }

    .plan-name {
      font-size: 1.5rem;
    }

    .plan-subtitle {
      font-size: 0.9rem;
    }

    .amount {
      font-size: 3rem;
    }

    .currency {
      font-size: 1.5rem;
    }

    .pricing-card-body {
      padding: 2rem 1.5rem;
    }

    .feature-category {
      margin-bottom: 2rem;
    }

    .category-title {
      font-size: 1rem;
      gap: 0.6rem;
    }

    .category-icon {
      font-size: 1.3rem;
    }

    .features-list {
      gap: 0.8rem;
    }

    .feature-item {
      padding: 0.6rem;
    }

    .feature-content strong {
      font-size: 0.9rem;
    }

    .feature-desc {
      font-size: 0.8rem;
    }

    .pricing-card-footer {
      padding: 0 1.5rem 2rem;
    }

    .btn-pricing {
      padding: 1rem 1.5rem;
      font-size: 1rem;
    }

    .help-box {
      flex-direction: column;
      text-align: center;
      padding: 2rem 1.5rem;
      gap: 1.5rem;
    }

    .help-icon {
      font-size: 2.5rem;
    }

    .help-content h4 {
      font-size: 1.2rem;
    }

    .help-content p {
      font-size: 0.95rem;
    }

    .btn-help {
      width: 100%;
      text-align: center;
    }

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

    .footer-social-icons {
      gap: 12px;
      margin-top: 15px;
      justify-content: flex-start;
    }

    .social-icon {
      width: 40px;
      height: 40px;
    }

    .social-icon img {
      width: 20px;
      height: 20px;
    }

    .termsfeed-com---nb {
      padding: 14px 16px !important;
    }

    .termsfeed-com---nb .cc-nb-content {
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 10px !important;
    }

    .termsfeed-com---nb .cc-nb-desc {
      max-width: 100% !important;
      text-align: center !important;
    }

    .termsfeed-com---nb .cc-nb-buttons-container {
      justify-content: center !important;
      flex-wrap: wrap !important;
      gap: 8px !important;
    }
  }

  @media (max-width: 480px) {
    .social-icon {
      width: 38px;
      height: 38px;
    }
  }
  /* ===========================
     SECTIONS ALTERNÉES IMAGE/TEXTE
     =========================== */

  .alternating-sections {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  }

  .alt-section {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .alt-section:last-child {
    margin-bottom: 0;
  }

  .alt-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;

    transition: transform 0.3s ease;
  }

  .alt-image:hover {
    transform: translateY(-10px);
  }

  .alt-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .alt-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #062f66;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .alt-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

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

  .alt-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1rem;
    color: var(--text);
    border-bottom: 1px solid #f0f0f0;
  }

  .alt-features li:last-child {
    border-bottom: none;
  }

  .check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #1576ad;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
  }

  /* ===========================
     SECTION CHATBOT ULTRA-MODERNE
     =========================== */

  .chatbot-section-modern {
      background: #ffffff;
      padding: 5rem 5%;
      position: relative;
      overflow: hidden;
  }

  .chatbot-container-modern {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 500px 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
  }

  /* ===== PARTIE VIDÉO ===== */
  .chatbot-video-wrapper {
      position: relative;
  }

  .video-frame {
      width: 500px;
      height: 500px;
      border-radius: 24px;
      overflow: hidden;
      position: relative;

      transition: all 0.4s ease;
  }

  .video-frame:hover {
      transform: translateY(-8px);
      box-shadow: 
          0 0 0 1px rgba(6, 47, 102, 0.15),
          0 30px 70px rgba(6, 47, 102, 0.2),
          0 60px 100px rgba(6, 47, 102, 0.12);
  }

  .chatbot-video-element {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .video-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(10px);
      padding: 0.6rem 1rem;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.75rem;
      font-weight: 700;
      color: white;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .badge-pulse {
      width: 8px;
      height: 8px;
      background: #EF4444;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
      0%, 100% {
          opacity: 1;
          transform: scale(1);
      }
      50% {
          opacity: 0.5;
          transform: scale(1.3);
      }
  }

  .badge-text {
      font-size: 0.7rem;
  }

  /* ===== PARTIE CONTENU ===== */
  .chatbot-content-modern {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
  }

  .content-header {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
  }

  .category-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      width: fit-content;
      background: linear-gradient(135deg, rgba(21, 118, 173, 0.1) 0%, rgba(6, 47, 102, 0.1) 100%);
      color: #1576ad;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      border: 1px solid rgba(21, 118, 173, 0.2);
  }

  .category-tag svg {
      width: 14px;
      height: 14px;
  }

  .main-title {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: #062f66;
      line-height: 1.15;
      letter-spacing: -0.02em;
  }

  .gradient-text {
      background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .main-description {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #4A5568;
      max-width: 600px;
  }

  /* ===== STATISTIQUES ===== */
  .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding: 2rem 0;
      border-top: 1px solid #E5E7EB;
      border-bottom: 1px solid #E5E7EB;
  }

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

  .stat-number {
      font-size: 2rem;
      font-weight: 900;
      color: #062f66;
      line-height: 1;
      margin-bottom: 0.4rem;
      background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .stat-label {
      font-size: 0.85rem;
      color: #6B7280;
      font-weight: 500;
  }

  /* ===== FEATURES MODERNES ===== */
  .features-modern {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
  }

  .feature-modern {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      background: #F9FAFB;
      border-radius: 12px;
      border: 1px solid #E5E7EB;
      transition: all 0.3s ease;
  }

  .feature-modern:hover {
      background: white;
      border-color: #1576ad;
      transform: translateX(4px);
      box-shadow: 0 4px 12px rgba(21, 118, 173, 0.1);
  }

  .feature-icon-modern {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
  }

  .feature-text-modern {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
  }

  .feature-text-modern strong {
      font-size: 0.95rem;
      font-weight: 600;
      color: #1F2937;
  }

  .feature-text-modern span {
      font-size: 0.85rem;
      color: #6B7280;
      line-height: 1.4;
  }

  /* ===== CTA ===== */
  .cta-wrapper {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
  }

  .btn-chatbot-modern {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1.2rem 2.5rem;
      background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
      color: white;
      font-family: 'Poppins', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(21, 118, 173, 0.35);
      position: relative;
      overflow: hidden;
  }

  .btn-chatbot-modern::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
  }

  .btn-chatbot-modern:hover::before {
      left: 100%;
  }

  .btn-chatbot-modern:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(21, 118, 173, 0.45);
  }

  .btn-chatbot-modern svg {
      transition: transform 0.3s ease;
  }

  .btn-chatbot-modern:hover svg {
      transform: translateX(4px);
  }

  .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: #6B7280;
      font-size: 0.9rem;
      font-weight: 500;
  }

  .trust-badge svg {
      color: #10B981;
      width: 18px;
      height: 18px;
  }

  /* ===== RESPONSIVE MOBILE ===== */
  @media (max-width: 1024px) {
      .chatbot-container-modern {
          grid-template-columns: 1fr;
          gap: 3rem;
      }

      .video-frame {
          width: 100%;
          max-width: 500px;
          margin: 0 auto;
      }

      .stats-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 1rem;
      }

      .features-modern {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 768px) {
      .chatbot-section-modern {
          padding: 3rem 5%;
      }

      .chatbot-container-modern {
          gap: 2.5rem;
      }

      .video-frame {
          width: 100%;
          height: auto;
          aspect-ratio: 1;
      }

      .main-title {
          font-size: 2rem;
      }

      .main-description {
          font-size: 1rem;
      }

      .stats-grid {
          grid-template-columns: 1fr;
          gap: 1.2rem;
          text-align: center;
      }

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

      .stat-number {
          font-size: 2.5rem;
      }

      .features-modern {
          grid-template-columns: 1fr;
          gap: 1rem;
      }

      .cta-wrapper {
          flex-direction: column;
          align-items: stretch;
          gap: 1rem;
      }

      .btn-chatbot-modern {
          width: 100%;
          justify-content: center;
      }

      .trust-badge {
          justify-content: center;
      }
  }

  @media (max-width: 480px) {
      .video-frame {
          height: 350px;
          aspect-ratio: auto;
      }

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

      .stat-number {
          font-size: 2rem;
      }

      .feature-modern {
          padding: 0.8rem;
      }
  }

  /* ===========================
     SECTION PROCESSUS
     =========================== */

  .process-section {
    padding: 3rem 5%;
    background: linear-gradient(135deg, rgb(21, 118, 173) 0%, rgb(6, 47, 102) 100%);
    position: relative;
    overflow: hidden;
  }

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

  .process-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
  }

  .process-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .process-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: white;
  }

  .process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .process-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .process-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
  }

  .process-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }

  /* ===========================
     RESPONSIVE MOBILE
     =========================== */

  @media (max-width: 768px) {
    /* Navigation mobile */
    nav {
      padding: 1rem 5%;
    }

    .logo-container img {
      height: 70px;
    }

    .hamburger {
      display: flex;
      z-index: 1100;
    }

    .header-nav {
      display: none !important;
    }

    .nav-cta {
      margin-top: 1rem;
      text-align: center;
      display: inline-block;
      width: auto;
    }

    .nav-social-icons {
      width: 100%;
      justify-content: center;
      padding: 1rem 0;
      margin: 0;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .social-icon-nav {
      width: 45px;
      height: 45px;
    }

    .alternating-sections {
      padding: 3rem 5%;
    }

    .alt-section {
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .alt-content h2 {
      font-size: 1.8rem;
    }

    .alt-content p {
      font-size: 1rem;
    }

    .alt-features li {
      font-size: 0.95rem;
    }

    /* Bannière Chatbot Mobile */
    .chatbot-banner {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2.5rem 1.5rem;
    }

    .chatbot-content h2 {
      font-size: 1.8rem;
    }

    .chatbot-content p {
      font-size: 1rem;
    }

    .chatbot-benefits {
      gap: 1rem;
    }

    .chatbot-benefit-item {
      padding: 0.8rem;
    }

    .benefit-icon-check {
      min-width: 28px;
      width: 28px;
      height: 28px;
    }

    .benefit-text strong {
      font-size: 0.9rem;
    }

    .benefit-text span {
      font-size: 0.85rem;
    }

    .btn-chatbot {
      width: 100%;
      justify-content: center;
      padding: 1rem 2rem;
      font-size: 1rem;
    }

    .process-section {
      padding: 2.5rem 5%;
    }

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

    .process-card {
      padding: 2rem 1.5rem;
    }

    .process-number {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
    }

    .process-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 1rem;
    }

    .process-icon img {
      width: 60px;
      height: 60px;
    }

    .process-card h3 {
      font-size: 1.2rem;
    }

    .process-card p {
      font-size: 0.85rem;
    }
  }

  @media (max-width: 480px) {
    .process-container {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .process-card {
      padding: 1.5rem 1rem;
    }

    .chatbot-banner {
      padding: 2rem 1rem;
    }
  }

  .alt-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
  }
  .why-choose-accordion {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
  }

  .why-accordion-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
  }

  .why-accordion-left {
    position: sticky;
    top: 120px;
  }

  .section-badge {
    display: inline-block;
    background: #062f66;
    color: #ffffff;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
  }

  .why-accordion-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #062f66;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .why-accordion-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 2.5rem;
  }

  .btn-contact-accordion {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .btn-contact-accordion:hover {
    background: #062f66;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .btn-contact-accordion svg {
    transition: transform 0.3s ease;
  }

  .btn-contact-accordion:hover svg {
    transform: translateX(5px);
  }

  .btn-contact-accordion-mobile {
    display: none;
  }

  .why-accordion-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .accordion-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .accordion-item:hover {
    border-color: #062f66;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .accordion-header {
    width: 100%;
    background: white;
    border: none;
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1A1A1A;
    text-align: left;
    transition: all 0.3s ease;
  }

  .accordion-header:hover {
    color: #062f66;
  }

  .accordion-header span {
    flex: 1;
    padding-right: 1.5rem;
  }

  .accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #1A1A1A;
  }

  .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #062f66;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #FAFAFA;
  }

  .accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
  }

  .accordion-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4A4A4A;
    margin: 0;
    padding-top: 0.5rem;
  }
  .alt-image video {
      width: 100%;
      height: auto;
      border-radius: 12px; /* si ton image en avait */
      object-fit: cover;
  }
  .testimonials-banner-section {
    padding: 6rem 5% 8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
  }

  .testimonials-banner-wrapper {
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
  }

  .testimonials-banner-wrapper::before,
  .testimonials-banner-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .testimonials-banner-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
  }

  .testimonials-banner-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
  }

  .testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll-left 40s linear infinite;
    width: max-content;
  }

  .testimonials-track:hover {
    animation-play-state: paused;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .testimonial-card-banner {
    min-width: 400px;
    max-width: 400px;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(6, 47, 102, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .testimonial-card-banner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(6, 47, 102, 0.2);
  }

  .testimonial-stars-banner {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
  }

  .testimonial-text-banner {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4A5568;
    font-style: italic;
    margin-bottom: 2rem;
    min-height: 90px;
  }

  .testimonial-author-banner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(6, 47, 102, 0.1);
  }

  .author-avatar-banner {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(6, 47, 102, 0.3);
  }

  .author-info-banner {
    flex: 1;
  }

  .author-info-banner h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.3rem;
  }

  .author-info-banner p {
    font-size: 0.9rem;
    color: #718096;
  }

  .section-subtitle2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .section-title2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #062f66;
    margin-bottom: 1.5rem;
    align-items: center;
  }
  /* ===== HERO VIDEO INVITATION (Nouvelle classe pour ne pas interférer) ===== */
  .hero-video-container-invitation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
  }

  .hero-video-invitation {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;

    object-fit: cover;

  }

  .hero-video-invitation:hover {
    transform: scale(1.02);

  }

  /* Desktop : vidéo visible */
  @media (min-width: 769px) {
    .hero-video-container-invitation {
      display: flex;
    }
  }

  /* Mobile : vidéo cachée sur desktop, visible dans hero-image-mobile */
  @media (max-width: 768px) {
    .hero-video-container-invitation {
      display: none;
    }

    /* La vidéo mobile est déjà gérée par .hero-image-mobile */
  }
  /* ===================================================================
     CARROUSEL SUPPORTS DE COMMUNICATION - SECTION LOGO
     Classes uniques pour éviter tout conflit avec les autres éléments
     ================================================================= */

  .alt-image-carousel {
    position: relative;
    max-width: 600px;
    width: 100%;
  }

  .carousel-supports-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-supports-track {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;

  }

  .carousel-supports-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
  }

  .carousel-supports-slide.active {
    opacity: 1;
    pointer-events: auto;
  }

  .carousel-supports-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .carousel-supports-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .carousel-supports-arrow:hover {
    background: #062f66;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(6, 47, 102, 0.4);
  }

  .carousel-supports-arrow svg {
    stroke: #062f66;
    transition: stroke 0.3s ease;
  }

  .carousel-supports-arrow:hover svg {
    stroke: white;
  }

  /* Flèches bien espacées sur les côtés */
  .carousel-supports-prev {
    left: -40px;
  }

  .carousel-supports-next {
    right: -40px;
  }

  /* ===================================================================
     RESPONSIVE MOBILE
     ================================================================= */

  @media (max-width: 768px) {
    .carousel-supports-track {
      height: 350px;
    }

    .carousel-supports-arrow {
      width: 40px;
      height: 40px;
    }

    /* Sur mobile, les flèches rentrent à l'intérieur */
    .carousel-supports-prev {
      left: 10px;
    }

    .carousel-supports-next {
      right: 10px;
    }

    .carousel-supports-arrow svg {
      width: 20px;
      height: 20px;
    }
  }

  @media (max-width: 480px) {
    .carousel-supports-track {
      height: 300px;
    }

    .carousel-supports-arrow {
      width: 35px;
      height: 35px;
    }
  }
  .nav-social-icons2 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 1rem;
  }
  /* ===========================
     VIDÉO 16:9 - SECTION HISTOIRE
     =========================== */

  .alt-video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 47, 102, 0.15);
  }

  .video-16-9 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* ratio 16:9 */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #062f66;
  }

  .alt-video-invitation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.4s ease;
  }

  .alt-video-wrapper:hover .alt-video-invitation {
    transform: scale(1.03);
  }

  @media (max-width: 768px) {
    .alt-video-wrapper {
      border-radius: 15px;
    }
    .video-16-9 {
      border-radius: 15px;
    }
    .alt-video-invitation {
      border-radius: 15px;
    }
  }
  .inv-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .inv-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit le conteneur sans déformer */
    border-radius: 10px; /* optionnel, pour un style plus doux */
  }

  /* Optionnel : overlay sombre si le texte passe dessus */


  /* Si tu veux que le texte reste au-dessus de la vidéo */
  .alt-content {
    position: relative;
    z-index: 2;
  }

  /* ===========================
     DIAPORAMA POSTS 500x500
     =========================== */

  .posts-slideshow-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .posts-slideshow {
      position: relative;
      width: 500px;
      height: 500px;
      border-radius: 20px;
      overflow: hidden;
      background: #000;
      box-shadow: 0 20px 60px rgba(6, 47, 102, 0.18);
      flex-shrink: 0;
  }

  .posts-slide {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.7s ease;
  }

  .posts-slide.active {
      opacity: 1;
  }

  .posts-slide-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.22);
      border: none;
      color: white;
      font-size: 1.8rem;
      width: 42px; height: 42px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      backdrop-filter: blur(6px);
      transition: background 0.3s;
      display: flex; align-items: center; justify-content: center;
      line-height: 1;
  }

  .posts-slide-btn:hover {
      background: rgba(6, 47, 102, 0.7);
  }

  .posts-slide-btn.prev { left: 14px; }
  .posts-slide-btn.next { right: 14px; }

  .posts-slide-dots {
      position: absolute;
      bottom: 14px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
  }

  .posts-dot {
      width: 9px; height: 9px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.45);
      cursor: pointer;
      transition: background 0.3s;
  }

  .posts-dot.active {
      background: #ffffff;
  }

  @media (max-width: 768px) {
      .posts-slideshow {
          width: 100%;
          height: 0;
          padding-bottom: 100%; /* maintient le carré */
      }
  }
.rotating-word {
  color: #ffffff;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.rotating-word.hidden {
  opacity: 0;
}
@media (max-width: 768px) {
  .tabs-section-inner {
    padding: 1.5rem 4% 0;
  }

  .tabs-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .tab-btn {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    border-radius: 12px 12px 0 0;
    gap: 0.6rem;
  }

  .tab-icon-wrapper {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
  }

  .tab-emoji {
    font-size: 1.2rem;
  }

  .tab-text-wrapper {
    gap: 0.1rem;
  }

  .tab-label-main {
    font-size: 0.78rem;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.3;
  }

  .tab-label-sub {
    display: none; /* Masqué sur mobile pour économiser l'espace */
  }

  .tab-content {
    padding: 2.5rem 4%;
  }
}

@media (max-width: 480px) {
  .tabs-navigation {
    gap: 0.4rem;
  }

  .tab-btn {
    padding: 0.8rem 0.5rem;
  }

  .tab-icon-wrapper {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .tab-label-main {
    font-size: 0.72rem;
  }
}
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
/* ═══════════════════════════════════════════════════════════════
   ADDITIONS À COLLER À LA FIN DE site-internet.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Images PNG dans les tab-icon-wrapper (desktop) ── */
.tab-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
  display: block;
  position: relative;
  z-index: 1;
}

/* Onglet actif : image blanche (le fond dégradé est bleu) */
.tab-btn.active .tab-icon-img {
  filter: brightness(0) invert(1);
}

/* Hover sur onglet inactif : teinte bleue */
.tab-btn:hover:not(.active) .tab-icon-img {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(30%) sepia(80%) saturate(500%) hue-rotate(185deg);
}

/* ── Masquer le bouton "Afficher plus/moins" sur ordinateur ── */
@media (min-width: 769px) {
  .benefits-show-more-wrapper {
    display: none !important;
  }

  /* Toutes les benefit-card-extra visibles sur desktop */
  .benefit-card-extra {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
}

/* ── Hero image mobile : cachée dans la position originale, gérée par mobile.css ── */
@media (min-width: 769px) {
  /* Sur desktop : s'assurer que hero-image-mobile dans hero-text est cachée */
  .hero-text-website .hero-image-mobile {
    display: none !important;
  }
}
/* ═══════════════════════════════════════════════════════════════
   PATCH MOT ROTATIF CSS PUR — À COLLER À LA FIN de site-internet.css
   (Remplace l'ancienne logique JS par animation CSS pure)
   ═══════════════════════════════════════════════════════════════ */

/* ── Wrapper principal ── */
.rotating-word-wrap {
  display: inline-block;
  vertical-align: top;
  height: 1.5em;
  overflow: hidden;
  white-space: nowrap;
}

/* ── Colonne de mots animée ── */
.rotating-word-inner {
  display: inline-flex;
  flex-direction: column;
  animation: siteWordSlide 12s ease-in-out infinite;
}

/* ── Chaque mot ── */
.rotating-word-inner span {
  display: block;
  height: 1.5em;
  line-height: 1.5em;
  flex-shrink: 0;
  color: #ffffff;
  font-weight: inherit;
  white-space: nowrap;
}

/* ── Keyframes : 3 mots × 4s chacun ── */
@keyframes siteWordSlide {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(0); }
  27%  { transform: translateY(-1.5em); }
  47%  { transform: translateY(-1.5em); }
  54%  { transform: translateY(-3em); }
  74%  { transform: translateY(-3em); }
  81%  { transform: translateY(-4.5em); }
  100% { transform: translateY(-4.5em); }
}

/* ── Rétrocompatibilité avec ancien .rotating-word (JS ne modifie plus) ── */
.rotating-word { color: #ffffff; display: inline-block; }
/* ═══════════════════════════════════════════════════════════
   À COLLER À LA FIN DE site-internet.css
   Gestion du bouton "Afficher plus/moins" sur mobile
   ═══════════════════════════════════════════════════════════ */

/* Les 3 cartes extra cachées par défaut sur mobile */
@media (max-width: 768px) {
  .benefit-card-extra {
    display: none !important;
  }
}

/* Le wrapper du bouton caché sur desktop, visible sur mobile */
.benefits-show-more-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .benefits-show-more-wrapper {
    display: flex !important;
    justify-content: center;
    margin-top: 1.5rem;
  }
}

/* Style du bouton */
.benefits-show-more-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: white;
  border: 2px solid #1576ad;
  border-radius: 50px;
  color: #1576ad;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(21, 118, 173, 0.15);
}

.benefits-show-more-btn:hover {
  background: #1576ad;
  color: white;
  box-shadow: 0 4px 18px rgba(21, 118, 173, 0.3);
}

.benefits-show-more-btn svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.benefits-show-more-btn:hover svg {
  stroke: white;
}