body {
  font-family: "Montserrat", sans-serif;
}

/* =========================================================
   HERO CONSULTING
========================================================= */
.consulting-hero {
  position: relative;
  height: 110vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.consulting-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.consulting-hero__container {
  padding: 60px 24px 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consulting-hero__title {
  font-size: 75px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-white);
}

.consulting-hero__title .line {
  display: block;
  overflow: hidden;
}

.consulting-hero__title strong {
  font-weight: 700;
}

.badge--green-light {
  display: inline-flex;
  background-color: var(--color-green-light);
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  padding: 12px 60px;
  border-radius: 30px;
  width: fit-content;
}

/* =========================================================
   ENGAGEZ
========================================================= */
.engage {
  padding: 100px 0;
  text-align: center;
}

.engage__eyebrow {
  color: var(--color-green);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.engage__title {
  font-size: 42px;
  font-weight: 100;
  color: var(--color-dark-purple);
  max-width: 1200px;
  margin: 0 auto 20px;
  line-height: 1.35;
}

.engage__text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 200;
  color: #2f2f30;
  line-height: 1.8;
}

.engage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  text-align: left;
}

.engage__icon {
  width: 60px;
  height: 50px;
  margin-bottom: 16px;
}

.engage__item-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark-purple);
  margin-bottom: 10px;
}

.engage__item-text {
  font-size: 14px;
  color: #2f2f30;
  line-height: 1.7;
}

/* =========================================================
   POURQUOI CHOISIR
========================================================= */
.why {
  padding: 0 0 80px;
}

.why__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__content {
  max-width: 500px;
}

.why__eyebrow {
  color: var(--color-green);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why__title {
  font-size: 45px;
  font-weight: 700;
  color: var(--color-dark-purple);
  line-height: 1.3;
  margin-bottom: 20px;
}

.why__text {
  font-size: 16px;
  color: #2f2f30;
  line-height: 1.8;
  margin-bottom: 32px;
}

.why__actions {
  display: flex;
  gap: 16px;
}

.why__actions a {
  padding: 24px 30px;
  border-radius: 50px;
}

.why__image img {
  width: 80%;
  border-radius: 16px;
  object-fit: cover;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 992px) {
  .consulting-hero {
    height: 60vh;
  }

  .consulting-hero__container {
    padding: 60px 24px 50px;
  }

  .consulting-hero__title {
    font-size: 42px;
  }

  .badge--green-light {
    font-size: 16px;
    padding: 10px 40px;
  }

  .engage {
  padding: 100px 24px;
  text-align: center;
}

.engage__title {
    font-size: 42px;
    padding: 0 20px;
  }

  .engage__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .why__container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 40px;
  }

  .why__content {
    max-width: 100%;
  }

  .why__image img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .consulting-hero__container {
    padding: 50px 32px 40px;
  }

  .consulting-hero__title {
    font-size: 28px;
  }

  .badge--green-light {
    font-size: 14px;
    padding: 5px 30px;
  }

  .engage {
    padding: 60px 0;
  }

  .engage__title {
    font-size: 28px;
    padding: 0 0px;
  }

  .engage__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
  }

  .why__container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }

  .why__image {
    order: -1;
  }

  .why__image img {
    width: 100%;
  }

  .why__content {
    max-width: 100%;
  }

  .why__title {
    font-size: 28px;
  }

  .why__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .why__actions a {
    flex: 1;
    text-align: center;
  }
}
