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

.nw-offer {
  --nw-offer-bg-1: #F5593D;
  --nw-offer-bg-2: #FF6549;
  --nw-offer-content: 55%;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  padding: 46px;
  border-radius: 24px;
  background: linear-gradient(115deg, var(--nw-offer-bg-1) 0%, var(--nw-offer-bg-2) 100%);
  color: #FFFFFF;
  font-family: inherit;
}

.nw-offer__content {
  position: relative;
  z-index: 5;
  width: var(--nw-offer-content);
  max-width: 760px;
}

.nw-offer--no-visual .nw-offer__content {
  width: 100%;
  max-width: 940px;
}

.nw-offer__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #FFFFFF;
  color: #F5593D;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.nw-offer__title {
  max-width: 760px;
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(36px, 3.5vw, 58px);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.045em;
}

.nw-offer__title-accent {
  display: block;
  margin-top: 7px;
  color: #202020;
}

.nw-offer__subtitle {
  max-width: 620px;
  margin-top: 18px;
  color: #FFFFFF;
  font-size: 17px;
  line-height: 1.45;
}

.nw-offer__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 700px;
  margin-top: 25px;
}

.nw-offer__feature {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.nw-offer__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #F5593D;
}

.nw-offer__feature-icon i {
  font-size: 22px;
}

.nw-offer__feature-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nw-offer__feature-text {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.28;
}

.nw-offer__mobile-person {
  display: none;
}

.nw-offer__bottom {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.28);
}

.nw-offer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 58px;
  padding: 18px 28px;
  border-radius: 14px;
  background: #1F2126;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.nw-offer__button:hover {
  transform: translateY(-2px);
  background: #17191D;
  color: #FFFFFF;
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}

.nw-offer__button--static {
  cursor: default;
}

.nw-offer__phone-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nw-offer__phone-label {
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.2;
}

.nw-offer__phone {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.nw-offer__phone:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.nw-offer__visual {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: calc(100% - var(--nw-offer-content) + 7%);
  height: 100%;
  pointer-events: none;
}



.nw-offer__person {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: -44px;
  width: auto;
  height: 430px;
  max-width: 78%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 20px rgba(0,0,0,.16));
}

.nw-offer__deco {
  position: absolute;
  z-index: 1;
  right: 2%;
  width: 160px;
  height: 160px;
  border: 22px solid rgba(255,255,255,.07);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
  pointer-events: none;
}

.nw-offer__deco--one {
  top: -45px;
}

.nw-offer__deco--two {
  bottom: -65px;
  right: 23%;
}

@media (max-width: 1024px) {
  .nw-offer {
    min-height: 440px;
  }

  .nw-offer__content {
    width: 60%;
  }

  .nw-offer__visual {
    width: 48%;
  }

  .nw-offer__features {
    gap: 12px;
  }

  .nw-offer__feature {
    gap: 8px;
  }

  .nw-offer__feature-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .nw-offer__bottom {
    gap: 22px;
  }
}

@media (max-width: 767px) {
  .nw-offer {
    min-height: 0;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .nw-offer__content,
  .nw-offer--no-visual .nw-offer__content {
    width: 100%;
    max-width: none;
  }

  .nw-offer__eyebrow {
    margin-bottom: 16px;
  }

  .nw-offer__title {
    font-size: 36px;
    line-height: 1;
  }

  .nw-offer__subtitle {
    margin-top: 15px;
    font-size: 15px;
  }

  .nw-offer__features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .nw-offer__feature-text {
    font-size: 14px;
  }

  .nw-offer__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
    padding-top: 22px;
  }

  .nw-offer__button {
    width: 100%;
    min-width: 0;
  }

  .nw-offer__phone-wrap {
    align-items: center;
    text-align: center;
  }

  .nw-offer--hide-visual-mobile .nw-offer__visual {
    display: none;
  }

  .nw-offer:not(.nw-offer--hide-visual-mobile) {
    padding-bottom: 260px;
  }

  .nw-offer:not(.nw-offer--hide-visual-mobile) .nw-offer__visual {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 250px;
  }

  .nw-offer:not(.nw-offer--hide-visual-mobile) .nw-offer__person {
    right: 3%;
    bottom: -30px;
    height: 270px;
  }

  .nw-offer--mobile-person-before-button {
    padding-bottom: 28px !important;
  }

  .nw-offer--mobile-person-before-button .nw-offer__visual {
    display: none !important;
  }

  .nw-offer--mobile-person-before-button .nw-offer__mobile-person {
    display: flex;
    position: relative;
    z-index: 6;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    overflow: visible;
  }

  .nw-offer--mobile-person-before-button .nw-offer__mobile-person img {
    display: block;
    width: 78%;
    max-width: 100%;
    max-height: 320px;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(var(--nw-mobile-person-x, 0));
    transform-origin: center bottom;
    filter: drop-shadow(0 14px 18px rgba(0,0,0,.14));
  }

  .nw-offer--mobile-person-before-button.nw-offer--mobile-person-flip .nw-offer__mobile-person img {
    transform: translateX(var(--nw-mobile-person-x, 0)) scaleX(-1);
  }
}
