/* === AMÉLIORATION SECTION METIERS INTRO === */

.metiers-cards-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.metiers-intro {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 70px;
  position: relative;
}

/* Badge amélioré */
.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: rgba(0, 217, 255, 0.08);
  border: 1.5px solid rgba(0, 217, 255, 0.25);
  border-radius: 50px;
  margin-bottom: 32px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00d9ff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.intro-badge:hover {
  background: rgba(0, 217, 255, 0.12);
  border-color: rgba(0, 217, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00d9ff;
  border-radius: 50%;
  animation: pulse-smooth 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

@keyframes pulse-smooth {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1); 
  }
  50% { 
    opacity: 0.6; 
    transform: scale(1.3); 
  }
}

/* Titre amélioré */
.metiers-intro .section-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 28px;
  color: #0a0a0a;
  letter-spacing: -1.8px;
}

.gradient-text {
  background: linear-gradient(135deg, #00d9ff 0%, #0077ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00d9ff, #0077ff);
  border-radius: 2px;
  opacity: 0.3;
}

/* Description améliorée */
.metiers-description {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #5a5a5a;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Pills améliorés */
.features-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2a2a2a;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.feature-pill i {
  font-size: 1.1rem;
  color: #00d9ff;
  transition: all 0.3s ease;
}

.feature-pill:hover {
  border-color: #00d9ff;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(0, 119, 255, 0.05));
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.2);
}

.feature-pill:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #0077ff;
}

/* Responsive */
@media (max-width: 991px) {
  .metiers-intro .section-title {
    font-size: 2.8rem;
    letter-spacing: -1.2px;
  }
  
  .metiers-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .metiers-cards-section {
    padding: 70px 0;
  }
  
  .intro-badge {
    padding: 8px 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
  
  .metiers-intro .section-title {
    font-size: 2rem;
    letter-spacing: -0.8px;
  }
  
  .metiers-description {
    font-size: 1rem;
    line-height: 1.65;
  }
  
  .features-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .feature-pill {
    justify-content: center;
    width: 100%;
  }
}
