.nw-why,
.nw-why * {
  box-sizing: border-box;
}

.nw-why {
  width: 100%;
  padding: 90px 24px;
  background: transparent;
  color: #171717;
  font-family: inherit;
}

.nw-why__container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.nw-why__head {
  width: 100%;
  margin: 0 0 42px;
  text-align: center;
}

.nw-why__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #F5593D;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.nw-why__eyebrow::before,
.nw-why__eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: #F5593D;
}

.nw-why--no-eyebrow-lines .nw-why__eyebrow::before,
.nw-why--no-eyebrow-lines .nw-why__eyebrow::after {
  display: none;
}

.nw-why__title {
  margin: 24px 0 20px;
  color: #171717;
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.nw-why__title-accent {
  color: #F5593D;
}

.nw-why__subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #696969;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.nw-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 24px;
}

.nw-why__card {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #ECECEC;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(22, 22, 22, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.nw-why__card:hover {
  transform: translateY(-4px);
  border-color: #F5593D;
  box-shadow: 0 18px 44px rgba(22, 22, 22, .09);
}

.nw-why--vertical .nw-why__card {
  flex-direction: column;
  align-items: flex-start;
}

.nw-why__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 115px;
  width: 115px;
  height: 115px;
  min-width: 0;
}

.nw-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 20px;
  background: #FFF1EE;
  color: #F5593D;
}

.nw-why__icon i {
  font-size: 44px;
  line-height: 1;
}

.nw-why__icon svg {
  display: block;
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.nw-why__image {
  display: block;
  width: 110px;
  height: 110px;
  max-width: 100%;
  object-fit: contain;
}

.nw-why__content {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.nw-why__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 6px 9px;
  border-radius: 6px;
  background: #F5593D;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.nw-why__card-title {
  margin: 0;
  color: #171717;
  font-size: 21px;
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.nw-why__card-text {
  margin-top: 12px;
  color: #6D6D6D;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.48;
}

.nw-why__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  color: #333333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.nw-why__footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #F5593D;
}

.nw-why__footer-icon i {
  font-size: 24px;
}

.nw-why__footer-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nw-why__footer-divider {
  opacity: .5;
}

@media (max-width: 1024px) {
  .nw-why {
    padding: 72px 22px;
  }

  .nw-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nw-why__card {
    min-height: 215px;
  }
}

@media (max-width: 767px) {
  .nw-why {
    padding: 58px 16px;
  }

  .nw-why__head {
    margin-bottom: 30px;
  }

  .nw-why__eyebrow {
    gap: 10px;
    font-size: 11px;
  }

  .nw-why__eyebrow::before,
  .nw-why__eyebrow::after {
    width: 20px;
  }

  .nw-why__title {
    margin-top: 18px;
    margin-bottom: 14px;
    font-size: clamp(34px, 11vw, 46px);
  }

  .nw-why__subtitle {
    font-size: 15px;
  }

  .nw-why__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nw-why__card {
    align-items: center;
    min-height: 0;
    padding: 20px;
  }

  .nw-why__number {
    min-width: 34px;
    min-height: 27px;
    margin-bottom: 10px;
    padding: 5px 7px;
    font-size: 12px;
  }

  .nw-why__card-title {
    font-size: 17px;
  }

  .nw-why__card-text {
    margin-top: 7px;
    font-size: 13px;
  }

  .nw-why__footer {
    margin-top: 26px;
    gap: 9px;
    font-size: 13px;
  }
}
