:root {
  --navy: #143468;
  --yellow: #fdbd1f;
  --light-blue: #eef6ff;
  --cream: #fff7e8;
  --white: #ffffff;
  --text: #17315e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
}

.icimondo-pricing {
  width: 100%;
}

/* HERO */

.pricing-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 2rem 1.25rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.pricing-hero__text h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pricing-hero__text p {
  margin: 1.6rem 0 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.pricing-hero__text strong {
  color: var(--yellow);
}

.pricing-hero__image img {
  width: 100%;
  height: 315px;
  display: block;
  object-fit: cover;
  border-radius: 28px;
}

/* OFFRES */

.pricing-offers {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 1rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: stretch;
}

.free-offer,
.business-offer {
  border-radius: 28px;
  padding: 2.6rem 2.8rem;
}

.free-offer {
  background: var(--light-blue);
  color: var(--navy);
}

.free-offer__price {
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1;
}

.free-offer h2 {
  margin: 1rem 0 0;
  font-size: 1.35rem;
  color: var(--navy);
}

.yellow-line {
  width: 52px;
  height: 5px;
  margin: 1.25rem 0 1.6rem;
  background: var(--yellow);
  border-radius: 30px;
}

.free-offer p {
  margin: 0;
  max-width: 500px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.free-offer__separator {
  height: 1px;
  margin: 2.2rem 0 1.6rem;
  background: rgba(20, 52, 104, 0.15);
}

.free-offer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.heart {
  font-size: 2rem;
  color: var(--navy);
}

.free-offer__bottom strong {
  font-size: 1.05rem;
}

/* ENTREPRISE */

.business-offer {
  background: var(--navy);
  color: var(--white);
}

.business-offer h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 0.98;
  font-weight: 800;
}

.business-offer p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.business-offer strong {
  color: var(--yellow);
}

.business-cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.9rem 1.7rem;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.business-cta:hover {
  transform: translateY(-2px);
}

/* CONTACT */

.pricing-contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pricing-contact__info {
  background: var(--cream);
  padding: 2rem 2.2rem;
  border-radius: 28px 0 0 28px;
}

.pricing-contact__eyebrow {
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pricing-contact__info h2 {
  margin: 0.35rem 0 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
}

.pricing-contact__email {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.35rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
}

.pricing-contact__email span {
  color: var(--yellow);
  font-size: 1.3rem;
}

.pricing-contact__yellow {
  min-height: 150px;
  background: var(--yellow);
  border-radius: 0 28px 28px 0;
}

/* RESPONSIVE */

@media screen and (max-width: 900px) {
  .pricing-hero,
  .pricing-offers,
  .pricing-contact {
    grid-template-columns: 1fr;
  }

  .pricing-hero {
    padding-top: 3rem;
  }

  .pricing-hero__image img {
    height: 300px;
  }

  .pricing-contact__info {
    border-radius: 28px 28px 0 0;
  }

  .pricing-contact__yellow {
    border-radius: 0 0 28px 28px;
  }
}

@media screen and (max-width: 560px) {
  .pricing-hero,
  .pricing-offers,
  .pricing-contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .free-offer,
  .business-offer {
    padding: 2rem 1.4rem;
  }

  .pricing-contact__info {
    padding: 1.7rem 1.4rem;
  }

  .pricing-hero__image img {
    height: 230px;
  }
}