/* ============================================
   SECTION WHY US - STYLES ISOLES CORRIGES
============================================= */

/* 1. RESET DE BASE */
.sama-why-us * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sama-why-us {
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.95) 0%,
    rgba(241, 245, 249, 0.9) 50%,
    rgba(226, 232, 240, 0.85) 100%
  );
  position: relative;
  overflow: hidden !important; /* Force hidden */
  width: 100%;
  padding: 60px 0; /* Réduit sur mobile */
}

.sama-why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(109, 40, 217, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(6, 182, 212, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.sama-why-us__container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px; /* Padding réduit sur mobile */
  position: relative;
  z-index: 1;
}

/* Header - corrigé */
.sama-why-us__header {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}

.sama-why-us__title-wrapper {
  margin-bottom: 24px;
  width: 100%;
}

.sama-why-us__title {
  font-size: 2rem; /* Mobile first */
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--heading-color);
  width: 100%;
  flex-wrap: wrap; /* Permet le retour à la ligne */
}

.sama-why-us__title-gradient {
  background: linear-gradient(
    135deg,
    var(--sama-primary) 0%,
    var(--sama-primary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.sama-why-us__title-excl {
  color: var(--sama-accent);
  font-size: 2.5rem;
  animation: sama-pulse 2s ease-in-out infinite;
  display: inline-block;
}

.sama-why-us__underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
}

.sama-why-us__underline-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--sama-primary),
    var(--sama-primary-light)
  );
  border-radius: 2px;
  flex-shrink: 0;
}

.sama-why-us__underline-bar--left {
  animation: sama-slideInLeft 1s ease-out;
}

.sama-why-us__underline-bar--right {
  animation: sama-slideInRight 1s ease-out;
}

.sama-why-us__underline-dot {
  width: 12px;
  height: 12px;
  background: var(--sama-accent);
  border-radius: 50%;
  animation: sama-bounce 2s ease-in-out infinite;
  flex-shrink: 0;
}

.sama-why-us__subtitle {
  font-size: 1.rem; /* Réduit */
  color: var(--sama-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5; /* Réduit */
  width: 100%;
  padding: 0 10px;
}

.sama-why-us__highlight {
  color: var(--sama-primary);
  font-weight: 600;
  position: relative;
  padding: 0 4px;
  display: inline-block;
}

.sama-why-us__highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px; /* Réduit */
  background: rgba(245, 158, 11, 0.2);
  z-index: -1;
}

/* Particules - corrigées */
.sama-why-us__particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sama-why-us__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--sama-primary-light);
  border-radius: 50%;
  opacity: 0.2; /* Réduit */
  animation: sama-floatParticle 8s ease-in-out infinite;
  animation-delay: calc(var(--sama-delay) * 2s);
}

/* Contenu principal - corrigé */
.sama-why-us__content {
  display: block; /* Mobile : une colonne */
  width: 100%;
  margin-bottom: 50px;
}


/* Côté image - corrigé */
.sama-why-us__image-side {
  width: 100%;
  margin-bottom: 30px;
}

.sama-why-us__image-container {
  position: relative;
  height: 100%;
  border-radius: 20px; /* Réduit */
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1),
    /* Réduit */ 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  width: 100%;
}

.sama-why-us__image-wrapper {
  width: 100%;
  height: 300px; /* Hauteur fixe mobile */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sama-why-us__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sama-why-us__image-wrapper:hover .sama-why-us__main-img {
  transform: scale(1.05);
}

.sama-why-us__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.1) 0%,
    rgba(6, 182, 212, 0.1) 100%
  );
  pointer-events: none;
}

/* Formes flottantes - corrigées */
.sama-why-us__floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.sama-why-us__shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--sama-primary),
    var(--sama-primary-light)
  );
  opacity: 0.08; /* Réduit */
  filter: blur(15px); /* Réduit */
  animation: sama-floatShape 6s ease-in-out infinite;
}

.sama-why-us__shape--1 {
  width: 100px; /* Réduit */
  height: 100px;
  top: 10%;
  left: 10%;
}

.sama-why-us__shape--2 {
  width: 60px; /* Réduit */
  height: 60px;
  bottom: 20%;
  right: 15%;
}

.sama-why-us__shape--3 {
  width: 120px; /* Réduit */
  height: 120px;
  top: 50%;
  left: 70%;
}

/* Badge - corrigé */
.sama-why-us__badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  max-width: calc(100% - 30px);
}

.sama-why-us__badge-icon {
  color: var(--sama-accent);
  font-size: 0.85rem;
}

.sama-why-us__badge-text {
  font-weight: 600;
  color: var(--sama-text);
  font-size: 0.9rem; /* Réduit */
}

/* Côté contenu - corrigé */
.sama-why-us__content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.sama-why-us__slider-container {
  position: relative;
  width: 100%;
  overflow: visible;
}

/* Swiper container corrigé */
.sama-why-us .swiper {
  padding: 10px !important; /* Réduit */
  margin: -10px !important; /* Ajusté */
  width: 100% !important;
  overflow: visible !important;
}

.sama-why-us .swiper-wrapper {
  width: 100% !important;
}

.sama-why-us .swiper-slide {
  height: auto !important;
  padding: 10px !important; /* Réduit */
  width: 100% !important;
}

/* Cartes - corrigées */
.sama-why-us__card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px; /* Réduit */
  padding: 30px; /* Réduit */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05),
    /* Réduit */ 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Réduit la durée */
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 400px; /* Hauteur minimale */
}

.sama-why-us__card:hover {
  transform: translateY(-5px); /* Réduit */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
    /* Réduit */ 0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 0 30px rgba(109, 40, 217, 0.1); /* Réduit */
}

.sama-why-us__card-header {
  margin-bottom: 20px; /* Réduit */
}

.sama-why-us__card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px; /* Réduit */
}

.sama-why-us__card-icon {
  position: relative;
  width: 60px; /* Réduit */
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--sama-primary),
    var(--sama-primary-light)
  );
  border-radius: 15px; /* Réduit */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.3); /* Réduit */
}

.sama-why-us__card-icon-i {
  color: white;
  font-size: 1.5rem; /* Réduit */
  z-index: 1;
}

.sama-why-us__card-icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  filter: blur(15px); /* Réduit */
  opacity: 0.4; /* Réduit */
  animation: sama-pulse 2s ease-in-out infinite;
}

.sama-why-us__card-number {
  font-size: 4rem; /* Réduit */
  font-weight: 900;
  color: rgba(109, 40, 217, 0.05);
  line-height: 1;
}

.sama-why-us__card-title {
  font-size: 1.75rem; /* Réduit */
  font-weight: 700;
  color: var(--sama-text);
  margin-bottom: 12px; /* Réduit */
  line-height: 1.3;
}

.sama-why-us__card-content {
  flex: 1;
}

.sama-why-us__card-subtitle {
  font-size: 1.1rem; /* Réduit */
  font-weight: 600;
  color: var(--sama-primary);
  margin-bottom: 15px; /* Réduit */
  line-height: 1.5;
}

.sama-why-us__card-desc {
  color: var(--sama-text-light);
  line-height: 1.6;
  margin-bottom: 20px; /* Réduit */
  font-size: 0.95rem; /* Réduit légèrement */
}

.sama-why-us__card-list {
  list-style: none;
  margin-bottom: 25px; /* Réduit */
  padding: 0;
}

.sama-why-us__card-item {
  display: flex;
  align-items: center;
  gap: 10px; /* Réduit */
  margin-bottom: 10px; /* Réduit */
  color: var(--sama-text-light);
  font-size: 0.9rem; /* Réduit */
}

.sama-why-us__card-check {
  color: #10b981;
  font-size: 1rem; /* Réduit */
  flex-shrink: 0;
}

.sama-why-us__card-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.85rem; /* Réduit */
  padding-top: 15px; /* Réduit */
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  animation: sama-fadeInOut 3s ease-in-out infinite;
  margin-top: auto;
}

.sama-why-us__card-hint-icon {
  font-size: 0.9rem; /* Réduit */
}

/* Navigation Swiper - corrigée */
.sama-why-us__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px; /* Réduit */
  gap: 20px; /* Réduit */
  width: 100%;
}

.sama-why-us__nav-btn {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px; /* Réduit */
  color: var(--sama-text-light);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sama-why-us__nav-btn:hover {
  color: var(--sama-primary);
}

.sama-why-us__nav-btn:hover .sama-why-us__nav-circle {
  background: linear-gradient(
    135deg,
    var(--sama-primary),
    var(--sama-primary-light)
  );
  transform: scale(1.05); /* Réduit */
}

.sama-why-us__nav-btn:hover .sama-why-us__nav-icon {
  color: white;
}

.sama-why-us__nav-circle {
  width: 40px; /* Réduit */
  height: 40px;
  background: rgba(109, 40, 217, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.sama-why-us__nav-icon {
  color: var(--sama-primary);
  font-size: 1rem; /* Réduit */
  transition: color 0.3s ease;
}

.sama-why-us__nav-label {
  font-size: 0.9rem; /* Réduit */
  white-space: nowrap;
}

.sama-why-us__pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* Réduit */
  flex-shrink: 0;
}

.sama-why-us__pagination-dots {
  display: flex;
  gap: 8px; /* Réduit */
}

/* Pagination Swiper personnalisée */
.sama-why-us .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  display: flex !important;
  gap: 8px !important;
}

.sama-why-us .swiper-pagination-bullet {
  width: 10px !important; /* Réduit */
  height: 10px !important;
  background: rgba(109, 40, 217, 0.2) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
}

.sama-why-us .swiper-pagination-bullet-active {
  background: linear-gradient(
    135deg,
    var(--sama-primary),
    var(--sama-primary-light)
  ) !important;
  transform: scale(1.2) !important; /* Réduit */
}

.sama-why-us .swiper-button-prev::after,
.sama-why-us .swiper-button-next::after {
  display: none !important;
}

/* Statistiques - corrigées */
.sama-why-us__stats {
  margin-top: 60px;
  width: 100%;
}

.sama-why-us__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* Réduit */
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.sama-why-us__stat-item {
  text-align: center;
  padding: 25px 15px; /* Réduit */
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px; /* Réduit */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05),
    /* Réduit */ 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.sama-why-us__stat-item:hover {
  transform: translateY(-3px); /* Réduit */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1),
    /* Réduit */ 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.sama-why-us__stat-item:hover .sama-why-us__stat-bar {
  width: 70%; /* Réduit */
}

.sama-why-us__stat-number {
  font-size: 2.5rem; /* Réduit */
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--sama-primary),
    var(--sama-primary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px; /* Réduit */
  line-height: 1;
}

.sama-why-us__stat-label {
  color: var(--sama-text-light);
  font-size: 0.9rem; /* Réduit */
  font-weight: 500;
}

.sama-why-us__stat-bar {
  position: absolute;
  bottom: 0;
  left: 15%; /* Réduit */
  width: 30%; /* Réduit */
  height: 3px; /* Réduit */
  background: linear-gradient(
    90deg,
    var(--sama-primary),
    var(--sama-primary-light)
  );
  border-radius: 1.5px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ANIMATIONS CORRIGÉES */
@keyframes sama-floatParticle {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-15px) translateX(8px); /* Réduit */
  }
  50% {
    transform: translateY(8px) translateX(-8px); /* Réduit */
  }
  75% {
    transform: translateY(-8px) translateX(-15px); /* Réduit */
  }
}

@keyframes sama-floatShape {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(15px); /* Réduit */
  }
}

@keyframes sama-slideInLeft {
  from {
    transform: translateX(-50px); /* Réduit */
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes sama-slideInRight {
  from {
    transform: translateX(50px); /* Réduit */
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes sama-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px); /* Réduit */
  }
}

@keyframes sama-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4; /* Réduit */
  }
  50% {
    transform: scale(1.05); /* Réduit */
    opacity: 0.6; /* Réduit */
  }
}

@keyframes sama-slideUp {
  from {
    transform: translateY(20px); /* Réduit */
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes sama-fadeInOut {
  0%,
  100% {
    opacity: 0.4; /* Réduit */
  }
  50% {
    opacity: 0.8; /* Réduit */
  }
}

/* 9. MEDIA QUERIES - APPROCHE MOBILE FIRST */

/* Tablettes */
@media (min-width: 768px) {
  .sama-why-us {
    padding: 80px 0;
  }
  
  .sama-why-us__container {
    padding: 0 30px;
  }
  
  .sama-why-us__title {
    font-size: 2.5rem;
  }
  
  .sama-why-us__title-excl {
    font-size: 3rem;
  }
  
  .sama-why-us__subtitle {
    font-size: 1.1rem;
  }
  
  .sama-why-us__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .sama-why-us__image-side {
    margin-bottom: 0;
  }
  
  .sama-why-us__image-wrapper {
    height: 400px;
  }
  
  .sama-why-us__card {
    padding: 30px 25px;
    min-height: 350px;
  }
  
  .sama-why-us__card-title {
    font-size: 1.5rem;
  }
  
  .sama-why-us__card-subtitle {
    font-size: 1rem;
  }
  
  .sama-why-us__navigation {
    flex-direction: row; /* Desktop : ligne */
    justify-content: space-between;
  }
  
  .sama-why-us__nav-btn {
    width: auto;
    justify-content: flex-start;
  }
  
  .sama-why-us__card-hint {
    display: flex; /* Affiche sur desktop */
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.85rem;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .sama-why-us__container {
    max-width: 1200px;
    padding: 0 40px;
  }
  
  .sama-why-us__title {
    font-size: 3rem;
  }
  
  .sama-why-us__title-excl {
    font-size: 3.5rem;
  }
  
  .sama-why-us__subtitle {
    font-size: 1.25rem;
  }
  
  .sama-why-us__content {
    gap: 60px;
  }
  
  .sama-why-us__image-wrapper {
    height: 500px;
  }
  
  .sama-why-us__card {
    padding: 35px 30px;
    min-height: 400px;
  }
  
  .sama-why-us__badge {
    padding: 12px 20px;
  }
  
  .sama-why-us__badge-text {
    font-size: 0.9rem;
  }
}

/* Grand écrans */
@media (min-width: 1200px) {
  .sama-why-us__container {
    max-width: 1400px;
  }
}

/* 10. CORRECTIONS SPÉCIFIQUES */

/* Fix pour le débordement Swiper */
.sama-why-us .swiper-container {
  width: 100% !important;
  padding: 0 !important;
}

/* Correction pour les très petits écrans (iPhone 5/SE) */
@media (max-width: 360px) {
  .sama-why-us__title {
    font-size: 1.75rem;
    flex-direction: column;
  }
  
  .sama-why-us__title-excl {
    font-size: 2rem;
  }
  
  .sama-why-us__image-wrapper {
    height: 250px;
  }
  
  .sama-why-us__card {
    padding: 20px 15px;
  }
  
  .sama-why-us__card-icon {
    width: 45px;
    height: 45px;
  }
  
  .sama-why-us__card-number {
    font-size: 2rem;
  }
}

/* Correction pour le mode paysage mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .sama-why-us__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .sama-why-us__image-wrapper {
    height: 250px;
  }
  
  .sama-why-us__card {
    min-height: 300px;
  }
}

/* 11. ANIMATIONS SIMPLIFIÉES */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* 12. CORRECTION DES FORMES FLOTTANTES */
.sama-why-us__floating-shapes {
  display: none; /* Cache sur mobile pour performance */
}

@media (min-width: 768px) {
  .sama-why-us__floating-shapes {
    display: block; /* Affiche sur desktop */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .sama-why-us__shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    opacity: 0.1;
    filter: blur(20px);
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(15px); }
  }
}

/* 13. RESET FORCÉ POUR MOBILE */
@media (max-width: 767px) {
  .sama-why-us * {
    max-width: 100% !important;
  }
  
  .sama-why-us img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  .sama-why-us .swiper-slide {
    width: 100% !important;
    min-width: 0 !important;
  }
}



/* ============================================
   SECTION PARTENAIRES - DESIGN PREMIUM
============================================= */

.sama-partenaires {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 0.9) 50%,
    rgba(241, 245, 249, 0.85) 100%
  );
  position: relative;
  overflow: hidden;
}

.sama-partenaires::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(109, 40, 217, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(14, 165, 233, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.sama-partenaires__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.sama-partenaires__header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.sama-partenaires__title-wrapper {
  margin-bottom: 30px;
}

.sama-partenaires__title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--sama-partner-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sama-partenaires__title-text {
  background: linear-gradient(
    135deg,
    var(--sama-partner-primary),
    var(--sama-partner-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.sama-partenaires__title-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sama-partenaires__dot {
  width: 10px;
  height: 10px;
  background: var(--sama-partner-accent);
  border-radius: 50%;
  animation: sama-partner-bounce 2s ease-in-out infinite;
}

.sama-partenaires__dot:nth-child(1) {
  animation-delay: 0s;
}
.sama-partenaires__dot:nth-child(2) {
  animation-delay: 0.2s;
}
.sama-partenaires__dot:nth-child(3) {
  animation-delay: 0.4s;
}

.sama-partenaires__subtitle {
  font-size: 1.3rem;
  color: var(--sama-partner-gray);
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.sama-partenaires__subtitle-line {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--sama-partner-primary),
    var(--sama-partner-accent)
  );
  border-radius: 2px;
  animation: sama-partner-expand 1.5s ease-out forwards;
}

/* Décorations */
.sama-partenaires__decorations {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sama-partenaires__decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--sama-partner-primary),
    var(--sama-partner-secondary)
  );
  opacity: 0.05;
  filter: blur(40px);
}

.sama-partenaires__decoration--1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation: sama-partner-float 20s ease-in-out infinite;
}

.sama-partenaires__decoration--2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 10%;
  animation: sama-partner-float 25s ease-in-out infinite reverse;
}

.sama-partenaires__decoration--3 {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 20%;
  animation: sama-partner-float 18s ease-in-out infinite;
}

/* Logo Grid */
.sama-partenaires__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 1200px) {
  .sama-partenaires__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sama-partenaires__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .sama-partenaires__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto 60px;
  }
}

/* Logo Item */
.sama-partenaires__logo-item {
  position: relative;
  perspective: 1000px;
}

.sama-partenaires__logo-wrapper {
  position: relative;
  height: 180px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.sama-partenaires__logo-wrapper:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset, 0 0 40px rgba(109, 40, 217, 0.15);
}

.sama-partenaires__logo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
}

.sama-partenaires__logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.8;
}

.sama-partenaires__logo-wrapper:hover .sama-partenaires__logo-img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

.sama-partenaires__logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0) 0%,
    rgba(14, 165, 233, 0) 100%
  );
  transition: all 0.4s ease;
  pointer-events: none;
}

.sama-partenaires__logo-wrapper:hover .sama-partenaires__logo-overlay {
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.05) 0%,
    rgba(14, 165, 233, 0.05) 100%
  );
}

.sama-partenaires__logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.9) 0%,
    rgba(14, 165, 233, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  text-align: center;
}

.sama-partenaires__logo-wrapper:hover .sama-partenaires__logo-hover {
  opacity: 1;
  transform: translateY(0);
}

.sama-partenaires__logo-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.sama-partenaires__logo-info p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.sama-partenaires__logo-sparkles {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 5px;
}

.sama-partenaires__sparkle {
  width: 6px;
  height: 6px;
  background: var(--sama-partner-accent);
  border-radius: 50%;
  opacity: 0;
  animation: sama-partner-sparkle 1.5s ease-in-out infinite;
}

.sama-partenaires__logo-wrapper:hover .sama-partenaires__sparkle:nth-child(1) {
  animation-delay: 0s;
  opacity: 1;
}

.sama-partenaires__logo-wrapper:hover .sama-partenaires__sparkle:nth-child(2) {
  animation-delay: 0.2s;
  opacity: 1;
}

.sama-partenaires__logo-wrapper:hover .sama-partenaires__sparkle:nth-child(3) {
  animation-delay: 0.4s;
  opacity: 1;
}

.sama-partenaires__logo-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(109, 40, 217, 0.1) 50%,
    transparent 60%
  );
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.sama-partenaires__logo-wrapper:hover .sama-partenaires__logo-border {
  opacity: 1;
  animation: sama-partner-rotate 3s linear infinite;
}

/* Stats */
.sama-partenaires__stats {
  margin-bottom: 80px;
}

.sama-partenaires__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sama-partenaires__stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
  }
}

.sama-partenaires__stat-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.sama-partenaires__stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.sama-partenaires__stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--sama-partner-primary),
    var(--sama-partner-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

.sama-partenaires__stat-label {
  color: var(--sama-partner-gray);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.sama-partenaires__stat-icon {
  color: var(--sama-partner-accent);
  font-size: 1.5rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.sama-partenaires__stat-item:hover .sama-partenaires__stat-icon {
  transform: scale(1.2);
  opacity: 1;
}

/* CTA */
.sama-partenaires__cta {
  background: linear-gradient(
    135deg,
    var(--sama-partner-primary),
    var(--sama-partner-secondary)
  );
  border-radius: 30px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(109, 40, 217, 0.2);
}

.sama-partenaires__cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.sama-partenaires__cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.sama-partenaires__cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.sama-partenaires__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--sama-partner-primary);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sama-partenaires__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: var(--sama-partner-primary);
  gap: 15px;
}

.sama-partenaires__cta-btn i {
  transition: transform 0.3s ease;
}

.sama-partenaires__cta-btn:hover i {
  transform: translateX(5px);
}

.sama-partenaires__cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sama-partenaires__cta-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  animation: sama-partner-pulse 4s ease-in-out infinite;
}

.sama-partenaires__cta-orb:nth-child(1) {
  top: -100px;
  right: -100px;
}

/* Animations */
@keyframes sama-partner-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes sama-partner-expand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

@keyframes sama-partner-float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(10px) translateX(-10px);
  }
  75% {
    transform: translateY(-10px) translateX(-20px);
  }
}

@keyframes sama-partner-sparkle {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes sama-partner-rotate {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 300% 300%;
  }
}

@keyframes sama-partner-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .sama-partenaires__title {
    font-size: 3rem;
  }

  .sama-partenaires {
    padding: 100px 0;
  }
}

@media (max-width: 992px) {
  .sama-partenaires__title {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 10px;
  }

  .sama-partenaires__logo-wrapper {
    height: 150px;
  }

  .sama-partenaires__stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .sama-partenaires {
    padding: 80px 0;
  }

  .sama-partenaires__header {
    margin-bottom: 60px;
  }

  .sama-partenaires__title {
    font-size: 2.2rem;
  }

  .sama-partenaires__subtitle {
    font-size: 1.1rem;
  }

  .sama-partenaires__logo-wrapper {
    height: 130px;
  }

  .sama-partenaires__cta {
    padding: 40px 30px;
  }

  .sama-partenaires__cta h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .sama-partenaires__title {
    font-size: 2rem;
  }

  .sama-partenaires__subtitle {
    font-size: 1rem;
  }

  .sama-partenaires__logo-wrapper {
    height: 120px;
  }

  .sama-partenaires__cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
