/* Section Hero */
.hero-section {
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 55px 0;
}

/* Animation simple pour le titre principal */
.hero-text-overlay h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 72px;
  margin: 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-text-overlay h1.title-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Animations au scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des éléments enfants */
.card,
.stat-card,
.partner-block,
.tab-item,
.testimonial-tab,
.future-card,
.hero-image-container,
.hero-text-overlay,
.hero-content,
.hero-info,
.hero-text,
.hero-illustration {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.animate-in,
.stat-card.animate-in,
.partner-block.animate-in,
.tab-item.animate-in,
.testimonial-tab.animate-in,
.future-card.animate-in,
.hero-image-container.animate-in,
.hero-text-overlay.animate-in,
.hero-content.animate-in,
.hero-info.animate-in,
.hero-text.animate-in,
.hero-illustration.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation spéciale pour les compteurs */
.stat-value {
  transition: all 0.3s ease;
}

/* Animation des images et icônes */
.card-image,
.content-illustration,
.avatar-photo,
.future-card-icon,
.hero-image,
.white-deco-img,
.decoration-img {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .card-image,
.animate-in .content-illustration,
.animate-in .avatar-photo,
.animate-in .future-card-icon,
.animate-in .hero-image,
.animate-in .white-deco-img,
.animate-in .decoration-img {
  opacity: 1;
  transform: scale(1);
}

/* Animation des textes */
.hero-text h2,
.hero-text p,
.impact-title,
.impact-description,
.technology-title,
.solutions-title,
.expertise-title,
.expertise-description,
.future-title,
.future-description,
.avatar-name,
.avatar-position,
.avatar-description,
.newsletter-title {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .hero-text h2,
.animate-in .hero-text p,
.animate-in .impact-title,
.animate-in .impact-description,
.animate-in .technology-title,
.animate-in .solutions-title,
.animate-in .expertise-title,
.animate-in .expertise-description,
.animate-in .future-title,
.animate-in .future-description,
.animate-in .avatar-name,
.animate-in .avatar-position,
.animate-in .avatar-description,
.animate-in .newsletter-title {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des décorations */
.hero-decoration,
.impact-decoration,
.expertise-decoration,
.future-illustration {
  opacity: 0;
  transform: rotate(-10deg) scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .hero-decoration,
.animate-in .impact-decoration,
.animate-in .expertise-decoration,
.animate-in .future-illustration {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Animation des boutons */
.btn-outline,
.btn-secondary,
.btn-newsletter {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .btn-outline,
.animate-in .btn-secondary,
.animate-in .btn-newsletter {
  opacity: 1;
  transform: translateY(0);
}

/* Animation du formulaire newsletter */
.newsletter-form {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .newsletter-form {
  opacity: 1;
  transform: translateX(0);
}

/* Animation des témoignages */
.testimonial-block {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-block.active {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------
   Responsive (mobile)
   -------------------- */
@media (max-width: 768px) {
  .hero-text-overlay h1 {
    font-size: 30px;
    line-height: 42px;
  }
  .hero-text-overlay p {
    font-size: 16px;
    line-height: 26px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .impact-stats .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .testimonials-tabs {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .testimonial-tab-content {
    height: 65px !important;
  }
  .technology-content {
    flex-direction: column;
    gap: 24px;
  }
  .technology-section .tabs-section {
    flex-wrap: wrap;
    gap: 12px;
  }
  .technology-section .content-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .technology-section .content-img,
  .avatar-img,
  .team-image,
  .impact-deco-img,
  .white-deco-img {
    max-width: 100%;
    height: auto;
  }
  .future-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .newsletter-input {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .cards-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .impact-stats .stats-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 14px;
  }
  .partners-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  .partners-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .partners-grid .partner-block {
    flex: 0 0 calc(50% - 6px);
    min-width: calc(50% - 6px);
  }
  .partners-grid .partner-block:hover {
    transform: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  }
  .partners-grid .partner-block:hover .partner-logo {
    filter: none;
  }
  .future-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .testimonials-tabs {
    gap: 8px;
  }
  .testimonial-tab-content {
    height: 65px !important;
  }
  .technology-section .tabs-section {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
  }
  .technology-section .content-buttons {
    width: 100%;
  }
}

/* Animation des onglets de technologie */
.tab-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tab-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Animation des blocs de contenu */
.content-block {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-block.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des partenaires */
.partner-block {
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-block.animate-in {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Animation des statistiques */
.stat-card {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animation des cards futures */
.future-card {
  opacity: 0;
  transform: translateY(40px) rotateX(10deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.future-card.animate-in {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

/* Animation des cards hero */
.card {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animation spéciale pour les éléments hero */
.hero-image-container {
  opacity: 0;
  transform: translateY(40px) rotateX(10deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-container.animate-in {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.hero-text-overlay {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-text-overlay.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-info {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-info.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-text {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-text.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.hero-illustration {
  opacity: 0;
  transform: translateX(30px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-illustration.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Animation des onglets de témoignages */
.testimonial-tab {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-tab.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animation de l'avatar */
.avatar-info {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .avatar-info {
  opacity: 1;
  transform: translateX(0);
}

/* Animation de l'image d'équipe */
.avatar-right {
  opacity: 0;
  transform: translateX(30px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .avatar-right {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Animation du bouton contact */
.future-button {
  /* Suppression de l'animation pour que le bouton soit visible */
}

/* Suppression de l'animation pour le titre des témoignages */
.testimonials-title {
  opacity: 1 !important;
  transform: none !important;
}

/* Animation du contenu des témoignages */
.testimonials-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .testimonials-content {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des boutons de contenu */
.content-buttons {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .content-buttons {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des titres de contenu */
.content-title {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .content-title {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des descriptions de contenu */
.content-description {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .content-description {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des titres de cards */
.card-title,
.future-card-title {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .card-title,
.animate-in .future-card-title {
  opacity: 1;
  transform: translateY(0);
}

/* Animation du contenu des cards futures */
.future-card-content {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .future-card-content {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des headers de cards futures */
.future-card-header {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .future-card-header {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des icônes de cards futures */
.future-icon {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .future-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Animation des icônes de cards */
.card-icon {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .card-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Animation des images hero */
.hero-image {
  opacity: 0;
  transform: scale(0.9) rotate(2deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .hero-image {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.white-deco-img {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .white-deco-img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.decoration-img {
  opacity: 0;
  transform: scale(0.8) rotate(10deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .decoration-img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Animation des logos de partenaires */
.partner-logo {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .partner-logo {
  opacity: 1;
  transform: scale(1);
}

/* Animation des logos d'onglets */
.tab-logo {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .tab-logo {
  opacity: 0.5;
  transform: scale(1);
}

/* Animation des logos de témoignages */
.testimonial-tab-logo {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .testimonial-tab-logo {
  opacity: 1;
  transform: scale(1);
}

/* Animation des photos de témoignages */
.partner-photo {
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .partner-photo {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Animation des décorations de témoignages */
.testimonial-decoration {
  opacity: 0;
  transform: scale(0.8) rotate(10deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .testimonial-decoration {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Animation des citations */
.testimonial-quote {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .testimonial-quote {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des auteurs */
.testimonial-author {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .testimonial-author {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des noms d'auteurs */
.author-name {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .author-name {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des positions d'auteurs */
.author-position {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .author-position {
  opacity: 1;
  transform: translateY(0);
}

/* Animation de l'input newsletter */
.newsletter-input {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .newsletter-input {
  opacity: 1;
  transform: translateX(0);
}

/* Animation du bouton newsletter */
.btn-newsletter {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .btn-newsletter {
  opacity: 1;
  transform: translateX(0);
}

/* Animation de l'image d'équipe */
.team-image {
  opacity: 0;
  transform: scale(0.9) rotate(2deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .team-image {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Animation des titres de statistiques */
.stat-title {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .stat-title {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des valeurs de statistiques */
.stat-value {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .stat-value {
  opacity: 1;
  transform: scale(1);
}

/* Animation des headers de technologie */
.technology-header-content {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .technology-header-content {
  opacity: 1;
  transform: translateX(0);
}

/* Suppression de l'animation pour l'illustration du header de technologie */
.technology-header .header-illustration {
  opacity: 1 !important;
  transform: none !important;
}

/* Animation du séparateur de contenu */
.content-divider {
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .content-divider {
  opacity: 1;
  transform: scaleY(1);
}

/* Animation de la section de contenu */
.content-section {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .content-section {
  opacity: 1;
  transform: translateX(0);
}

/* Animation des colonnes de footer */
.footer-column {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-column {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des liens de footer */
.footer-link {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-link {
  opacity: 1;
  transform: translateX(0);
}

/* Animation des blocs de contact */
.contact-block {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .contact-block {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des icônes de contact */
.contact-icon {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .contact-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Animation des icônes sociales */
.social-icon {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .social-icon {
  opacity: 1;
  transform: scale(1);
}

/* Animation du sélecteur de langue */
.language-selector {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .language-selector {
  opacity: 1;
  transform: translateY(0);
}

/* Animation du copyright */
.footer-copyright {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-copyright {
  opacity: 1;
  transform: translateY(0);
}

/* Animation du logo de footer */
.footer-logo {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-logo {
  opacity: 1;
  transform: scale(1);
}

/* Animation de la section sociale */
.social-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .social-section {
  opacity: 1;
  transform: translateY(0);
}

/* Animation du titre social */
.social-title {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .social-title {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des icônes sociales */
.social-icons {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .social-icons {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des liens sociaux */
.social-link {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .social-link {
  opacity: 1;
  transform: scale(1);
}

/* Animation du séparateur de footer */
.footer-divider {
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-divider {
  opacity: 1;
  transform: scaleX(1);
}

/* Animation du bas de footer */
.footer-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-bottom {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des colonnes de footer */
.footer-columns {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-columns {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des titres de colonnes */
.column-title {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .column-title {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des listes de footer */
.footer-links {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-links {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des blocs de contact */
.contact-blocks {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .contact-blocks {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des labels de contact */
.contact-label {
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .contact-label {
  opacity: 1;
  transform: translateX(0);
}

/* Animation de l'icône de langue */
.language-icon {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .language-icon {
  opacity: 1;
  transform: scale(1);
}

/* Animation du sélecteur de langue */
.language-select {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .language-select {
  opacity: 1;
  transform: translateX(0);
}

/* Animation du texte de copyright */
.footer-copyright p {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-copyright p {
  opacity: 1;
  transform: translateY(0);
}

/* Animation du dropdown de footer */
.footer-dropdown {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-dropdown {
  opacity: 1;
  transform: translateY(0);
}

/* Animation de la partie gauche du footer */
.footer-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-left {
  opacity: 1;
  transform: translateX(0);
}

/* Animation de la partie droite du footer */
.footer-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-right {
  opacity: 1;
  transform: translateX(0);
}

/* Animation du contenu du footer */
.footer-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .footer-content {
  opacity: 1;
  transform: translateY(0);
}

/* Animation du footer entier */
.footer {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Image avec texte superposé */
.hero-image-container {
  width: 100%;
  height: 580px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: url(/assets/banner-c08686a11b0154b340248219878e62abb0c17d561362fdc72a286dcb8c5ac4da.svg) center/cover no-repeat;
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 95px;
}

.hero-text-overlay {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
}

.hero-decoration {
  margin-bottom: 123px;
  display: flex;
  justify-content: center;
}

.white-deco-img {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.hero-text-overlay h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 72px;
  margin: 0;
}

/* Section contenu avec titre et illustration */
.hero-content {
  padding: 60px 0;
  margin: 0;
}

.hero-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 654px;
}

.hero-text h2 {
  font-size: 44px;
  font-weight: 700;
  color: #172735;
  margin: 0 0 20px 0;
  line-height: 54px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #223245;
  margin: 0;
}

.hero-illustration {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decoration-img {
  max-width: 300px;
  height: auto;
}

/* Section des cards */
.hero-cards {
  padding: 0;
  margin: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 15px 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #E2E7EA;
}

.card:hover {

}

.card-image {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1D252B;
  margin-bottom: 30px;
  line-height: 24px;
}

/* Section Notre Impact */
.impact-section {
  background: url(/assets/bg-impact-c03ad97a314a4e681d1997c264fe45e6c8770d2958d21322c1f0d7ef39d05acb.svg) center/cover no-repeat;
  padding: 67px 0;
  margin: 0;
}

.impact-header {
  text-align: center;
  margin-bottom: 38px;
}

.impact-decoration {
  margin-bottom: 37px;
  display: flex;
  justify-content: center;
}

.impact-deco-img {
  width: 92px;
  height: auto;
  opacity: 0.9;
}

.impact-title {
  font-size: 44px;
  font-weight: 700;
  color: #172735;
  margin: 0 0 24px 0;
  line-height: 54px;
}

.impact-description {
  font-size: 14px;
  line-height: 27px;
  color: #223245;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.impact-stats {
  margin-top: 60px;
}

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

.stat-card {
  background: white;
  border-radius: 20px;
  padding: 19px 45px 39px 45px;
  transition: all 0.3s ease;
  border: 2px solid #E8F5E1;
  background: #FFF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D252B;
  margin: 0 0 5px 0;
  line-height: 50px;
}

.stat-value {
  font-size: 96px;
  font-weight: 700;
  color: #F90;
  margin: 0;
  line-height: 88px;
}

/* Section Notre Technologie */
.technology-section {
  background: radial-gradient(50% 50% at 50% 50%, #263038 0%, #1D252B 100%);
  padding: 65px 0;
  margin: 0;
  color: white;
}

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

.technology-header-content {
  display: flex;
  align-items: center;
  gap: 33px;
}

.technology-title {
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.30);
  margin: 0;
}

.solutions-title {
  font-size: 48px;
  font-weight: 700;
  color: #F90;
  margin: 0;
}

.header-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.white-deco-tech {
  width: 156px;
  height: auto;
  opacity: 0.9;
}

.technology-description {
  font-size: 16px;
  line-height: 50px;
  color: #A5A8AA;
  margin: 0 0 56px 0;
  max-width: 600px;
}

.technology-content {
  display: flex;
  align-items: stretch;
}

.tabs-section {
  flex: 0 0 426px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tab-item {
  display: flex;
  align-items: center;
  height: 102px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.tab-item.active {
  border: 1px solid #F90;
  background: rgba(0, 0, 0, 0.05);
}

.tab-icon {
  display: flex;
  align-items: center;
}

.tab-logo {
  opacity: 0.5;
}

.tab-item.active .tab-logo {
  opacity: 1;
}

.content-divider {
  width: 2px;
  background: rgba(255, 255, 255, 0.10);
  margin: 0 39px;
  align-self: stretch;
}

.content-section {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  min-height: 500px;
}

.content-block {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 25px;
  padding: 27px 50px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.content-block.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.content-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 0 5px 0;
  line-height: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.1s;
}

.content-block.active .content-title {
  opacity: 1;
  transform: translateY(0);
}

.content-description {
  font-size: 14px;
  line-height: 33px;
  color: #FFF;
  margin: 0 0 58px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}

.content-block.active .content-description {
  opacity: 0.7;
  transform: translateY(0);
}

.content-illustration {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  height: 350px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
  overflow: hidden;
  box-sizing: border-box;
}

.content-block.active .content-illustration {
  opacity: 1;
  transform: scale(1);
}

.content-buttons {
  display: flex;
  flex-direction: row;
  gap: 51px;
  margin-top: auto;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}

.content-block.active .content-buttons {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des images dans les blocs de contenu */
.content-img {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}

.content-block.active .content-img {
  opacity: 1;
  transform: scale(1);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.btn-outline {
  border-radius: 30px;
  border: 1px solid white;
  padding: 11px 22px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: all .25s ease-in;
}

.btn-outline:hover {
  background: white;
  color: #1D252B;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  border-radius: 30px;
  border: 1px solid #F90;
  padding: 11px 22px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  background: #F90;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: all .25s ease-in;
}

.btn-secondary:hover {
  background: #E68500;
  border-color: #E68500;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

/* Section Expertise Reconnue */
.expertise-section {
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  padding: 80px 0;
  margin: 0;
}

.expertise-header {
  text-align: center;
  margin-bottom: 58px;
}

.expertise-decoration {
  margin-bottom: 31px;
  display: flex;
  justify-content: center;
}

.expertise-deco-img {
  width: 123px;
  height: auto;
}

.expertise-title {
  font-size: 36px;
  font-weight: 700;
  color: #1D252B;
  margin: 0 0 20px 0;
  line-height: 56px;
}

.expertise-description {
  font-size: 14px;
  line-height: 20px;
  color: #6E7F93;
  margin: 0 auto;
}

/* Grille des partenaires */
.partners-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 46px;
}

.partner-block {
  background: white;
  border-radius: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 120px;
  height: 81px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.partner-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo {
  transition: filter 0.3s ease;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 8px;
}

.partner-block:hover .partner-logo {
  filter: grayscale(0%);
}

/* Section témoignages */
.testimonials-title {
  font-size: 40px;
  font-weight: 700;
  color: #1D252B;
  line-height: 80px;
  margin: 0 0 28px 0;
  text-align: left;
}

.testimonials-content {
  display: flex;
  align-items: stretch;
}

.testimonials-tabs {
  flex: 0 0 312px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 30px;
}

.testimonial-tab {
  background: white;
  border-radius: 20px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}

.testimonial-tab:hover {
  transform: translateX(5px);
}

.testimonial-tab.active {
  border: 1px solid #172735;
}

.testimonial-tab .testimonial-tab-logo {
  opacity: 0.5;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 8px;
}

.testimonial-tab.active .testimonial-tab-logo {
  opacity: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 8px;
}

.testimonial-tab-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 97px;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 30px;
}

.testimonial-block {
  background: #1D252B;
  border-radius: 30px;
  padding: 35px 50px 35px 35px;
  display: none;
  gap: 50px;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-block.active {
  display: flex;
  opacity: 1;
}

.testimonial-photo {
  flex-shrink: 0;
}

.partner-photo {
  width: 250px;
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
}

.testimonial-quote {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #FFF;
  margin: 0 0 25px 0;
}

.author-name {
  color: #F90;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 5px 0;
}

.author-position {
  font-size: 14px;
  font-weight: 400;
  color: #FFF;
  margin: 0;
}

.testimonial-decoration {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.testimonial-deco {
  width: 130px;
  height: auto;
}

/* Section Ensemble, Construisons l'Avenir */
.future-section {
  padding: 55px 0;
  margin: 0;
}

.future-block {
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  border-radius: 30px;
  padding: 44px 52px;
  text-align: center;
}

.future-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 49px;
  text-align: left;
}

.future-content {
  flex: 1;
  max-width: 750px;
}

.future-title {
  font-size: 40px;
  font-weight: 700;
  color: #172735;
  margin: 0 0 16px 0;
  line-height: 54px;
}

.future-description {
  font-size: 14px;
  line-height: 27px;
  color: #172735;
  margin: 0;
}

.future-illustration {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.future-deco-img {
  width: 150px;
  height: auto;
  opacity: 0.9;
}

.future-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 45px;
}

.future-card {
  background: white;
  border-radius: 20px;
  padding: 30px 27px;
  text-align: left;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.future-card:hover {
  transform: translateY(-5px);
}

.future-card-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.future-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.future-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #172735;
  margin: 0;
  line-height: 54px;
}

.future-card-content {
  font-size: 14px;
  line-height: 28px;
  color: #172735;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

.future-button {
  display: flex;
  justify-content: center;
}

.btn-contact {
  background: #F90;
  border: none;
  border-radius: 30px;
  padding: 11px 40px;
  line-height: 28px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 153, 0, 0.3);
}

.btn-large-contact {
  background: #F90;
  border: none;
  border-radius: 30px;
  padding: 11px 130px;
  line-height: 28px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 153, 0, 0.3);
}

.btn-contact:hover, .btn-large-contact:hover {
  background: #E68500;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 153, 0, 0.4);
}

/* Section Avatar et Newsletter */
.avatar-section {
  padding: 0 0 80px 0;
  margin: 0;
}

.avatar-content {
  display: flex;
  gap: 37px;
  align-items: flex-start;
  margin-bottom: 46px;
}

.avatar-left {
  flex: 1;
  border-radius: 25px;
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  padding: 50px 42px;
}

.avatar-info {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-bottom: 34px;
}

.avatar-photo {
  flex-shrink: 0;
}

.avatar-photo img {
  width: 100px;
  height: 100px;
}

.avatar-details {
  flex: 1;
}

.avatar-name {
  font-size: 28px;
  font-weight: 700;
  color: #F90;
  margin: 0 0 5px 0;
  line-height: 30px;
}

.avatar-position {
  font-size: 16px;
  color: #5B6878;
  margin: 0;
  font-weight: 500;
}

.avatar-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  color: #172735;
  margin: 0;
}

.avatar-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Bloc newsletter */
.newsletter-block {
  background: #F8F8F9;
  border-radius: 25px;
  padding: 38px 49px;
  width: 100%;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text {
  flex: 1;
}

.newsletter-title {
  font-size: 24px;
  font-weight: 700;
  color: #1D252B;
  margin: 0;
  line-height: 42px;
}

.newsletter-form {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
}

.newsletter-input {
  border: 1px solid #E4ECF6;
  border-radius: 30px;
  padding: 15px 38px;
  font-size: 16px;
  color: #445972;
  background: white;
  min-width: 400px;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: #F90;
  outline: none;
}

.newsletter-input::placeholder {
  color: #5B6878;
}

.btn-newsletter {
  background: #F90;
  border: none;
  border-radius: 30px;
  padding: 14px 62px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-newsletter:hover {
  background: #E68500;
  transform: translateY(-2px);
}

/* Scrollbar personnalisée pour les onglets */
.testimonials-tabs {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #172735 transparent; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-tabs::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.testimonials-tabs::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 1px;
}

.testimonials-tabs::-webkit-scrollbar-thumb {
  background: #172735;
  border-radius: 1px;
  opacity: 0.5;
}

.testimonials-tabs::-webkit-scrollbar-thumb:hover {
  background: #172735;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-text-overlay h1 {
    font-size: 40px;
  }
  
  .hero-text h2 {
    font-size: 32px;
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-title {
    font-size: 36px;
  }

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

  .technology-title,
  .solutions-title {
    font-size: 36px;
  }

  .technology-content {
    flex-direction: column;
    gap: 40px;
  }

  .tabs-section {
    flex: none;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .tab-item {
    flex-shrink: 0;
    min-width: 120px;
  }

  .content-divider {
    width: 100%;
    height: 2px;
    margin: 0;
  }

  .expertise-title {
    font-size: 36px;
  }

  .partners-grid {
    gap: 15px;
  }

  .partner-block {
    min-width: 100px;
    padding: 15px;
  }

  .testimonials-content {
    flex-direction: column;
    gap: 40px;
  }

  .testimonials-tabs {
    flex: none;
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    padding-bottom: 10px;
  }

  .testimonial-tab {
    flex-shrink: 0;
    min-width: 120px;
  }

  .testimonial-block {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .future-title {
    font-size: 36px;
  }

  .future-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .future-block {
    padding: 60px 40px;
  }

  .avatar-content {
    flex-direction: column;
    gap: 50px;
  }

  .newsletter-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-input {
    min-width: 325px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Optimisation mobile - meilleure utilisation de l'espace */
  .hero-section {
    min-height: 100vh;
    padding: 20px 0;
  }

  .hero-image-container {
    height: auto;
    min-height: 70vh;
  }

  .hero-image {
    padding: 60px 20px 40px 20px;
    min-height: 100%;
  }

  .impact-decoration {
    margin-bottom: 18px;
  } 
  .hero-text-overlay {
    max-width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow: visible;
  }

  .hero-text-overlay h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-decoration {
    margin-bottom: 30px;
  }
  
  .white-deco-img {
    width: 80px;
  }
  
  .hero-text-overlay h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .hero-content {
    padding: 40px 0 30px;
  }
  
  .hero-info {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .hero-text h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .decoration-img {
    max-width: 200px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    padding: 25px 20px;
  }

  .impact-section {
    padding: 35px 0;
  }

  .impact-deco-img {
    width: 100px;
  }

  .impact-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .impact-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .stat-value {
    font-size: 48px;
    line-height: 1.2;
  }

  .technology-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .technology-header-content {
    flex-direction: column;
    gap: 10px;
  }

  .technology-title,
  .solutions-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .white-deco-tech {
    width: 80px;
  }

  .technology-description {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }


  .content-block {
    padding: 25px 20px;
  }

  .content-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .content-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .content-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .expertise-section {
    padding: 50px 0;
  }

  .expertise-deco-img {
    width: 100px;
  }

  .expertise-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .expertise-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .partners-grid {
    gap: 15px;
  }

  .partner-block {
    min-width: auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
  }

  .testimonials-title {
    font-size: 20px;
    text-align: center;
    line-height: 1.3;
  }

  .testimonial-block {
    padding: 20px 15px;
  }

  .partner-photo {
    width: 120px;
    height: 120px;
  }

  .future-section {
    padding: 50px 0;
  }

  .future-block {
    padding: 30px 25px;
  }

  .future-header {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

  .future-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .future-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .future-deco-img {
    width: 80px;
  }

  .future-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .future-card {
    padding: 25px 20px;
  }

  .future-card-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .future-card-content {
    font-size: 16px;
    line-height: 1.5;
  }

  .btn-large-contact {
    padding: 15px 40px;
    font-size: 16px;
  }

  .avatar-section {
    padding: 50px 0;
  }

  .avatar-content {
    gap: 30px;
  }

  .avatar-info {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .avatar-name {
    font-size: 18px;
    line-height: 1.3;
  }

  .avatar-position {
    font-size: 14px;
  }

  .avatar-description {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }

  .newsletter-block {
    padding: 30px 25px;
  }

  .newsletter-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .newsletter-input {
    padding: 12px 20px;
    font-size: 16px;
  }

  .btn-newsletter {
    padding: 12px 25px;
    font-size: 16px;
  }

  /* Optimisation de l'espacement général */
  .container {
    padding: 0 20px;
  }

  /* Amélioration de la lisibilité */
  .hero-text-overlay,
  .hero-text,
  .impact-header,
  .technology-header,
  .expertise-header,
  .future-header {
    padding: 0 15px;
  }
  .tab-item {
    height: auto;
}
}

@media (max-width: 480px) {
  /* Optimisation pour très petits écrans */
  .hero-section {
    padding: 15px 0;
  }

  .hero-image-container {
    height: auto;
    min-height: auto;
  }

  .hero-image {
    padding: 40px 15px 30px 15px;
    min-height: 100%;
  }

  .hero-text-overlay {
    padding: 0 10px;
    overflow: visible;
  }

  .hero-text-overlay h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-decoration {
    margin-bottom: 20px;
  }
  
  .white-deco-img {
    width: 60px;
  }
  
  .hero-text-overlay h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .hero-text h2 {
    font-size: 20px;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .decoration-img {
    max-width: 150px;
  }
  
  .card {
    padding: 20px 15px;
  }
  
  .card-icon {
    max-width: 100%;
    height: auto;
  }
  
  .card-title {
    font-size: 16px;
    line-height: 1.3;
  }


  .impact-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .impact-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .stat-title {
    font-size: 14px;
    line-height: 1.3;
  }

  .white-deco-tech {
    width: 60px;
  }

  .technology-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .tabs-section {
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .tab-item {
    padding: 12px;
    flex: 0 0 140px;
    justify-content: center;
  }

  .tab-icon {
    width: 100%;
    justify-content: center;
  }

  .tab-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
  }

  .content-block {
    padding: 20px 15px;
  }

  .content-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .content-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .content-img {
    max-width: 120px;
  }

  .expertise-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .expertise-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .partner-block {
    padding: 15px;
  }

  .partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 8px;
  }

  .testimonials-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .testimonial-tab {
    padding: 10px;
    min-width: 100px;
  }

  .testimonial-tab-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 8px;
  }

  .testimonial-content {
    padding-left: 0;
  }

  .testimonial-block {
    padding: 15px 12px;
  }

  .partner-photo {
    width: 120px;
    height: 120px;
  }

  .testimonial-quote {
    font-size: 14px;
    line-height: 1.4;
  }

  .author-name {
    font-size: 14px;
    line-height: 1.3;
  }

  .author-position {
    font-size: 12px;
  }

  .testimonial-deco {
    width: 50px;
  }

  .future-block {
    padding: 25px 20px;
  }

  .future-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .future-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .future-deco-img {
    width: 60px;
  }

  .future-card {
    padding: 20px 15px;
  }

  .future-card-header {
    gap: 10px;
  }

  .future-icon {
    width: 35px;
    height: 35px;
  }

  .future-card-title {
    font-size: 16px;
    line-height: 1.3;
  }

  .future-card-content {
    font-size: 14px;
    line-height: 1.4;
  }

  .btn-large-contact {
    padding: 12px 30px;
    font-size: 14px;
  }

  .avatar-section {
    padding: 40px 0;
  }

  .avatar-content {
    gap: 25px;
  }
  .avatar-name {
    font-size: 16px;
    line-height: 1.3;
  }

  .avatar-position {
    font-size: 12px;
  }

  .avatar-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .newsletter-block {
    padding: 25px 20px;
  }

  .newsletter-input {
    padding: 10px 15px;
    font-size: 14px;
  }

  .btn-newsletter {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Optimisation de l'espacement pour très petits écrans */
  .container {
    padding: 0 15px;
  }

  .hero-text-overlay,
  .hero-text,
  .impact-header,
  .technology-header,
  .expertise-header,
  .future-header {
    padding: 0 10px;
  }
}

/* Popup de confirmation newsletter (toast) */
.newsletter-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  min-width: 320px;
  max-width: 420px;
  animation: slideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 4px solid #10B981;
}

.newsletter-toast-success {
  border-left-color: #10B981;
}

.newsletter-toast-error {
  border-left-color: #EF4444;
}

.newsletter-toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.newsletter-toast-icon {
  width: 24px;
  height: 24px;
  color: #10B981;
  flex-shrink: 0;
}

.newsletter-toast-error .newsletter-toast-icon {
  color: #EF4444;
}

.newsletter-toast-message {
  font-size: 15px;
  font-weight: 600;
  color: #1D252B;
  line-height: 1.5;
}

.newsletter-toast-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: all 0.2s ease;
  border-radius: 6px;
  flex-shrink: 0;
}

.newsletter-toast-close:hover {
  background: #F3F4F6;
  color: #1D252B;
}

.newsletter-toast-close svg {
  width: 18px;
  height: 18px;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%) translateY(0);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 768px) {
  .newsletter-toast {
    bottom: 20px;
    right: 20px;
    left: 20px;
    min-width: auto;
    max-width: none;
  }
}
