/* HERO */
.recyclage-hero-wrapper {
  max-width: 1200px;   /* largeur max comme sur 4Shop */
  margin: 0 auto;      /* centré horizontalement */
  padding: 0 1rem;     /* un peu d’air sur les côtés */
}

/* Bloc principal */
.recyclage-hero {
  position: relative;
  isolation: isolate;
  padding: 3.5rem 1rem 5rem;
  background: linear-gradient(135deg, #00BF63, #7ED957);
  overflow: hidden;
  border-radius: 12px; /* arrondi comme sur le shop */
}

/* Halo radial */
.recyclage-hero::before {
  content:"";
  position:absolute; inset:-10% -5% auto -5%;
  height: 80%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%);
  pointer-events:none;
  z-index:0;
}

/* Icône, titre, sous-titre comme avant */
.recyclage-hero .hero-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.recyclage-hero .hero-title {
  font-weight: 900;
  font-size: clamp(1.8rem, 2.2vw + 1.2rem, 2.75rem);
  margin-bottom: 0.5rem;
}
.recyclage-hero .hero-subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 0.75rem;
  opacity: .95;
}

/* Wave */
.recyclage-hero .hero-wave {
  position:absolute; left:0; right:0; bottom:-1px;
  line-height:0; z-index:0;
}
.recyclage-hero .hero-wave svg {
  display:block;
  width:100%;
  height:80px;
}
.recyclage-hero .hero-wave path {
  fill: #fff !important;
}


/* PRESENTATION */
/* Section générale */
.section-recyclage img {
  max-height: 360px;
  object-fit: contain;
}

/* Services cards hover */
.service-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.service-title {
  font-weight: 600; /* Semi-bold, moins lourd */
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  color: #013759;
}

.service-eyebrow {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #013759;
}
