/* ========================================
   EXPERTISE COLLABORATION - STYLES GÉNÉRAUX
   ======================================== */

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

.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: 0 0 30px 30px;
  background: url(/assets/bg-hero-2.svg) center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

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

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

.hero-badge {
  margin-bottom: 28px;
}

.hero-badge span {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.20);
  padding: 7px 28px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 20px;
}

.hero-text-overlay h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 70px;
  margin: 0 0 32px 0;
  color: white;
}

.hero-text-overlay p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #FFF;
  margin: 0 0 65px 0;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-button {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #F90;
  border: none;
  border-radius: 30px;
  padding: 13px 58px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-outline {
  background: transparent;
  border: 1px solid #F90;
  border-radius: 30px;
  padding: 13px 58px;
  color: #F90;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #F90;
  color: white;
  transform: translateY(-2px);
}

/* --------------------
   Responsive (mobile)
   -------------------- */
@media (max-width: 768px) {
  .hero-image-container {
    height: auto;
    padding: 32px 0 24px 0;
  }
  .hero-text-overlay h1 {
    font-size: 28px;
    line-height: 40px;
  }
  .hero-text-overlay p {
    font-size: 16px;
    line-height: 26px;
  }
  .vision-title {
    font-size: 28px;
    line-height: 36px;
  }
  .schema-container {
    width: 320px;
    height: 320px;
  }
  .outer-circle {
    width: 260px;
    height: 260px;
  }
  .inner-circle {
    width: 150px;
    height: 150px;
  }
  .partnership-blocks {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
  }
  .pipeline-cards,
  .collaborative-blocks,
  .impact-blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-button {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* Bloc Vision Systémique */
.vision-block {
  text-align: center;
  max-width: 1000px;
  margin: 68px auto 0 auto;
  padding: 0 20px;
}

.vision-title {
  font-size: 40px;
  font-weight: 700;
  color: #223245;
  margin: 0 0 35px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.vision-description {
  font-size: 16px;
  line-height: 32px;
  color: #223245;
  margin: 0;
  font-weight: 500;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Schéma Écosystème */
.ecosystem-schema {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.schema-container {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cercle extérieur */
.outer-circle {
  position: absolute;
  width: 429px;
  height: 429px;
  border: 1px solid #CBD4DF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cercle intérieur */
.inner-circle {
  position: absolute;
  width: 252px;
  height: 252px;
  border-radius: 50%;
  border: 1px solid #CBD4DF;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse-glow 3s ease-in-out infinite;
  background: linear-gradient(145deg, rgba(232, 245, 225, 0.1), rgba(239, 227, 210, 0.1), rgba(221, 233, 245, 0.1));
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.05);
    border-color: #CBD4DF;
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.15);
    border-color: rgba(255, 153, 0, 0.3);
  }
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.center-favicon {
  transition: all 0.3s ease;
  animation: float-bounce 2s ease-in-out infinite;
}

@keyframes float-bounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(2deg);
  }
  50% {
    transform: translateY(-12px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

.center-label {
  font-size: 16px;
  font-weight: 700;
  color: #223245;
  text-align: center;
}

/* Cards écosystème */
.ecosystem-card {
  position: absolute;
  width: 147px;
  height: 147px;
  padding: 22px 38px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}



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

.card-label {
  font-size: 12px;
  font-weight: 600;
  color: #223245;
  text-align: center;
  line-height: 20px;
}

/* Positionnement des cards */
.card-1 {
  top: -22%;
  left: 23%;
  transform: translateX(-50%);
}

.card-1:hover {
  transform: translateX(-50%) translateY(-8px);
}

.card-2 {
  top: -22%;
  right: 18%;
  transform: translateX(50%);
}

.card-2:hover {
  transform: translateX(50%) translateY(-8px);
}

.card-3 {
  top: 30%;
  right: -8%;
  transform: translateX(50%);
}

.card-3:hover {
  transform: translateX(50%) translateY(-8px);
}

.card-4 {
  bottom: -15%;
  right: -22%;
  transform: translateX(-50%);
}

.card-4:hover {
  transform: translateX(-50%) translateY(-8px);
}

.card-5 {
  bottom: -15%;
  left: 16%;
  transform: translateX(-50%);
}

.card-5:hover {
  transform: translateX(-50%) translateY(-8px);
}

.card-6 {
  top: 30%;
  left: -8%;
  transform: translateX(-50%);
}

.card-6:hover {
  transform: translateX(-50%) translateY(-8px);
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Animation simple pour le titre principal */
.hero-text-overlay h1 {
  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 */
.hero-image-container,
.hero-text-overlay,
.hero-decoration,
.hero-badge,
.hero-button,
.vision-block,
.ecosystem-schema,
.partnership-section,
.pipeline-section,
.collaborative-section,
.impact-section,
.contact-final-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-container.animate-in,
.hero-text-overlay.animate-in,
.hero-decoration.animate-in,
.hero-badge.animate-in,
.hero-button.animate-in,
.vision-block.animate-in,
.ecosystem-schema.animate-in,
.partnership-section.animate-in,
.pipeline-section.animate-in,
.collaborative-section.animate-in,
.impact-section.animate-in,
.contact-final-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.animate-in .hero-image,
.animate-in .white-deco-img {
  opacity: 1;
  transform: scale(1);
}

/* Animation des textes */
.hero-text-overlay h1,
.hero-text-overlay p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Animation des décorations */
.hero-decoration {
  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 {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Animation du badge */
.hero-badge {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* ========================================
   TABLET - 1024px
   ======================================== */
@media (max-width: 1024px) {
  .hero-text-overlay h1 {
    font-size: 40px;
    line-height: 1.3;
  }
  
  .hero-text-overlay p {
    font-size: 16px;
  }
  
  .vision-block {
    margin-top: 60px;
  }
  
  .vision-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  
  .vision-description {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .ecosystem-schema {
    margin-top: 60px;
  }
  
  .partnership-section {
    padding: 60px 0;
  }
  
  .partnership-title {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .partnership-description {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .partnership-blocks {
    gap: 30px;
  }
  
  .partnership-block {
    padding: 30px 25px;
  }
  
  .block-title {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .block-description {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .pipeline-section {
    padding: 60px 0;
  }
  
  .pipeline-title {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .pipeline-description {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .pipeline-cards {
    gap: 25px;
  }
  
  .pipeline-card {
    padding: 30px 20px;
  }
  
  .pipeline-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .pipeline-icon-img {
    width: 35px;
    height: 35px;
  }
  
  .pipeline-card-title {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .pipeline-card-description {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .collaborative-section {
    padding: 60px 0;
  }
  
  .collaborative-header {
    margin-bottom: 50px;
  }
  
  .collaborative-title {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .collaborative-description {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .collaborative-blocks {
    gap: 30px;
  }
  
  .collaborative-block {
    padding: 30px 25px;
  }
  
  .collaborative-block-header {
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .collaborative-icon {
    width: 55px;
    height: 55px;
  }
  
  .collaborative-icon-img {
    width: 28px;
    height: 28px;
  }
  
  .collaborative-block-title {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .collaborative-block-description {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .impact-section {
    padding: 60px 0;
  }
  
  .impact-title {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .impact-description {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .impact-blocks {
    gap: 30px;
  }
  
  .impact-block {
    padding: 30px 15px;
  }
  
  .impact-stat {
    font-size: 36px;
    line-height: 1;
  }
  
  .impact-label {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .contact-final-section {
    padding: 60px 0;
  }
  
  .contact-final-block {
    flex-direction: column;
  }
  
  .contact-final-left {
    padding: 40px 30px;
  }
  
  .contact-final-right {
    padding: 40px 30px;
    text-align: center;
  }
  
  .contact-final-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .contact-final-description {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .contact-final-action {
    justify-content: center;
  }
  
  .btn-contact-final {
    padding: 12px 40px;
    font-size: 15px;
  }
  
  .schema-container {
    width: 500px;
    height: 500px;
  }
  
  .inner-circle {
    width: 160px;
    height: 160px;
  }
  
  .center-favicon {
    width: 50px;
    height: 50px;
  }
  
  .center-label {
    font-size: 12px;
  }
  
  .ecosystem-card {
    width: 100px;
    height: 100px;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
  }
  
  .card-icon-img {
    width: 25px;
    height: 25px;
  }
  
  .card-label {
    font-size: 11px;
  }
}

/* ========================================
   TABLET - 768px
   ======================================== */
@media (max-width: 768px) {
  /* Hero Section */
  .hero-section {
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .hero-image-container {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image {
    padding: 20px;
    min-height: 100%;
    transform: none !important;
    border-radius: 0;
  }

  .hero-text-overlay {
    max-width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 20px;
  }

  .hero-text-overlay h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: center;
    word-wrap: break-word;
  }
  
  .hero-decoration {
    margin-bottom: 0;
  }
  
  .white-deco-img {
    width: 60px;
  }
  
  .hero-badge {
    margin-bottom: 0;
  }
  
  .hero-badge span {
    font-size: 12px;
    padding: 8px 20px;
  }
  
  .hero-text-overlay p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
  }
  
  .hero-button {
    gap: 15px;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 15px 40px;
    font-size: 16px;
    width: auto;
    min-width: 200px;
  }
  
  .vision-block {
    margin-top: 50px;
    padding: 0 15px;
  }
  
  .vision-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  .vision-description {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .ecosystem-schema {
    margin-top: 50px;
  }
  
  .partnership-section {
    padding: 50px 0;
  }
  
  .partnership-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .partnership-description {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .partnership-blocks {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .partnership-block {
    padding: 25px 20px;
  }
  
  .block-header {
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .block-icon {
    width: 50px;
    height: 50px;
  }
  
  .block-icon-img {
    width: 30px;
    height: 30px;
  }
  
  .block-title {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .block-profile {
    font-size: 12px;
  }
  
  .block-description {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 25px;
  }
  
  .block-features {
    gap: 12px;
  }
  
  .feature-item {
    gap: 10px;
  }
  
  .feature-icon {
    width: 14px;
    height: 14px;
  }
  
  .feature-label {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .pipeline-section {
    padding: 50px 0;
  }
  
  .pipeline-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .pipeline-description {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .pipeline-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .pipeline-card {
    padding: 25px 15px;
  }
  
  .pipeline-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .pipeline-icon-img {
    width: 30px;
    height: 30px;
  }
  
  .pipeline-card-title {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .pipeline-card-description {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .collaborative-section {
    padding: 50px 0;
  }
  
  .collaborative-header {
    margin-bottom: 40px;
  }
  
  .collaborative-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .collaborative-description {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .collaborative-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .collaborative-block {
    padding: 25px 20px;
  }
  
  .collaborative-block-header {
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .collaborative-icon {
    width: 50px;
    height: 50px;
  }
  
  .collaborative-icon-img {
    width: 25px;
    height: 25px;
  }
  
  .collaborative-block-title {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .collaborative-block-description {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .impact-section {
    padding: 50px 0;
  }
  
  .impact-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .impact-description {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .impact-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .impact-block {
    padding: 25px 15px;
  }
  
  .impact-stat {
    font-size: 32px;
    line-height: 1;
  }
  
  .impact-label {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .contact-final-section {
    padding: 50px 0;
  }
  
  .contact-final-left {
    padding: 30px 20px;
  }
  
  .contact-final-right {
    padding: 30px 20px;
  }
  
  .contact-final-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .contact-final-description {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .btn-contact-final {
    padding: 10px 35px;
    font-size: 14px;
  }
  
  .schema-container {
    width: 400px;
    height: 400px;
  }
  
  .inner-circle {
    width: 140px;
    height: 140px;
  }
  
  .center-favicon {
    width: 45px;
    height: 45px;
  }
  
  .center-label {
    font-size: 11px;
  }
  
  .ecosystem-card {
    width: 90px;
    height: 90px;
  }
  
  .card-icon {
    width: 35px;
    height: 35px;
  }
  
  .card-icon-img {
    width: 22px;
    height: 22px;
  }
  
  .card-label {
    font-size: 10px;
  }
}

/* ========================================
   MOBILE - 480px
   ======================================== */
@media (max-width: 480px) {
  /* Hero Section */
  .hero-section {
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
  }

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

  .hero-image {
    padding: 15px;
    min-height: 100%;
    transform: none !important;
    border-radius: 0;
  }

  .hero-text-overlay {
    padding: 0 15px;
    gap: 15px;
  }

  .hero-text-overlay h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 0;
    word-wrap: break-word;
  }
  
  .hero-decoration {
    margin-bottom: 0;
  }
  
  .white-deco-img {
    width: 50px;
  }
  
  .hero-badge {
    margin-bottom: 0;
  }
  
  .hero-badge span {
    font-size: 11px;
    padding: 6px 16px;
  }
  
  .hero-text-overlay p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
  }
  
  .hero-button {
    gap: 12px;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 12px 30px;
    font-size: 14px;
    min-width: 180px;
  }
  
  .vision-block {
    margin-top: 40px;
    padding: 0 10px;
  }
  
  .vision-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .vision-description {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .ecosystem-schema {
    margin-top: 40px;
  }
  
  .partnership-section {
    padding: 40px 0;
  }
  
  .partnership-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .partnership-description {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .partnership-blocks {
    gap: 20px;
  }
  
  .partnership-block {
    padding: 20px 15px;
  }
  
  .block-header {
    gap: 12px;
    margin-bottom: 15px;
  }
  
  .block-icon {
    width: 45px;
    height: 45px;
  }
  
  .block-icon-img {
    width: 25px;
    height: 25px;
  }
  
  .block-title {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .block-profile {
    font-size: 11px;
  }
  
  .block-description {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  .block-features {
    gap: 10px;
  }
  
  .feature-item {
    gap: 8px;
  }
  
  .feature-icon {
    width: 12px;
    height: 12px;
  }
  
  .feature-label {
    font-size: 10px;
    line-height: 1.2;
  }
  
  .pipeline-section {
    padding: 40px 0;
  }
  
  .pipeline-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .pipeline-description {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .pipeline-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .pipeline-card {
    padding: 20px 15px;
  }
  
  .pipeline-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 12px;
  }
  
  .pipeline-icon-img {
    width: 28px;
    height: 28px;
  }
  
  .pipeline-card-title {
    font-size: 15px;
    line-height: 1.3;
  }
  
  .pipeline-card-description {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .collaborative-section {
    padding: 40px 0;
  }
  
  .collaborative-header {
    margin-bottom: 30px;
  }
  
  .collaborative-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .collaborative-description {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .collaborative-blocks {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .collaborative-block {
    padding: 20px 15px;
  }
  
  .collaborative-block-header {
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .collaborative-icon {
    width: 45px;
    height: 45px;
  }
  
  .collaborative-icon-img {
    width: 22px;
    height: 22px;
  }
  
  .collaborative-block-title {
    font-size: 15px;
    line-height: 1.3;
  }
  
  .collaborative-block-description {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .impact-section {
    padding: 40px 0;
  }
  
  .impact-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .impact-description {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .impact-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .impact-block {
    padding: 20px 12px;
  }
  
  .impact-stat {
    font-size: 28px;
    line-height: 1;
  }
  
  .impact-label {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .contact-final-section {
    padding: 40px 0;
  }
  
  .contact-final-left {
    padding: 25px 15px;
  }
  
  .contact-final-right {
    padding: 25px 15px;
  }
  
  .contact-final-title {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .contact-final-description {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .btn-contact-final {
    padding: 8px 30px;
    font-size: 13px;
  }
  
  .schema-container {
    width: 350px;
    height: 350px;
  }
  
  .inner-circle {
    width: 120px;
    height: 120px;
  }
  
  .center-favicon {
    width: 40px;
    height: 40px;
  }
  
  .center-label {
    font-size: 10px;
  }
  
  .ecosystem-card {
    width: 80px;
    height: 80px;
  }
  
  .card-icon {
    width: 30px;
    height: 30px;
  }
  
  .card-icon-img {
    width: 20px;
    height: 20px;
  }
  
  .card-label {
    font-size: 9px;
  }
}

/* ========================================
   TRÈS PETITS ÉCRANS - 320px
   ======================================== */
@media (max-width: 320px) {
  .hero-text-overlay h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .hero-text-overlay p {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .hero-badge span {
    font-size: 10px;
    padding: 5px 12px;
  }
  
  .hero-button {
    gap: 10px;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 10px 25px;
    font-size: 13px;
    min-width: 160px;
  }
  
  .vision-block {
    margin-top: 30px;
    padding: 0 10px;
  }
  
  .vision-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .vision-description {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .ecosystem-schema {
    margin-top: 30px;
  }
  
  .partnership-section {
    padding: 30px 0;
  }
  
  .partnership-title {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .partnership-description {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .partnership-blocks {
    gap: 15px;
  }
  
  .partnership-block {
    padding: 15px 12px;
  }
  
  .block-header {
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .block-icon {
    width: 40px;
    height: 40px;
  }
  
  .block-icon-img {
    width: 22px;
    height: 22px;
  }
  
  .block-title {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .block-profile {
    font-size: 10px;
  }
  
  .block-description {
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .block-features {
    gap: 8px;
  }
  
  .feature-item {
    gap: 6px;
  }
  
  .feature-icon {
    width: 10px;
    height: 10px;
  }
  
  .feature-label {
    font-size: 9px;
    line-height: 1.1;
  }
  
  .pipeline-section {
    padding: 30px 0;
  }
  
  .pipeline-title {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .pipeline-description {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .pipeline-cards {
    gap: 12px;
  }
  
  .pipeline-card {
    padding: 15px 12px;
  }
  
  .pipeline-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .pipeline-icon-img {
    width: 25px;
    height: 25px;
  }
  
  .pipeline-card-title {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .pipeline-card-description {
    font-size: 10px;
    line-height: 1.2;
  }
  
  .collaborative-section {
    padding: 30px 0;
  }
  
  .collaborative-header {
    margin-bottom: 25px;
  }
  
  .collaborative-title {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .collaborative-description {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .collaborative-blocks {
    gap: 15px;
  }
  
  .collaborative-block {
    padding: 15px 12px;
  }
  
  .collaborative-block-header {
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .collaborative-icon {
    width: 40px;
    height: 40px;
  }
  
  .collaborative-icon-img {
    width: 20px;
    height: 20px;
  }
  
  .collaborative-block-title {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .collaborative-block-description {
    font-size: 10px;
    line-height: 1.2;
  }
  
  .impact-section {
    padding: 30px 0;
  }
  
  .impact-title {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .impact-description {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .impact-blocks {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .impact-block {
    padding: 15px 10px;
  }
  
  .impact-stat {
    font-size: 24px;
    line-height: 1;
  }
  
  .impact-label {
    font-size: 11px;
    line-height: 1.2;
  }
  
  .contact-final-section {
    padding: 30px 0;
  }
  
  .contact-final-left {
    padding: 20px 12px;
  }
  
  .contact-final-right {
    padding: 20px 12px;
  }
  
  .contact-final-title {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .contact-final-description {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .btn-contact-final {
    padding: 6px 25px;
    font-size: 12px;
  }
  
  .schema-container {
    width: 300px;
    height: 300px;
  }
  
  .inner-circle {
    width: 100px;
    height: 100px;
  }
  
  .center-favicon {
    width: 35px;
    height: 35px;
  }
  
  .center-label {
    font-size: 9px;
  }
  
  .ecosystem-card {
    width: 70px;
    height: 70px;
  }
  
  .card-icon {
    width: 25px;
    height: 25px;
  }
  
  .card-icon-img {
    width: 18px;
    height: 18px;
  }
  
  .card-label {
    font-size: 8px;
  }
}

/* ========================================
   SECTION PARTENARIAT STRATÉGIQUE
   ======================================== */

.partnership-section {
  background: #FFF;
  padding: 67px 0;
  margin: 0;
  position: relative;
}

.partnership-header {
  text-align: center;
  margin-bottom: 65px;
}

.partnership-title {
  font-size: 40px;
  font-weight: 700;
  color: #223245;
  margin: 0 0 40px 0;
}

.partnership-description {
  font-size: 16px;
  line-height: 28px;
  color: #445972;
  margin: 0;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.partnership-block {
  border: 2px solid #E8F5E1;
  border-radius: 25px;
  padding: 27px 23px;
  background: transparent;
  transition: all 0.3s ease;
}

.partnership-block:hover {
  transform: translateY(-5px);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 28px;
}

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

.block-title-section {
  display: flex;
  flex-direction: column;
}

.block-title {
  font-size: 16px;
  font-weight: 700;
  color: #223245;
  margin: 0;
  line-height: 32px;
}

.block-profile {
  font-size: 12px;
  font-weight: 400;
  color: #223245;
  line-height: 22px;
  margin: 0;
}

.block-description {
  font-size: 14px;
  line-height: 26px;
  color: #445972;
  margin: 0 0 41px 0;
  font-weight: 400;
}

.block-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

  .feature-label {
    font-size: 11px;
    font-weight: 600;
    color: #223245;
    line-height: 24px;
  }

/* ========================================
   SECTION PIPELINE DE PRÉPARATION FINANCIÈRE
   ======================================== */

.pipeline-section {
  background: url(/assets/bg-pipeline.svg) center/cover no-repeat;
  padding: 63px 0;
  margin: 0;
  position: relative;
}

.pipeline-header {
  text-align: center;
  margin-bottom: 66px;
}

.pipeline-title {
  font-size: 40px;
  font-weight: 700;
  color: #223245;
  margin: 0 0 30px 0;
}

.pipeline-description {
  font-size: 14px;
  line-height: 26px;
  color: #223245;
  margin: 0;
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.pipeline-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.pipeline-card {
  background: white;
  border-radius: 25px;
  padding: 33px 22px;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pipeline-card:hover {
  transform: translateY(-8px);
}

.pipeline-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 13px;
  transition: all 0.3s ease;
}

.pipeline-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #223245;
  margin: 0 0 10px 0;
  line-height: 24px;
}

.pipeline-card-description {
  font-size: 12px;
  line-height: 20px;
  color: #445972;
  margin: 0;
  font-weight: 500;
}

/* ========================================
   SECTION FORCE DE L'APPROCHE COLLABORATIVE
   ======================================== */

.collaborative-section {
  background: #FFF;
  padding: 76px 0;
  margin: 0;
  position: relative;
}

.collaborative-header {
  text-align: center;
  margin-bottom: 49px;
}

.collaborative-block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.collaborative-title {
  font-size: 36px;
  font-weight: 700;
  color: #223245;
  margin: 0 0 27px 0;
  line-height: 50px;
}

.collaborative-description {
  font-size: 14px;
  line-height: 24px;
  color: #445972;
  margin: 0;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.collaborative-block {
  border: 2px solid #E8F5E1;
  border-radius: 25px;
  padding: 29px 28px 43px 28px;
  background: transparent;
  transition: all 0.3s ease;
}

.collaborative-block:hover {
  transform: translateY(-5px);
}

.collaborative-block-header {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-bottom: 22px;
}

.collaborative-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.collaborative-block-title {
  font-size: 14px;
  font-weight: 700;
  color: #223245;
  margin: 0;
  line-height: 24px;
}

.collaborative-block-description {
  font-size: 14px;
  line-height: 26px;
  color: #445972;
  margin: 0;
  font-weight: 400;
}

/* ========================================
   SECTION IMPACT COLLECTIF
   ======================================== */

.impact-section {
  background: url(/assets/bg-impact-2.svg) center/cover no-repeat;
  padding: 66px 0;
  margin: 0;
  position: relative;
}

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

.impact-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFF;
  margin: 0 0 40px 0;
}

.impact-description {
  font-size: 14px;
  line-height: 26px;
  color: #FFF;
  margin: 0;
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.impact-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-block {
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.20);
  text-align: center;
  padding: 35px 33px;
  transition: all 0.3s ease;
}

.impact-block:hover {
  transform: translateY(-5px);
}

  .impact-stat {
    font-size: 40px;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 25px 0;
    line-height: 1;
    color: #FFF;
    transition: all 0.3s ease;
  }

  /* Animation pour les stats en cours de comptage */
  .impact-stat.counting {
    transform: scale(1.05);
  }

.impact-label {
  font-size: 12px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
  line-height: 26px;
}

/* ========================================
   SECTION CONTACT FINAL
   ======================================== */

.contact-final-section {
  background: #FFF;
  padding: 53px 0;
  margin: 0;
  position: relative;
}

.contact-final-block {
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 68px;
  overflow: hidden;
  padding: 44px 40px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}

.contact-final-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-final-image {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.contact-final-right {
  flex: 1.8;
}

.contact-final-title {
  font-size: 32px;
  font-weight: 700;
  color: #172735;
  margin: 0 0 15px 0;
  line-height: 50px;
}

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

.contact-final-action {
  display: flex;
  justify-content: flex-start;
}

.btn-contact-final {
  background: #F90;
  border: none;
  border-radius: 30px;
  padding: 11px 61px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact-final:hover {
  background: #E68500;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}
