/* ===== SECTION À PROPOS - STRUCTURE VERTICALE EXPERT ===== */

.about-section {
  background: linear-gradient(135deg, #2E86DE 0%, #1e40af 100%);
  padding: 120px 0 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* NOUVELLE STRUCTURE 2 COLONNES */
.about-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===== LOGO SECTION À GAUCHE ===== */
.about-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem;
}

.about-left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.breathing-logo-container {
  position: relative;
  margin-bottom: 2rem;
}

.breathing-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  animation: breathe 3s ease-in-out infinite;
  box-shadow: 
    0 0 50px rgba(255, 255, 255, 0.6),
    0 0 100px rgba(255, 255, 255, 0.4),
    0 0 150px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  animation: glow 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 0 50px rgba(255, 255, 255, 0.6),
      0 0 100px rgba(255, 255, 255, 0.4),
      0 0 150px rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 
      0 0 80px rgba(255, 255, 255, 0.8),
      0 0 150px rgba(255, 255, 255, 0.6),
      0 0 200px rgba(255, 255, 255, 0.4);
  }
}

@keyframes glow {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.logo-text {
  color: var(--white);
  text-align: center;
}

.logo-text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.logo-text p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* ===== CONTENU À DROITE ===== */
.about-content-section {
  color: #FFFFFF;
  padding: 2rem;
}

.about-header {
  margin-bottom: 4rem;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.about-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.6;
}

.about-description {
  margin-bottom: 4rem;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.about-description strong {
  font-weight: 700;
  color: #ffffff;
}

/* ===== MÉTRIQUES CLÉS ===== */
.about-metrics {
  margin-bottom: 3rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* NOUVELLE GRILLE COMPACTE */
.about-right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-header-compact {
  text-align: left;
  margin-bottom: 1rem;
}

.about-title-compact {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle-compact {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.about-metrics-compact {
  width: 100%;
}

.metrics-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
/* CARTES COMPACTES DESIGN EXPERT */
.metric-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

/* CARTES COMPACTES VERSION NOUVELLE */
.metric-card-compact {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.metric-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.metric-card-compact .metric-icon {
  display: none !important;
}

.metric-card-compact .metric-number {
  font-size: 1.8rem;
}

.metric-card-compact .metric-label {
  font-size: 0.85rem;
}

.rennes-card-compact {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.12) 100%) !important;
}

.partner-card-compact {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.08) 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
}

.partner-card-compact:hover {
  border: 1px solid rgba(16, 185, 129, 0.35) !important;
}

.metric-card::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--spacing-xs);
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-sublabel {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-top: 2px;
  font-style: italic;
}

/* ===== VISION ET VALEURS ===== */
.about-vision {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.vision-quote {
  margin: 1.5rem 0 0 0;
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  position: relative;
}

.vision-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: serif;
  line-height: 1;
}

.vision-quote p {
  color: var(--white) !important;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vision-quote cite {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  text-align: right;
  display: block;
  margin-top: 1rem;
}

/* ===== SECTION ÉQUIPE ===== */
.about-team {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.about-team h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.about-team > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.team-member {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.member-photo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-member:hover .member-photo {
  border-color: var(--primary-blue);
  transform: scale(1.1);
}

.team-member:hover .member-photo img {
  transform: scale(1.1);
}

.member-info h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.member-role {
  color: #000000;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
}

.member-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.about-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.about-vision h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.about-vision p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

/* ===== NOUVELLES FONCTIONNALITÉS v4.2.0 ===== */

/* CARTE RENNES REDESIGN EXPERT */
.rennes-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 20px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  position: relative !important;
}

.rennes-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.rennes-card .metric-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2.5rem 2rem !important;
  background: transparent !important;
  min-height: 160px !important;
  gap: 1.5rem !important;
  position: relative !important;
  z-index: 2 !important;
}

.rennes-card .metric-icon {
  margin-right: 0.5rem !important;
}

.rennes-card .rennes-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-decoration: none !important;
}

.rennes-card .rennes-link .metric-label {
  display: none !important; /* Masquer le texte dans le lien */
}

/* Ajout du texte "Projet Rennais" à gauche */
.rennes-card .metric-content::before {
  content: "PROJET RENNAIS";
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CARTE PARTENARIAT REDESIGN EXPERT */
.partner-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  border-radius: 20px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  position: relative !important;
}

.partner-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2) !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
}

.partner-card .metric-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2.5rem 2rem !important;
  background: transparent !important;
  min-height: 160px !important;
  gap: 1.5rem !important;
  position: relative !important;
  z-index: 2 !important;
}

.partner-card .metric-icon {
  margin-right: 0.5rem !important;
}

.partner-card .metric-label {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* LOGOS PARTENAIRES - Rennes & YAO */
.partners-logos {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

.partner-link {
  display: inline-block;
  transition: all 0.3s ease;
}

.partner-logo {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 3px solid rgba(255, 255, 255, 0.9) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  display: block !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 10 !important;
}

.rennes-link {
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.75rem !important;
  transition: all 0.3s ease !important;
}

.partner-link:hover .partner-logo {
  transform: scale(1.15) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4) !important;
}

/* Textes Bema & Bema Omni plus gros */
.metric-sublabel-large {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  color: var(--white) !important;
  margin-top: 8px;
}

/* Icônes à gauche et couleur bleu clair */
.app-icons {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
}

.app-icon.bema-omni {
  background: #87CEEB !important; /* Bleu clair au lieu de violet */
  color: var(--white) !important;
}

/* Bouton partenaire avec respiration */
.partner-card {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: var(--spacing-2xl) !important;
  min-height: 120px !important;
}

/* BOUTON PARTENARIAT CENTRÉ REDESIGN */
.partner-btn-breathing {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: var(--white) !important;
  padding: 18px 32px !important; /* AUGMENTÉ: plus généreux */
  border-radius: 16px !important; /* CHANGÉ: moins arrondi, plus moderne */
  font-weight: 700 !important; /* PLUS BOLD */
  font-size: 1rem !important; /* AUGMENTÉ */
  box-shadow: 
    0 12px 35px rgba(16, 185, 129, 0.4),
    0 4px 15px rgba(16, 185, 129, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  animation: partnerBreathing 3s ease-in-out infinite !important;
  white-space: nowrap !important;
  min-width: 200px !important; /* AUGMENTÉ */
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  position: relative !important;
  z-index: 10 !important;
}

.partner-btn-breathing:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4) !important;
}

/* Animation respiration bouton */
@keyframes partnerBreathing {
  0%, 100% { 
    transform: scale(1) translateY(0);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  }
  50% { 
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
  }
}

/* Animation mains qui se serrent - DÉSACTIVÉE */
.handshake-animated {
  animation: none !important;
}

@keyframes handshakeMove {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
  }
  25% { 
    transform: rotate(-5deg) scale(1.1);
  }
  50% { 
    transform: rotate(0deg) scale(1.05);
  }
  75% { 
    transform: rotate(5deg) scale(1.1);
  }
}

/* ===== RESPONSIVE DESIGN OPTIMISÉ ===== */

/* Tablette (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .about-section {
    padding: 80px 0;
    min-height: auto;
  }
  
  .about-container {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 0 1.5rem;
  }
  
  .about-container-new {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 0 2rem;
  }
  
  .about-logo-section {
    padding: 2rem;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-title-compact {
    font-size: 2rem;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .metrics-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .metric-card {
    padding: 1.5rem;
    min-height: 110px;
  }
  
  .metric-card-compact {
    padding: 1rem;
    min-height: 90px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .about-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 1rem;
    max-width: 100%;
  }
  
  .about-container-new {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .about-left-column {
    order: 1;
    padding: 1rem;
  }
  
  .about-right-column {
    order: 2;
  }
  
  .about-header-compact {
    text-align: center;
  }
  
  .about-title-compact {
    font-size: 2rem;
  }
  
  .metrics-grid-compact {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-logo-section {
    padding: 2rem 1rem;
    order: 1;
  }
  
  .about-content-section {
    padding: 1rem;
    order: 2;
  }
  
  .about-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .about-description {
    margin-bottom: 2rem;
  }
  
  .about-description p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .metric-card {
    padding: 1.5rem;
    min-height: 100px;
    flex-direction: row;
    text-align: left;
  }
  
  .metric-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    margin-right: 1rem;
    font-size: 1.5rem;
  }
  
  .metric-content {
    flex: 1;
  }
  
  .metric-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .metric-label {
    font-size: 0.9rem;
  }

  .about-vision {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .about-vision h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .about-vision p {
    font-size: 1rem;
  }
  
  .vision-quote {
    margin: 1rem 0 0 0;
    padding: 1rem;
  }
  
  .vision-quote p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .about-team {
    padding: 1.5rem;
  }
  
  .about-team h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .team-member {
    padding: 1rem;
  }
  
  .member-photo {
    width: 60px;
    height: 60px;
    margin-bottom: 0.75rem;
  }

  .rennes-circular {
    width: 40px !important;
    height: 40px !important;
  }

  .partner-btn-breathing {
    padding: 12px 16px !important;
    font-size: 0.85rem !important;
  }

  .partner-logo {
    width: 45px !important;
    height: 45px !important;
  }
  
  .partners-logos {
    gap: 0.75rem;
  }

  .partner-card {
    min-height: 90px !important;
    padding: 1rem !important;
  }

  .rennes-card {
    min-height: 90px !important;
    padding: 1rem !important;
  }
}

/* Mobile petit (max-width: 480px) */
@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }
  
  .about-container {
    gap: 2rem;
    padding: 0 0.75rem;
  }
  
  .about-logo-section {
    padding: 1.5rem 0.5rem;
  }
  
  .about-content-section {
    padding: 0.5rem;
  }
  
  .about-title {
    font-size: 1.75rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
  }
  
  .metrics-grid {
    gap: 0.75rem;
  }
  
  .metric-card {
    padding: 1rem;
    min-height: 80px;
  }
  
  .metric-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .metric-number {
    font-size: 1.25rem;
  }
  
  .metric-label {
    font-size: 0.8rem;
  }
  
  .about-vision {
    padding: 1rem;
  }
  
  .about-team {
    padding: 1rem;
  }
  
  .vision-quote {
    padding: 0.75rem;
  }
}
