/* Reset et styles de base */
html, body, div, h1, h2, h3, p, input, textarea, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: #fbfbfb;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {

}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #0077cc;
  border-radius: 2px;
}

/* Font Awesome */
@font-face {
  font-family: 'FontAwesome';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/webfonts/fa-solid-900.woff2') format('woff2'),
       url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/webfonts/fa-solid-900.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FontAwesome Brands';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/webfonts/fa-brands-400.woff2') format('woff2'),
       url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/webfonts/fa-brands-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.fa, .fas {
  font-family: 'FontAwesome';
  font-style: normal;
}

.fab {
  font-family: 'FontAwesome Brands';
  font-style: normal;
}

.fa-volume-control-phone:before { content: "\f2a0"; }
.fa-phone:before { content: "\f095"; }
.fas.fa-clock:before { content: "\f017"; }
.fas.fa-heart:before { content: "\f004"; }
.fas.fa-search:before { content: "\f002"; }
.fas.fa-shield-alt:before { content: "\f3ed"; }
.fas.fa-check:before { content: "\f00c"; }
.fas.fa-star:before { content: "\f005"; }
.fas.fa-star-half-alt:before { content: "\f5c0"; }
.fas.fa-check-circle:before { content: "\f058"; }
.fas.fa-clipboard-list:before { content: "\f46d"; }
.fas.fa-headset:before { content: "\f590"; }
.fas.fa-users:before { content: "\f0c0"; }
.fas.fa-chart-line:before { content: "\f201"; }
.fas.fa-bolt:before { content: "\f0e7"; }
.fas.fa-brain:before { content: "\f5dc"; }
.fas.fa-user-cog:before { content: "\f4fe"; }
.fas.fa-plus:before { content: "\f067"; }
.fas.fa-minus:before { content: "\f068"; }
.fas.fa-chevron-left:before { content: "\f053"; }
.fas.fa-chevron-right:before { content: "\f054"; }
.fas.fa-envelope:before { content: "\f0e0"; }
.fas.fa-map-marker-alt:before { content: "\f3c5"; }
.fas.fa-plus:before { content: "\f067"; }
.fas.fa-minus:before { content: "\f068"; }
.fab.fa-facebook-f:before { content: "\f39e"; }
.fab.fa-twitter:before { content: "\f099"; }
.fab.fa-linkedin-in:before { content: "\f0e1"; }

/* Header */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

@media (min-width: 769px) {
  .header.scrolled {
    padding: 10px 0px;
  }
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  width: 50px;
  transition: all 0.3s ease;
  margin-left: 20px;
}

@media (min-width: 769px) {
  .header.scrolled .logo img {
    width: 60px;
  }
}

.catch-phrase {
  text-align: right;
  transition: all 0.3s ease;
  margin-right: 20px;
}

.header.scrolled .catch-phrase {
  font-size: 0.9em;
}

.service {
  color: #0077cc;
  font-weight: 600;
  font-size: 18px;
  display: block;
  letter-spacing: 0.3px;
}

.assistance {
  color: #4f5556;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.2px;
}

/* Mobile Menu Icon */
.mobile-menu-icon {
  display: none;
  cursor: pointer;
  padding: 5px;
  margin-right: 10px;
}

.mobile-menu-icon .bar {
  width: 25px;
  height: 3px;
  background-color: #4a5568;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 400px; /* Réduit la hauteur */
  background: linear-gradient(110deg, #ffffff 50%, rgba(247, 250, 255, 0.9) 100%);
  display: flex;
  overflow: hidden;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .hero-section {
    margin-top: 40px;
  }
}

/* Effet de lumière subtil */
.hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 119, 204, 0.05) 0%, rgba(0, 119, 204, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 119, 204, 0.03) 0%, rgba(0, 119, 204, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Conteneur des éléments de la hero section */
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Styles pour le contenu textuel */
.hero-content {
  flex: 1;
  max-width: 55%;
  padding-right: 30px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #0077cc;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.6;
  margin: 30px 0;
  font-weight: 400;
  padding-right: 20px;
}

/* Badge de confiance amélioré */
.trust-badge {
  display: flex;
  align-items: center;
  background: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 320px;
  margin-top: 30px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.trust-badge-icon {
  margin-right: 12px;
  color: #38a169;
  font-size: 24px;
}

.trust-badge-text {
  font-size: 14px;
  font-weight: 500;
  color: #2d3748;
}

.trust-badge-users {
  color: #0077cc;
  font-weight: 700;
}

/* Conteneur de l'image avec effets */
.hero-image-container {
  position: relative;
  flex: 1;
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Style de l'image avec masque et ombre */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 400px; /* Réduit légèrement la taille de l'image */
  height: auto;
  z-index: 2;
  border-radius: 10px;
  margin-bottom: 48px; /* Ajoute une marge en bas pour remonter l'image */
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0));
}

/* Éléments décoratifs autour de l'image */
.image-decor-1 {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(0, 119, 204, 0.1);
  border-radius: 50%;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.image-decor-2 {
  position: absolute;
  bottom: 15%;
  right: 3%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(0, 119, 204, 0.07);
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite reverse;
}

.image-decor-3 {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(0, 119, 204, 0.1) 0%, rgba(0, 119, 204, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-light 4s ease-in-out infinite;
}

/* Animation des éléments décoratifs */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

/* Animation d'entrée */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 40px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Main Content */
.main-content2 {
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  border-radius: 12px;
  background: #fff;
  margin: -50px auto 80px;
  position: relative;
  max-width: 1200px;
  overflow: hidden;
  padding: 40px;
}

.main-content {
  display: flex;
  min-height: 400px;
}

.content-section, .form-section {
  flex: 1;
  padding: 30px;
}

.content-section {
  border-right: 1px solid rgba(0,0,0,0.05);
}

.main-description {
  font-size: 26px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.main-description::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #0077cc;
  border-radius: 2px;
}

/* Call Button & Animation */
.call-button-container {
  position: relative;
  max-width: 320px;
  margin: 35px auto;
}

/* Style du bouton principal avec effet de lueur */
.call-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 20px;
  background: #000;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

/* Animation de pulsation avec lueur */
@keyframes pulseEffect {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgb(241, 49, 108);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
}

/* Effet de bordure lumineuse */
.call-button::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff0055, #7700ff, #0099ff, #ff0055);
  background-size: 400% 400%;
  border-radius: 10px;
  z-index: -2;
  animation: gradientBorder 8s ease infinite;
  opacity: 0.7;
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Appliquer l'animation au bouton */
.call-button {
  animation: pulseEffect 1.9s infinite;
}

/* Effet d'arrière-plan animé */
.call-button::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: all 0.6s ease;
  z-index: -1;
}

.call-button:hover::before {
  left: 100%;
}

/* Style du texte dans le bouton */
.text-number {
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Icône du téléphone dans le bouton */
.fa.fa-volume-control-phone {
  position: relative;
  z-index: 2;
  margin-right: 12px;
  font-size: 30px;
}

/* Gestion de l'affichage desktop/mobile */
.mobile-phone-icon {
  display: none;
}

.desktop-text {
  display: inline;
}

.mobile-text {
  display: none;
}

@media (max-width: 768px) {
  .mobile-phone-icon {
    display: inline-block;
  }
  
  .desktop-text {
    display: none;
  }
  
  .mobile-text {
    display: inline;
    font-size: 18px;
  }
  
  .mentions {
    display: flex !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Effet au survol et au clic */
.call-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(241, 49, 108, 0.4);
}

.call-button:active {
  transform: translateY(1px);
}

/* Mentions tarifaires avec style premium */
.mentions {
  display: flex;
  justify-content: center;
  width: fit-content;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.mentions.show {
  opacity: 1;
  transform: translateY(0);
}

.numero {
  text-decoration: none;
  color: #a50f78;
  font-weight: 700;
  border: solid #e5e5e5 1px;
  padding: 12px 20px;
  font-size: 18px;
  background-color: white;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.prix {
  background-color: #a50f78;
  color: #ffffff;
  padding: 15px 9px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.numero:hover, .prix:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

/* Effet de particules autour du bouton */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(241, 49, 108, 0.6);
  border-radius: 50%;
  opacity: 0;
}

@keyframes particleAnimation {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Features */
.features {
  width: 100%;
  max-width: 450px;
  margin: 40px auto;
}

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

.features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #4a5568;
  padding-left: 5px;
  font-weight: 500;
}

.features li i {
  margin-right: 15px;
  color: white;
  background-color: #0077cc;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 119, 204, 0.2);
}

/* Form Section */
.form-section {
  background-color: #fff;
}

.form-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.form-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #0077cc;
  border-radius: 2px;
}

.form-section form {
  display: flex;
  flex-direction: column;
}

.form-section form input,
.form-section form textarea {
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.form-section form input:focus,
.form-section form textarea:focus {
  outline: none;
  border-color: #0077cc;
  box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
  background-color: #fff;
}

.form-section form textarea {
  resize: vertical;
  min-height: 150px;
}

.form-section form button {
  padding: 16px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 119, 204, 0.1);
}

.form-section form button:hover {
  background-color: #0066b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 119, 204, 0.15);
}

/* Comment ça marche Section */
.how-it-works-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #0077cc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 119, 204, 0.3);
}

.step-icon {
  font-size: 40px;
  color: #0077cc;
  margin-bottom: 20px;
}

.step-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2d3748;
}

.step-item p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
}

/* Chiffres clés Section */
.key-figures-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0077cc 0%, #1a56db 100%);
  color: white;
}

.key-figures-section .section-title {
  color: white;
}

.key-figures-section .section-title::after {
  background: white;
}

.figures-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.figure-item {
  text-align: center;
  min-width: 200px;
}

.figure-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.figure-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.figure-label {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Section Témoignages (style grille) */
.testimonials-section {
  padding: 80px 0;
  background-color: #fff;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background-color: #f8fafc;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-content {
  font-size: 16px;
  color: #2d3748;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #2d3748;
  font-size: 16px;
}

.author-position {
  color: #718096;
  font-size: 14px;
}


/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
}

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

/* FAQ Section (suite) */
.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.faq-toggle {
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 119, 204, 0.1);
  font-weight: 900;
  font-size: 18px;
}

.faq-toggle i {
  font-size: 14px;
  color: #0077cc;
  transition: all 0.3s ease;
  font-family: 'FontAwesome';
  font-weight: 900;
  font-style: normal;
}

.faq-toggle .fa-plus:before {
  content: "\f067";
}

.faq-toggle .fa-minus:before {
  content: "\f068";
}

.faq-item.active .faq-toggle {
  background-color: #e8f0fe;
  color: #0077cc;
}

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

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 300px;
}

.faq-answer p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

/* Avantages Section */
.advantages-section {
  padding: 80px 0;
  background-color: #fff;
}

.advantages-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.advantage-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background-color: #f8fafc;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.08);
}

.advantage-icon {
  font-size: 36px;
  color: #0077cc;
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.advantage-card p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: #1a202c;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #a3bffa;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #3182ce;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li i {
  margin-right: 10px;
  color: #a3bffa;
}

.footer-column ul li a {
  color: #cbd5e0;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #a3bffa;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  font-size: 14px;
  color: #a0aec0;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 10px 0;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e0;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #0077cc;
  color: white;
  transform: translateY(-3px);
}

/* Animations au scroll */
.fade-in, .slide-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.trust-features {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 10px;
}

.trust-rating {
  margin-top: 5px;
}

.trust-rating {
  margin-bottom: 20px;
  text-align: center;
}

.stars {
  color: #f6ad55;
  font-size: 22px;
  margin-bottom: 5px;
}

.rating-text {
  color: #4a5568;
  font-weight: 500;
}

.feature-badges {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-badge {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 10px 15px;
  border-radius: 6px;
  border-left: 3px solid #0077cc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-badge i {
  color: #0077cc;
  margin-right: 8px;
  font-size: 16px;
}

.feature-badge span {
  font-weight: 500;
  color: #4a5568;
}

.content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.call-button-container {
  margin-bottom: 10px;
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
}

.mentions {
  display: none;
  justify-content: center;
  width: fit-content;
  margin: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.mentions.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.trust-features {
  max-width: 400px;
  margin: 0;
  width: 100%;
}

.trust-rating {
  margin-bottom: 20px;
  text-align: center;
}

.stars {
  color: #f6ad55;
  font-size: 22px;
  margin-bottom: 5px;
}

.feature-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-badge {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 10px 15px;
  border-radius: 6px;
  border-left: 3px solid #0077cc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Classes d'aide pour les animations */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container, .container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-image {
    max-width: 400px;
  }
}

@media (max-width: 992px) {
  .main-content {
    flex-direction: column;
  }
  
  .content-section, .form-section {
    max-width: 100%;
    padding: 0px;
    border-right: none;
  }
  
  .content-section {
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .steps-container, .figures-container, .advantages-container {
    justify-content: center;
  }
  
  .step-item, .figure-item, .advantage-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }
  
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
  
  .logo img {
    width: 40px;
    margin-left: 0;
  }
  
  .catch-phrase {
    display: none;
  }
  
  .mobile-menu-icon {
    display: block;
    margin-right: 40px;
  }
  
  /* Amélioration de la section principale en mobile */
  .main-content2 {
    margin: -30px 20px 60px;
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .main-content {
    flex-direction: column;
  }
  
  .content-section, .form-section {
    padding: 20px 0;
  }
  
  .content-section {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-right: none;
  }
  
  /* Feature badges améliorés */
  .feature-badges {
    gap: 20px;
    margin-top: 25px;
  }
  
  .feature-badge {
    padding: 14px 18px;
    border-radius: 12px;
    background-color: #f8fafc;
    border-left-width: 4px;
    font-size: 15px;
  }
  
  .feature-badge i {
    font-size: 18px;
    margin-right: 12px;
  }
  
  /* Formulaire amélioré */
  .form-section h3 {
    font-size: 22px;
    margin-bottom: 40px;
  }
  
  .form-section form input,
  .form-section form textarea {
    padding: 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  
  .form-section form textarea {
    min-height: 120px;
  }
  
  .form-section form button {
    padding: 18px;
    font-size: 17px;
    border-radius: 12px;
    margin-top: 10px;
  }
  
  .main-description {
	    margin-bottom:10px;
	    
	 }
	 
	 /* Comment ça marche Section */
.how-it-works-section {
  padding: 0px 0;
  background-color: #f8fafc;
}

  
  .hero-section {
    padding-top: 0px;
    min-height: 350px;
    position: relative;
  }
  
  .hero-container {
    text-align: left;
    padding: 20px;
    position: relative;
    height: 100%;
    min-height: 350px;
  }
  
  .hero-content {
    max-width: 60%;
    padding-right: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    padding-top: 30px;
  }
  
  .hero-title {
    font-size: 19px;
    color: #1a202c;
    text-align: left;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
  }
  
  .hero-title::after {
    display: none;
  }
  
  .hero-subtitle {
    display: none;
  }
  
  .hero-image-container {
    position: absolute;
    top: -4px;
    right: 13px;
    bottom: -26px;
    width: 45%;
    max-width: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
  }
  
    .hero-image {
        width: auto;
        height: 71%;
        max-width: none;
        margin-bottom: 0;
        object-fit: contain;
        object-position: center center;

    }
  
  .hero-section {
    padding-top: 0px;
    min-height: 350px;
    position: relative;
    background: linear-gradient(to right, #ffffff 65%, #f8fafc 100%);
  }
  
  .trust-badge {
    margin: 25px 0 0;
    max-width: 260px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 119, 204, 0.1);
  }
  
  .trust-badge-text {
  font-size: 12px;
  font-weight: 500;
  color: #2d3748;
}

.trust-badge-users {
  color: #0077cc;
  font-weight: 700;
}
  
  .image-decor-1, .image-decor-2, .image-decor-3 {
    display: none;
  }
  
    .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial-card {
    width: 100%;
    max-width: 100%;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-social {
    margin-top: 20px;
    justify-content: center;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 22px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .main-description {
    font-size: 22px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .testimonial-content {
    font-size: 16px;
  }
  
  .figure-number {
    font-size: 36px;
  }
  
  .figure-label {
    font-size: 16px;
  }
  
  .call-button {
    font-size: 18px;
    padding: 15px;
  }
  
  .form-section form input,
  .form-section form textarea,
  .form-section form button {
    padding: 12px;
    font-size: 16px;
  }
}


@media (max-width: 405px) {
    
    .hero-title {
        font-size: 20px;
    }
} /* Accolade fermante manquante ici */

@media (max-width: 395px) {
    .mobile-text {
        font-size: 16px;
    }
    
} /* Accolade fermante manquante ici */


@media (max-width: 387px) {
    
    .hero-title {
        font-size: 18px;
    }
} /* Accolade fermante manquante ici */



@media (max-width: 370px) {
    
    .hero-title {
        font-size: 17px;
    }
        .mobile-text {
        font-size: 14px;
    }
} /* Accolade fermante manquante ici */


@media (max-width: 356px) {
    
    .hero-title {
        font-size: 16px;
    }
        .mobile-text {
        font-size: 14px;
    }
} /* Accolade fermante manquante ici */

@media (max-width: 350px) {
    
    .hero-title {
        font-size: 16px;
    }
    
    .mobile-text {
        font-size: 12px;
    }
    
    .hero-image {
        height: 60%;
    }
    
    .hero-image-container {
        bottom: -48px;
    }
    
    /* Masquer le texte original */
    .mobile-text {
        display: none;
    }
    
    /* Afficher le nouveau texte court */
    .call-button .text-number::after {
        content: "Appeler";
    }
    
    
    .trust-badge {
        display: none;
    }
    
    .main-description{
           font-size: 20px;
    }
    
    

}

@media (max-width: 334px) {
    
    .hero-title {
        font-size: 15px;
    }
    
    .numero
    {
        padding: 12px 6px;
    }
    
    
    
  }  
    
    
    @media (max-width: 325px) {
    
    .hero-title {
        font-size: 14.5px;
    }
  }  
    










/* Animation pour le chargement des sections */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-section,
.main-content2,
.how-it-works-section,
.key-figures-section,
.testimonials-section,
.faq-section,
.advantages-section,
footer {
  animation: fadeIn 0.5s ease-in-out;
}

/* Styles pour les icônes FontAwesome dans tout le site */
.fas, .fab {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Styles pour la visibilité des animations */
.visible {
  visibility: visible;
}