/* ============================================================
   Benefits — Expertise / Rapidité / Qualité
   ============================================================ */

.benefits {
  background-color: var(--color-white);
  padding: 80px 0;
}

.benefits__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

.benefits__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}

.benefits__item {
  flex: 1 1 0;
  max-width: 360px;
  padding: 0 36px;
  text-align: center;
}

/* Vertical dividers between columns (live reference) */
.benefits__item + .benefits__item {
  border-left: 1px solid #e3e5ec;
}

.benefits__heading {
  margin: 0 0 16px 0;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: var(--font-weight-semibold);
  color: #c4c8d5;
  text-transform: uppercase;
  line-height: 1.2;
}

.benefits__icon {
  width: 116px;
  height: 111px;
  margin: 0 auto 20px;
  display: block;
}

.benefits__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: var(--color-navy);
  line-height: 22px;
}

.benefits__strong {
  display: block;
  margin-top: 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
  line-height: 22px;
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
  .benefits__grid {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .benefits__item {
    width: 100%;
    max-width: 320px;
    padding: 0;
    text-align: center;
  }

  /* No dividers in the stacked mobile layout */
  .benefits__item + .benefits__item {
    border-left: none;
  }

  .benefits__heading {
    font-size: 24px;
  }

  .benefits__icon {
    margin-left: auto;
    margin-right: auto;
  }
}
