.why {
  background: var(--color-dark) url("../img/why/why.png") center / cover no-repeat;
  overflow: hidden;
  color: var(--color-white);
}

.why.light {
  background: url("../img/why/why.png") center / cover no-repeat;
  color: var(--color-dark);
}

.why.light .why__text {
  color: rgba(10, 10, 10, 0.8);
}

.why.light .why__title {
  font-size: 48px;
}

.why__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--section-padding-y) 80px;
}

.why__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-shrink: 0;
  width: 660px;
}

.why__badge {
  border-radius: 9999px;
  padding: 7px 16px;
  background: var(--color-primary);
  color: var(--color-white);
  align-self: flex-start;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -1.28px;
}

.why__title em {
  font-style: italic;
  font-weight: 400;
}

.why__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.36px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 589px;
}

.why__form-wrap {
  flex: 1;
  min-width: 0;
}

@media (max-width: 1300px) {
  .why__inner {
    flex-direction: column;
    padding: var(--section-padding-y) var(--section-padding-x);
  }

  .why__content {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .why__badge {
    margin: 0 auto;
  }

  .why__title {
    font-size: 48px;
  }

  .why__form-wrap {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .why__title,
  .why.light .why__title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .why__text {
    font-size: 16px;
  }
}
