/* CSS spécifique à la page À propos */

/* Header */
.header {
  background-color: white;
  border-bottom: 1px solid #ECECEC;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
}

.header-nav-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  text-decoration: none;
}

.nav-tabs {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-tabs li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-tabs li a:hover {
  color: #6E08A7;
}

.nav-tabs li a.active {
    color: #6E08A7;
    border-bottom: 2px solid #6E08A7;
    padding-bottom: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language dropdown sections */
.desktop-language-dropdown {
  display: block;
}

.mobile-language-item {
  display: none;
}

.mobile-menu-language {
  margin-top: 20px;
}

/* Styles pour les boutons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 6px 6px 16px 0px rgba(0, 0, 0, 0.10);
}

.btn-primary {
  background-color: #6E08A7;
  color: white;
}

.btn-primary:hover {
  background-color: #5a077a;
}

.btn-outline {
  background-color: white;
  color: #6E08A7;
  border: 1px solid #6E08A7;
}

.btn-outline:hover {
  background-color: #6E08A7;
  color: white;
}

/* Styles pour les titres */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
  line-height: 1.6;
}

/* Styles pour le menu mobile */
.hamburger-menu {
  display: none;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #201E21;
  transition: all 0.3s ease;
}

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

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

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

/* Menu mobile overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transition: left 0.3s ease;
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECECEC;
}

.mobile-logo img {
  height: 32px;
  width: auto;
}

.close-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 32px;
  height: 32px;
}

.close-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #201E21;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  flex: 1;
}

.mobile-nav-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-tabs li {
  margin-bottom: 0;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  color: #201E21;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #F5F5F5;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #6E08A7;
}

.mobile-nav-link.active {
    color: #6E08A7;
    border-bottom: 2px solid #6E08A7;
}

.mobile-menu-actions {
  padding-top: 20px;
  border-top: 1px solid #ECECEC;
}

.mobile-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* Footer */
.footer {
  background-image: url(/assets/bg-footer-82be0078712301466f7222e5db49ebc0e53943876848e23d5ea097a821b1e111.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 52px 0;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.footer-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.footer-blocks {
  display: flex;
  gap: 60px;
}

.footer-block {
  flex: 1;
}

.footer-block-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  color: #F1E6F6;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: white;
}

.footer-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-contacts li span {
  color: #F1E6F6;
  font-size: 16px;
  font-weight: 500;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 0 10px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 0;
}

/* Responsive pour le Header et Footer */
@media (max-width: 768px) {
  /* Header mobile */
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  
  .header-nav-section {
    display: none;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  .nav-tabs {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-tabs li {
    margin-bottom: 10px;
  }
  
  .mobile-language-item {
    margin-top: 10px;
    width: 100%;
    text-align: left;
  }
  
  /* Language dropdown mobile visibility */
  .desktop-language-dropdown {
    display: none;
  }
  
  .mobile-language-item {
    display: block;
  }
  
  /* Styles pour le dropdown de langue sur mobile - dans la navigation */
  .mobile-language-item .header-dropdown {
    display: inline-block;
  }
  
  .mobile-language-item .dropdown-btn {
    background-color: #F8F9FA;
    border: 1px solid #ECECEC;
    padding: 8px 12px;
    font-size: 14px;
    min-width: 60px;
    justify-content: center;
    border-radius: 6px;
  }
  
  .mobile-language-item .dropdown-menu {
    right: auto;
    left: 0;
    transform: translateY(-10px);
    min-width: 80px;
  }
  
  .mobile-language-item .dropdown-menu.active {
    transform: translateY(0);
  }
  
  .mobile-menu-language-item {
    border-bottom: 1px solid #F5F5F5;
    padding: 16px 0;
    text-align: left;
  }
  
  .mobile-menu-language .header-dropdown {
    display: inline-block;
  }
  
  .mobile-menu-language .dropdown-btn {
    background-color: #F8F9FA;
    border: 1px solid #ECECEC;
    padding: 12px 16px;
    font-size: 16px;
    min-width: 80px;
    justify-content: center;
    color: #201E21;
    border-radius: 8px;
  }
  
  .mobile-menu-language .dropdown-menu {
    right: auto;
    left: 0;
    transform: translateY(-10px);
    min-width: 100px;
  }
  
  .mobile-menu-language .dropdown-menu.active {
    transform: translateY(0);
  }
  
  /* Footer mobile */
  .footer {
    padding: 40px 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .footer-blocks {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  
  .footer-block {
    text-align: center;
  }
  
  .footer-block-title {
    margin-bottom: 16px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-contacts li {
    margin-bottom: 12px;
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .footer-blocks {
    gap: 40px;
  }
}

/* Optimisations pour très petits écrans */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .ecosystem-title,
  .values-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .ecosystem-features {
    grid-template-columns: 1fr;
  }
}

/* Section Hero À propos */
.about-hero-section {
  background-image: url(/assets/bg-hero-b701aed699584b6a47afc5cf8491aa1a85414dc625bb3421e0b2a18b62503c5e.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 92px 0;
  color: white;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-left {
  flex: 1.5;
}

.hero-title {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 56px;
  color: #130140;
}

.hero-description {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 24px;
  color: #130140;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-right {
  flex: 1;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Statistiques */
.stats-section {
  background: linear-gradient(90deg, #7C3EAD 0%, #A855F7 49.86%, #4F46E5 100%);
  padding: 41px 0;
}

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

.stat-block {
  text-align: center;
  background: transparent;
  border: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #F1E6F6;
  margin-bottom: 5px;
  line-height: 48px;
}

.stat-title {
  font-size: 12px;
  font-weight: 600;
  color: #F1E6F6;
  line-height: 20px;
}

/* Section Mission */
.mission-section {
  background-color: transparent;
  padding: 100px 0;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.mission-left {
  flex: 1.5;
}

.mission-badge {
  display: inline-block;
  background-color: #F1E6F6;
  color: #6E08A7;
  padding: 4px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mission-title {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 56px;
  color: #130140;
}

.mission-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #130140;
}

.mission-text:last-child {
  margin-bottom: 0;
}

.mission-right {
  flex: 1;
  text-align: center;
}

.mission-image {
  width: 100%;
  height: auto;
}

/* Section Piliers de l'écosystème */
.ecosystem-section {
  background-color: white;
  padding: 77px 0;
}

.ecosystem-header {
  text-align: center;
  margin-bottom: 50px;
}

.ecosystem-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 56px;
  color: #000;
}

.ecosystem-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #302D32;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ecosystem-block {
  border: 1px solid #ECECEC;
  border-radius: 12px;
  padding: 30px;
  background-color: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ecosystem-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.ecosystem-icon {
  margin-bottom: 6px;
}

.ecosystem-block-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 32px;
  color: #201E21;
}

.ecosystem-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #6E08A7;
  margin-bottom: 6px;
  line-height: 24px;
}

.ecosystem-block .ecosystem-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #302D32;
  margin-bottom: 12px;
}

.ecosystem-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.feature-label {
  font-size: 12px;
  font-weight: 600;
  color: #008F4A;
  line-height: 20px;
}

/* Section Valeurs */
.values-section {
  background-image: url(/assets/bg-services-ffe63fa91ce34dc177b3d2da7cf81e380ec100944db6ce370772451df4d75ae5.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: white;
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 56px;
  color: white;
}

.values-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #FFF;
}

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

.value-block {
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-block:hover {
  transform: translateY(-4px);
  background-color: rgba(0, 0, 0, 0.12);
}

.value-badge {
  display: inline-block;
  background-color: #EBE42B;
  color: #FDFCEA;
  padding: 13px 15px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  margin: 0 auto 8px;
}

.value-block-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 24px;
  color: white;
}

.value-block-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #FFF;
}

/* Responsive pour la page À propos */

/* Styles pour écrans moyens (tablettes) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Container et espacement */
  .container {
    padding: 0 40px;
  }
  
  /* Header tablette */
  .header-content {
    padding: 16px 0;
  }
  
  .header-nav-section {
    gap: 20px;
  }
  
  .nav-tabs {
    gap: 24px;
  }
  
  .nav-tabs li a {
    font-size: 15px;
    padding: 8px 12px;
    transition: all 0.3s ease;
  }
  
  .nav-tabs li a:hover {
    background-color: rgba(110, 8, 167, 0.1);
  }
  
  /* Optimisations tactiles pour les boutons */
  .btn {
    min-height: 44px;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Section Hero tablette */
  .about-hero-section {
    padding: 80px 0;
  }
  
  .hero-content {
    gap: 60px;
  }
  
  .hero-title {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 16px;
  }
  
  .hero-description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  
  .hero-buttons {
    gap: 20px;
  }
  
  .hero-buttons .btn {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .hero-image {
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  /* Section Statistiques tablette */
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .stat-number {
    font-size: 36px;
    line-height: 44px;
  }
  
  .stat-title {
    font-size: 13px;
    line-height: 20px;
  }
  
  /* Section Mission tablette */
  .mission-section {
    padding: 80px 0;
  }
  
  .mission-content {
    gap: 60px;
  }
  
  .mission-title {
    font-size: 44px;
    line-height: 52px;
  }
  
  .mission-text {
    font-size: 18px;
    line-height: 28px;
  }
  
  .mission-badge {
    padding: 6px 20px;
    font-size: 13px;
  }
  
  .mission-image {
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  /* Section Écosystème tablette */
  .ecosystem-section {
    padding: 80px 0;
  }
  
  .ecosystem-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .ecosystem-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .ecosystem-block {
    padding: 28px;
  }
  
  .ecosystem-block-title {
    font-size: 22px;
    line-height: 30px;
  }
  
  .ecosystem-subtitle {
    font-size: 15px;
    line-height: 22px;
  }
  
  .ecosystem-block .ecosystem-description {
    font-size: 13px;
    line-height: 20px;
  }
  
  .ecosystem-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .feature-label {
    font-size: 11px;
    line-height: 18px;
  }
  
  /* Section Valeurs tablette */
  .values-section {
    padding: 80px 0;
  }
  
  .values-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .values-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .value-block {
    padding: 20px;
  }
  
  .value-badge {
    padding: 10px 12px;
    font-size: 32px;
    line-height: 44px;
  }
  
  .value-block-title {
    font-size: 18px;
    line-height: 26px;
  }
  
  .value-block-description {
    font-size: 13px;
    line-height: 20px;
  }
  
  /* Section Équipe tablette */
  .team-section {
    padding: 80px 0;
  }
  
  .team-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .team-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .team-card-offset {
    margin-top: 20px;
  }
  
  .team-card {
    padding: 24px;
  }
  
  .member-photo {
    width: 120px;
    height: 120px;
  }
  
  .member-name {
    font-size: 17px;
    line-height: 24px;
  }
  
  .member-position {
    font-size: 13px;
    line-height: 20px;
  }
  
  /* Section Innovation tablette */
  .innovation-section {
    padding: 80px 0;
  }
  
  .innovation-content {
    gap: 60px;
  }
  
  .innovation-title {
    font-size: 44px;
    line-height: 52px;
  }
  
  .innovation-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .innovation-badge {
    padding: 6px 20px;
    font-size: 13px;
  }
  
  .innovation-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .innovation-label {
    font-size: 15px;
    line-height: 22px;
  }
  
  .innovation-buttons {
    gap: 20px;
  }
  
  .innovation-image {
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  /* Section Découverte tablette */
  .discovery-section {
    padding: 80px 0;
  }
  
  .discovery-block {
    padding: 60px 80px;
  }
  
  .discovery-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .discovery-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .discovery-buttons {
    gap: 16px;
  }
  
  /* Footer tablette */
  .footer {
    padding: 60px 0;
  }
  
  .footer-content {
    margin-bottom: 32px;
  }
  
  .footer-blocks {
    gap: 50px;
  }
  
  .footer-block-title {
    font-size: 15px;
    margin-bottom: 18px;
  }
  
  .footer-links li,
  .footer-links li a {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .footer-contacts li {
    margin-bottom: 14px;
  }
  
  .footer-contacts li span {
    font-size: 13px;
  }
  
  .copyright {
    font-size: 13px;
  }
  
  /* Optimisations pour les cartes interactives */
  .ecosystem-block,
  .value-block,
  .team-card {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .ecosystem-block:hover,
  .value-block:hover,
  .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  /* Amélioration de la lisibilité */
  .hero-description,
  .mission-text,
  .ecosystem-description,
  .values-description,
  .team-description,
  .innovation-description,
  .discovery-description {
    line-height: 1.6;
  }
  
  /* Optimisations pour les badges */
  .mission-badge,
  .innovation-badge,
  .value-badge {
    transition: all 0.3s ease;
  }
  
  .mission-badge:hover,
  .innovation-badge:hover,
  .value-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Optimisations pour les éléments de fonctionnalités */
  .feature-item,
  .innovation-feature {
    transition: all 0.3s ease;
  }
  
  .feature-item:hover,
  .innovation-feature:hover {
    transform: translateX(4px);
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .hero-content,
  .mission-content {
    gap: 60px;
  }
  
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .footer-blocks {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Marges latérales pour mobile */
  .container {
    padding: 0 20px;
  }
  
  /* Header mobile */
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  
  .header-nav-section {
    display: none;
  }
  
  /* Section Hero mobile */
  .about-hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 44px;
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    padding: 16px;
  }
  
  /* Section Statistiques mobile */
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-number {
    font-size: 28px;
    line-height: 36px;
  }
  
  .stat-title {
    font-size: 12px;
  }
  
  /* Section Mission mobile */
  .mission-section {
    padding: 60px 0;
  }
  
  .mission-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .mission-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .mission-text {
    font-size: 14px;
    line-height: 22px;
  }
  
  /* Section Écosystème mobile */
  .ecosystem-section {
    padding: 60px 0;
  }
  
  .ecosystem-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .ecosystem-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .ecosystem-block {
    padding: 24px;
  }
  
  .ecosystem-block-title {
    font-size: 20px;
    line-height: 28px;
  }
  
  .ecosystem-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  /* Section Valeurs mobile */
  .values-section {
    padding: 60px 0;
  }
  
  .values-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .values-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-block {
    padding: 24px;
  }
  
  .value-block-title {
    font-size: 18px;
    line-height: 26px;
  }
  
  /* Footer mobile */
  .footer {
    padding: 40px 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .footer-blocks {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  
  .footer-block {
    text-align: center;
  }
  
  .footer-block-title {
    margin-bottom: 16px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-contacts li {
    margin-bottom: 12px;
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
    gap: 16px;
  }
}

/* Section Équipe */
.team-section {
  background-image: url(/assets/bg-team-4e6fb2a28b1f6ac606243559742b191f36ec7471a2a426060385a1309f131c44.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: white;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 56px;
  color: #000;
}

.team-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #302D32;
}

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

.team-card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #201E21;
}

.team-card-offset {
  margin-top: 40px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.team-photo {
  margin-bottom: 10px;
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #F1E6F6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover .member-photo {
  transform: scale(1.05);
}

.member-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 24px;
  color: #201E21;
}

.member-position {
  font-size: 14px;
  font-weight: 400;
  color: #6E08A7;
  line-height: 24px;
}

/* Section Innovation */
.innovation-section {
  background-color: transparent;
  padding: 100px 0;
}

.innovation-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.innovation-left {
  flex: 1.5;
}

.innovation-right {
  flex: 1;
  text-align: center;
}

.innovation-badge {
  display: inline-block;
  background-color: #EDE6FF;
  color: #6E08A7;
  padding: 4px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.innovation-title {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 56px;
  color: #130140;
}

.innovation-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #130140;
  margin-bottom: 12px;
}

.innovation-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.innovation-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.innovation-label {
  font-size: 16px;
  font-weight: 400;
  color: #008F4A;
  line-height: 24px;
}

.innovation-buttons {
  display: flex;
  gap: 16px;
}

.innovation-right {
  flex: 1;
  text-align: center;
}

.innovation-image {
  width: 100%;
  height: auto;
}

/* Section Découverte TAYYIB+ */
.discovery-section {
  background-color: #FFF;
  padding: 100px 0;
}

.discovery-block {
  background-image: url(/assets/bg-tayyib-d1d7a3d9d40803daa873d5f6cd05bc121745c27d6cf444876b92cd434b9036b5.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 83px 247px;
  text-align: center;
  color: white;
}

.discovery-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 56px;
  color: white;
}

.discovery-description {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #FFF;
  margin-bottom: 32px;
}

.discovery-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-white {
  background-color: white;
  color: #201E21;
}

/* Responsive pour les nouvelles sections */
@media (min-width: 769px) and (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .team-card-offset {
    margin-top: 20px;
  }
  
  .innovation-content {
    gap: 60px;
  }
  
  .innovation-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .team-card-offset {
    margin-top: 0;
  }
  
  .innovation-content {
    gap: 60px;
  }
  
  .innovation-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  /* Section Équipe mobile */
  .team-section {
    padding: 60px 0;
  }
  
  .team-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .team-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .team-card-offset {
    margin-top: 0;
  }
  
  .team-card {
    padding: 24px 20px;
  }
  
  .member-photo {
    width: 100px;
    height: 100px;
  }
  
  .member-name {
    font-size: 18px;
    line-height: 26px;
  }
  
  /* Section Innovation mobile */
  .innovation-section {
    padding: 60px 0;
  }
  
  .innovation-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .innovation-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .innovation-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .innovation-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .innovation-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .innovation-buttons .btn {
    width: 100%;
    padding: 16px;
  }
  
  /* Section Découverte mobile */
  .discovery-section {
    padding: 60px 0;
  }
  
  .discovery-block {
    padding: 40px 24px;
  }
  
  .discovery-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .discovery-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .discovery-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .discovery-buttons .btn {
    width: 100%;
    padding: 16px;
  }
}

/* Optimisations pour très petits écrans */
@media (max-width: 480px) {
  .team-title,
  .innovation-title,
  .discovery-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .team-description,
  .innovation-description,
  .discovery-description {
    font-size: 14px;
    line-height: 20px;
  }
  
  .discovery-block {
    padding: 32px 20px;
  }
}
