/* CSS spécifique à la page Solutions */

/* Styles pour les sections */
.section {
  padding: 80px 0;
}

.section-content {
  display: flex;
  align-items: center;
}

.section-left,
.section-right {
  flex: 1;
}

/* 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;
}

/* Première section - Hero Solutions */
.solutions-hero-section {
  background-color: #6E08A7;
  color: white;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.solutions-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.solutions-hero-title {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 66px;
}

.solutions-hero-description {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  justify-content: center;
}

/* 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: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
  opacity: 0.7;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  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: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
}

.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;
}

/* 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-success {
  background-color: #008F4A;
  color: white;
}

.btn-success:hover {
  background-color: #218838;
}

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

/* 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;
}

/* Responsive */

/* 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 Solutions tablette */
  .solutions-hero-section {
    padding: 80px 0;
  }
  
  .solutions-hero-title {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 16px;
  }
  
  .solutions-hero-description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  
  .solutions-hero-buttons {
    gap: 20px;
    margin-bottom: 32px;
  }
  
  .solutions-hero-buttons .btn {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  /* Section Solutions intégrées tablette */
  .solutions-integrated-section {
    padding: 80px 0;
  }
  
  .solutions-integrated-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .solutions-integrated-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .solutions-integrated-header {
    margin-bottom: 60px;
  }
  
  /* Onglets tablette */
  .solutions-tabs {
    gap: 8px;
    padding: 8px;
  }
  
  .tab-button {
    padding: 20px 6px;
    font-size: 13px;
    border-radius: 6px;
  }
  
  .tab-content-container {
    padding: 32px;
  }
  
  .tab-content-layout {
    gap: 40px;
  }
  
  .solution-title {
    font-size: 18px;
    line-height: 26px;
  }
  
  .solution-subtitle {
    font-size: 11px;
    line-height: 18px;
  }
  
  .solution-description {
    font-size: 16px;
    line-height: 26px;
  }
  
  .solution-stats {
    gap: 10px;
  }
  
  .stat-block-light {
    padding: 16px 10px;
  }
  
  .stat-number-light {
    font-size: 24px;
    line-height: 32px;
  }
  
  .stat-label-light {
    font-size: 11px;
    line-height: 18px;
  }
  
  /* Section Cas d'usage tablette */
  .use-cases-section {
    padding: 80px 0 40px 0;
  }
  
  .use-cases-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .use-cases-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .use-cases-header {
    margin-bottom: 40px;
  }
  
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .use-case-card {
    padding: 24px;
  }
  
  .use-case-title {
    font-size: 20px;
    line-height: 28px;
  }
  
  .use-case-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .use-case-features li {
    font-size: 11px;
    line-height: 18px;
  }
  
  /* Section Écosystème tablette */
  .ecosystem-section {
    padding: 80px 0 40px 0;
  }
  
  .ecosystem-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .ecosystem-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .ecosystem-header {
    margin-bottom: 60px;
  }
  
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .ecosystem-block {
    padding: 20px;
  }
  
  .ecosystem-block-title {
    font-size: 18px;
    line-height: 26px;
  }
  
  .ecosystem-block-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  /* Section Certifications tablette */
  .certifications-section {
    padding: 80px 0;
  }
  
  .certifications-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .certifications-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .certifications-header {
    margin-bottom: 50px;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .certification-block {
    padding: 0 16px;
  }
  
  .certification-block-title {
    font-size: 18px;
    line-height: 26px;
  }
  
  .certification-block-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  /* 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 */
  .use-case-card,
  .ecosystem-block {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .use-case-card:hover,
  .ecosystem-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  /* Amélioration de la lisibilité */
  .solutions-hero-description,
  .solutions-integrated-description,
  .use-cases-description,
  .ecosystem-description,
  .certifications-description,
  .discovery-description {
    line-height: 1.6;
  }
  
  /* Optimisations pour les onglets */
  .tab-button {
    transition: all 0.3s ease;
  }
  
  .tab-button:hover {
    transform: translateY(-2px);
  }
  
  /* Optimisations pour les statistiques */
  .stat-block-light {
    transition: all 0.3s ease;
  }
  
  .stat-block-light:hover {
    transform: scale(1.02);
  }
}

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

@media (max-width: 768px) {
  .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;
  }
  
  .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;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  /* 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);
  }
  
  /* Section Hero Solutions mobile */
  .solutions-hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .solutions-hero-content {
    padding: 0 20px;
  }
  
  .solutions-hero-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 20px;
  }
  
  .solutions-hero-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
  }
  
  .solutions-hero-buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .solutions-hero-buttons .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }
  
  /* 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;
  }
}

/* Optimisations pour très petits écrans */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .solutions-hero-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .solutions-hero-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .mobile-menu-content {
    width: 90%;
  }
}

/* Deuxième section - Solutions intégrées */
.solutions-integrated-section {
  background-color: white;
  padding: 100px 0;
}

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

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

.solutions-integrated-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #302D32;
  max-width: 600px;
  margin: 0 auto;
}

/* Conteneur des onglets */
.solutions-tabs-container {
  overflow: hidden;
}

/* Barre d'onglets */
.solutions-tabs {
  display: flex;
  background-color: #FFF;
  border: 1px solid #ECECEC;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 10px;
  gap: 12px;
  margin-bottom: 24px;
}

.tab-button {
  flex: 1;
  padding: 24px 8px;
  background: #F1E6F6;
  border-radius: 4px;
  font-size: 14px;
  border: none;
  font-weight: 600;
  color: #6E08A7;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-button:last-child {
  border-right: none;
}

.tab-button:hover {
  background-color: #F1E6F6;
  color: #6E08A7;
}

.tab-button.active {
  background-color: #6E08A7;
  color: white;
}

/* Conteneur du contenu des onglets */
.tab-content-container {
  background-color: white;
  border: 1px solid #ECECEC;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 24px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Layout du contenu des onglets */
.tab-content-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.tab-content-left {
  flex: 1;
}

.tab-content-right {
  flex: 1;
}

/* En-tête de la solution */
.solution-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.solution-icon {
  flex-shrink: 0;
}

.solution-title-section {
  flex: 1;
}

.solution-title {
  font-size: 20px;
  font-weight: 600;
  color: #201E21;
  margin-bottom: 5px;
  line-height: 32px;
}

.solution-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #302D32;
  line-height: 20px;
}

/* Description de la solution */
.solution-description {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 32px;
  margin-bottom: 32px;
}

/* Statistiques de la solution */
.solution-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.stat-block-light {
  flex: 1;
  background-color: #EDE6FF;
  padding: 20px 12px;
  border-radius: 4px;
  text-align: center;
}

.stat-number-light {
  font-size: 32px;
  font-weight: 700;
  color: #6E08A7;
  margin-bottom: 8px;
  line-height: 28px;
}

.stat-label-light {
  font-size: 12px;
  font-weight: 600;
  color: #706D72;
  line-height: 20px;
}

/* Bouton avec icône */
.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Bouton pour la section Rejoignez l'écosystème */
.join-ecosystem-block .btn-success {
  background-color: #6E08A7;
  color: white;
}

.join-ecosystem-block .btn-success:hover {
  background-color: #5a077a;
}

/* Illustration de la solution */
.solution-illustration {
  width: 100%;
}

.solution-illustration-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive pour la section Solutions intégrées */
@media (min-width: 769px) and (max-width: 1024px) {
  .tab-content-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .tab-content-right {
    order: -1;
  }
  
  .solution-stats {
    flex-direction: row;
    gap: 10px;
  }
  
  .solution-illustration-image {
    max-height: 300px;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .tab-content-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .tab-content-right {
    order: -1;
  }
  
  .solution-stats {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .solutions-integrated-section {
    padding: 60px 0;
  }
  
  .solutions-integrated-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .solutions-integrated-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .solutions-integrated-header {
    margin-bottom: 40px;
  }
  
  /* Onglets en colonnes sur mobile */
  .solutions-tabs {
    flex-direction: column;
  }
  
  .tab-button {
    border-right: none;
    border-bottom: 1px solid #ECECEC;
    padding: 16px;
    font-size: 16px;
  }
  
  .tab-button:last-child {
    border-bottom: none;
  }
  
  .tab-content-container {
    padding: 24px;
  }
  
  .solution-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .solution-title {
    font-size: 20px;
    line-height: 28px;
  }
  
  .solution-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .stat-block-light {
    padding: 16px;
  }
  
  .stat-number-light {
    font-size: 20px;
    line-height: 28px;
  }
}

/* Troisième section - Cas d'usage par secteur */
.use-cases-section {
  background-color: transparent;
  padding: 100px 0 45px 0;
}

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

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

.use-cases-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #302D32;
  max-width: 600px;
  margin: 0 auto;
}

/* Grille des cas d'usage */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Cards des cas d'usage */
.use-case-card {
  background-color: white;
  border: 1px solid #CFCED0;
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Première carte - Producteurs avec fond d'image */
.use-case-card:first-child {
  background-image: url(/assets/producteurs-c74fa99c5e1c19349cb4413f6e4ac3550eedb59f50298a2372428f671ac07132.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFF;
}

.use-case-card:first-child .use-case-title,
.use-case-card:first-child .use-case-description,
.use-case-card:first-child .use-case-features li {
  color: #FFF;
}

/* Icône du cas d'usage */
.use-case-icon {
  margin-bottom: 8px;
}

/* Titre du cas d'usage */
.use-case-title {
  font-size: 24px;
  font-weight: 700;
  color: #201E21;
  margin-bottom: 12px;
  line-height: 32px;
}

.use-case-title.green {
  color: #008F4A;
}

.use-case-title.orange {
  color: #E99700;
}

/* Description du cas d'usage */
.use-case-description {
  font-size: 16px;
  font-weight: 400;
  color: #302D32;
  line-height: 24px;
  margin-bottom: 26px;
}

/* Liste des fonctionnalités */
.use-case-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.use-case-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #706D72;
  line-height: 20px;
}

.use-case-features li:last-child {
  margin-bottom: 0;
}

.feature-icon {
  flex-shrink: 0;
}

/* Responsive pour la section Cas d'usage */
@media (min-width: 769px) and (max-width: 1024px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .use-case-card {
    padding: 24px;
  }
  
  .use-case-icon img {
    width: 48px;
    height: 48px;
  }
  
  /* Première carte - Producteurs avec fond d'image */
  .use-case-card:first-child {
    background-image: url(/assets/producteurs-c74fa99c5e1c19349cb4413f6e4ac3550eedb59f50298a2372428f671ac07132.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .use-case-card:first-child .use-case-title,
  .use-case-card:first-child .use-case-description,
  .use-case-card:first-child .use-case-features li {
    color: #FFF;
  }
}

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

@media (max-width: 768px) {
  .use-cases-section {
    padding: 60px 0;
  }
  
  .use-cases-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .use-cases-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .use-cases-header {
    margin-bottom: 40px;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .use-case-card {
    padding: 24px;
  }
  
  .use-case-title {
    font-size: 20px;
    line-height: 28px;
  }
  
  .use-case-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .use-case-features li {
    font-size: 13px;
    line-height: 18px;
  }
  
  /* Première carte - Producteurs avec fond d'image */
  .use-case-card:first-child {
    background-image: url(/assets/producteurs-c74fa99c5e1c19349cb4413f6e4ac3550eedb59f50298a2372428f671ac07132.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .use-case-card:first-child .use-case-title,
  .use-case-card:first-child .use-case-description,
  .use-case-card:first-child .use-case-features li {
    color: #FFF;
  }
}

/* Nouvelle section - Rejoignez l'écosystème */
.join-ecosystem-section {
  background-color: #F1E6F6;
  padding: 100px 0;
}

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

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

.join-ecosystem-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #302D32;
  max-width: 800px;
  margin: 0 auto;
}

/* Blocs de l'écosystème */
.join-ecosystem-blocks {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.join-ecosystem-block {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #EAEFF1;
  padding: 24px;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
}

.join-ecosystem-content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.join-ecosystem-content.reverse {
  flex-direction: row-reverse;
}

.join-ecosystem-left {
  flex: 1;
}

.join-ecosystem-right {
  flex: 1;
}

/* Badge */
.join-ecosystem-badge {
  display: inline-block;
  background-color: #F1E6F6;
  color: #6E08A7;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

/* Titre du bloc */
.join-ecosystem-block-title {
  font-size: 32px;
  font-weight: 700;
  color: #201E21;
  margin-bottom: 16px;
  line-height: 40px;
}

/* Description du bloc */
.join-ecosystem-block-description {
  font-size: 16px;
  font-weight: 400;
  color: #302D32;
  line-height: 24px;
  margin-bottom: 16px;
}

/* Liste des fonctionnalités */
.join-ecosystem-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.join-ecosystem-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 400;
  color: #201E21;
  line-height: 20px;
}

.join-ecosystem-features li:last-child {
  margin-bottom: 0;
}

/* Image */
.join-ecosystem-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-ecosystem-image-content {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive pour la section Rejoignez l'écosystème */
@media (min-width: 769px) and (max-width: 1024px) {
  .join-ecosystem-section {
    padding: 80px 0;
  }
  
  .join-ecosystem-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .join-ecosystem-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .join-ecosystem-header {
    margin-bottom: 60px;
  }
  
  .join-ecosystem-block {
    padding: 40px;
  }
  
  .join-ecosystem-content {
    gap: 60px;
  }
  
  .join-ecosystem-block-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .join-ecosystem-block-description {
    font-size: 16px;
    line-height: 26px;
  }
  
  .join-ecosystem-features li {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 768px) {
  .join-ecosystem-section {
    padding: 60px 0;
  }
  
  .join-ecosystem-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .join-ecosystem-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .join-ecosystem-header {
    margin-bottom: 40px;
  }
  
  .join-ecosystem-block {
    padding: 32px 24px;
  }
  
  .join-ecosystem-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .join-ecosystem-content.reverse {
    flex-direction: column;
  }
  
  .join-ecosystem-block-title {
    font-size: 24px;
    line-height: 32px;
  }
  
  .join-ecosystem-block-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .join-ecosystem-features li {
    font-size: 14px;
    line-height: 20px;
  }
  
  .join-ecosystem-image-content {
    max-width: 100%;
    height: auto;
  }
}

/* Quatrième section - Écosystème intégré */
.ecosystem-section {
  background-color: transparent;
  padding: 100px 0 45px 0;
}

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

.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;
  max-width: 600px;
  margin: 0 auto;
}

/* Grille de l'écosystème */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Blocs de l'écosystème */
.ecosystem-block {
  background-color: #F1E6F6;
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Icône de l'écosystème */
.ecosystem-icon {
  margin-bottom: 16px;
}

/* Titre du bloc écosystème */
.ecosystem-block-title {
  font-size: 20px;
  font-weight: 600;
  color: #302D32;
  margin-bottom: 16px;
  line-height: 24px;
}

/* Description du bloc écosystème */
.ecosystem-block-description {
  font-size: 16px;
  font-weight: 400;
  color: #302D32;
  line-height: 24px;
}

/* Responsive pour la section Écosystème */
@media (min-width: 769px) and (max-width: 1024px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .ecosystem-block {
    padding: 20px;
  }
  
  .ecosystem-icon img {
    width: 48px;
    height: 48px;
  }
}

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

@media (max-width: 768px) {
  .ecosystem-section {
    padding: 60px 0;
  }
  
  .ecosystem-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .ecosystem-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .ecosystem-header {
    margin-bottom: 40px;
  }
  
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ecosystem-block {
    padding: 32px 24px;
  }
  
  .ecosystem-block-title {
    font-size: 20px;
    line-height: 28px;
  }
  
  .ecosystem-block-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .ecosystem-icon img {
    width: 64px;
    height: 64px;
  }
}

/* Cinquième section - Certifications & Garanties */
.certifications-section {
  background-color: transparent;
  padding: 100px 0;
}

.certifications-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.certifications-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #302D32;
  max-width: 600px;
  margin: 0 auto;
}

/* Grille des certifications */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Blocs de certification */
.certification-block {
  text-align: center;
  padding: 0 20px;
}

/* Icône de certification */
.certification-icon {
  margin-bottom: 8px;
}

/* Titre du bloc certification */
.certification-block-title {
  font-size: 20px;
  font-weight: 600;
  color: #302D32;
  margin-bottom: 8px;
  line-height: 24px;
}

/* Description du bloc certification */
.certification-block-description {
  font-size: 16px;
  font-weight: 400;
  color: #302D32;
  line-height: 24px;
}

/* Responsive pour la section Certifications */
@media (min-width: 769px) and (max-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .certification-block {
    padding: 0 16px;
  }
  
  .certification-icon img {
    width: 48px;
    height: 48px;
  }
}

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

@media (max-width: 768px) {
  .certifications-section {
    padding: 60px 0;
  }
  
  .certifications-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .certifications-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .certifications-header {
    margin-bottom: 40px;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .certification-block {
    padding: 0 16px;
  }
  
  .certification-block-title {
    font-size: 20px;
    line-height: 28px;
  }
  
  .certification-block-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .certification-icon img {
    width: 64px;
    height: 64px;
  }
}

/* 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 la section Découverte */
@media (max-width: 768px) {
  .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) {
  .discovery-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .discovery-description {
    font-size: 14px;
    line-height: 20px;
  }
  
  .discovery-block {
    padding: 32px 20px;
  }
}
