:root{
  --accent: #0ac5ba;       /* vert/bleu de ta maquette */
  --text:   #0b0b0b;       /* noir/gris foncé */
  --gap-y:  16px;
  --gap-x:  14px;
}

#eco-content {
  width: 100%;
}

#eco-content svg {
  position: absolute;
  top: 400px;
  left: 0;
  width: 100%;
  z-index: 0;
}

#eco-content .ecoitems {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* chaque cercle */
#eco-content .ecoitem {
  text-align: center;
  flex: 1;
  position: absolute;
  transition: transform 0.3s ease, left 0.3s ease, right 0.3s ease, top 0.3s ease;
  background-size: cover;
  background-position: center;
}

#eco-content div.circle img {
  border-radius: 50%;
}

#eco-content div.circle img.active {
  box-shadow: rgb(10, 200, 190) 0px 3.2px 120px 4.8px;
}

#eco-content div.ecoitem.link-smart {
  left: 300px;
  top: 70px;
}

#eco-content div.ecoitem.link-pro {
  left: 625px;
  top: 100px;
}

#eco-content div.ecoitem.link-myopia {
  left: 1015px;
  top: 130px;
}

#eco-content div.ecoitem.link-vision {
  left: 1373px;
  top: 100px;
}

#eco-content div.ecoitem.link-tracking {
  left: 1730px;
  top: 70px;
}

/* texte sous le cercle */
#eco-content .label {
  font-size: 35px;
}

#eco-content div.content_target {
  display: none;
}

#eco-content div.content_container {
  margin-top: 450px;
  padding: 0 130px 40px;
}

#eco-content div.content_container h1 {
  font-size: 60px;
  font-weight: bold;
  color: #0ac5ba;
}

#eco-content .features{
  list-style: none;
  margin: 0 0 0 40px;
  padding: 0;
  display: grid;
  row-gap: var(--gap-y);
}

#eco-content .feature{
  display: flex;
  align-items: flex-start;           /* aligne le haut du texte avec l’icône */
  column-gap: var(--gap-x);
  margin-bottom: 60px;
}

#eco-content .feature__icon{
  width: 59px;                       /* ajuste si ton PNG est plus grand/petit */
  height: 59px;
  /* flex: 0 0 28px; */
  background-image: url("../images/coche.png");
  background-repeat: no-repeat;
  background-size: contain;          /* couvre sans déformer */
  background-position: center;
  margin-top: 10px;                   /* petit calage vertical */
}

/* Bloc texte (2 lignes) */
#eco-content .feature__text{
  line-height: 1.25;
}

#eco-content .feature__line1{
  margin: 0 0 2px 0;
  color: var(--text);
  font-size: 42px;
  font-weight: bold;
}

#eco-content .feature__line2{
  margin: 0;
  color: var(--accent);
  font-size: 42px;
  font-weight: bold;                  /* bien gras comme sur l’image */
  text-transform: uppercase;
  letter-spacing: .02em;             /* léger tracking */
}

#eco-content #myopia div.flotant {
  position: absolute;
  right: 50px;
  bottom: 150px;
}

#eco-content #myopia div.flotant img {
  height: 1000px;
  /* border-radius: 22px; */
  border: 2px solid var(--accent);
}

#eco-content #pro div.flotant {
  position: absolute;
  right: 50px;
  bottom: 200px;
}

#eco-content #pro div.flotant img {
  height: 750px;
}

#eco-content #smart div.flotant {
  position: absolute;
  right: 125px;
  bottom: -3px;
}

#eco-content #smart div.flotant img {
  height: 1350px;
}

#eco-content #tracking div.flotant {
  position: absolute;
  right: 50px;
  bottom: -3px;
}

#eco-content #vision div.flotant {
  position: absolute;
  right: 0;
  bottom: -3px;
}

#eco-content #vision div.flotant img {
  width: 850px;
}

#eco-content div.stores {
  margin-top: 70px;
  margin-left: 150px;
}

#eco-content #vision div.stores {
  margin-top: 50px;
  margin-left: 150px;
}

#eco-content div.stores img {
  margin-right: 100px;
  width: 300px;
}