/* =========================================================
   Home — Ready to Explore a Partnership? (CTA final)
   ========================================================= */

.home-cta {
  background-color: #ffffff;
  padding: 100px 40px;
}

.home-cta__container {
  position: relative;
  width: 978px;
  height: 372px;
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
  background-color: var(--base-bon-jour-40);
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding: 56px 64px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e5e9;
  box-shadow: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-cta__container:hover {
  border-style: solid;
  border-width: 1px;
  border-color: #7671E5;
  box-shadow: 0px 8px 16px 0px rgba(85, 79, 224, 0.2);
}

.home-cta__illustration {
  position: absolute;
  top: -60px;
  left: -30px;
  width: 450px;
  flex: none;
}

.home-cta__illustration img {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-10deg);
}

.home-cta__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.home-cta__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--base-cod-gray-90);
  max-width: 338px;
  margin: 0;
}

.home-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  text-decoration: none;
}

.home-cta__button-text {
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--base-cod-gray-90);
  letter-spacing: -0.3px;
  transition: opacity 0.2s ease;
}

.home-cta__button-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  transition: transform 0.2s ease;
}

.home-cta__button:hover .home-cta__button-icon {
  transform: translateX(4px);
}

/* ── Tablet ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .home-cta {
    padding: 64px 24px;
  }

  .home-cta__container {
    padding: 48px 40px;
    gap: 24px;
  }

  .home-cta__illustration {
    top: -40px;
    left: -20px;
  }

  .home-cta__title {
    font-size: 30px;
  }

  .home-cta__button {
    gap: 20px;
  }

  .home-cta__button-text {
    font-size: 48px;
  }

  .home-cta__button-icon {
    width: 44px;
    height: 44px;
  }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .home-cta {
    padding: 30px 20px;
  }

  .home-cta__container {
    width: 100%;
    max-width: 350px;
    height: auto;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 28px 24px 32px;
    border-radius: 32px;
    gap: 0;
  }

  .home-cta__illustration {
    top: -16px;
    left: auto;
    right: -10px;
    width: 150px;
  }

  .home-cta__content {
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    max-width: 220px;
  }

  .home-cta__title {
    font-size: 26px;
    max-width: 190px;
  }

  .home-cta__button {
    gap: 12px;
  }

  .home-cta__button-text {
    font-size: 26px;
  }

  .home-cta__button-icon {
    width: 36px;
    height: 36px;
  }
}
