.subscriptions {
  padding: 80px 60px 26px;
  background: linear-gradient(180deg, #E3F1FF 0%, #F4F9FF 100%);
  position: relative;
}

/* Заголовок */
.subscriptions h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

.features-list > p {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
}

.subscriptions-icons {
  position: absolute;
  z-index: 0;
  top: 30px;
  right: 5px;
}

/* Информационный блок */
.features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 26px;
  background: radial-gradient(
    64.68% 110.5% at 50% 50%, 
    #73CAFF 0%, 
    #3576C2 100%
  );
  position: relative;
  z-index: 5;
}

.features-list {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0;
  margin: 0;
}

.features li {
  display: flex;
  gap: 16px;
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.features li:last-child {
  margin-bottom: 0;
}

.features .icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  background-color: #fff;
  border-radius: 50%;
}

/* Картинка справа */
.features-card {
  flex-shrink: 0;
  width: 243px;
  height: 161px;
  position: relative;
  left: 32px;
  bottom: 42px;
  gap: 0px;
  border-radius: 12.88px 0px 0px 0px;
  opacity: 0px;
}

.features-card img {
  width: 100%;
}

/* Заголовок блока с ценами */
.pricing-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 35px;
}

/* Блок с ценами */
.pricing {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Уменьшен промежуток для лучшего выравнивания */
  width: 100%;
}

.plan {
  display: flex;
  align-items: start;
  flex-direction: column;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  transition: box-shadow 0.3s ease;
  position: relative;
  width: 268px;
}

/* Синее свечение появляется только при наведении */
.popular {
  box-shadow: 0px 0px 20px 0px #559bedb2;
}

.plan h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.plan p {
  font-size: 48px;
  color: #559BED;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan span {
  font-size: 20px;
  color: #A5B4CB;
}

.plan .discount {
  margin: 30px 0 0 auto;
  background-color: #4FC061;
  color: white;
  border-radius: 20px;
  font-size: 16px;
  padding: 6px 12px;
}

.plan .tag {
  position: absolute;
  top: -15px;
  right: -5px;
  background-color: #4FC061;
  color: white;
  padding: 8px 23px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 5;
}

@media screen and (max-width: 900px) {
  .features {
    flex-direction: column;
    height: 540px;
    position: relative;
    overflow: hidden; /* Скрывает выходящие части */
  }

  .features-card img {
    position: absolute;
    left: 70px;
    scale: 0.75;
  }
}

@media screen and (max-width: 760px) {
  .subscriptions {
    padding: 60px 16px 40px;
  }

  .subscriptions-icons {
    top: 0;
    right: -100px;
  }

  .features {
    padding: 24px 24px 0;
    margin-bottom: 34px;
  }

  .features-card {
    width: 100%;
    position: relative;
  }

  .subscriptions h1 {
    font-size: 28px;
  }

  .pricing-title {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .pricing {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: visible;
    height: 280px;
    align-items: center;
    padding: 16px 0;
    width: 100%;
  }

  .pricing::-webkit-scrollbar {
    display: none;
  }

  .plan {
    min-width: 70%;
    height: 100%;
  }

  .plan h3 {
    font-size: 16px;
  }

  .plan p {
    margin-bottom: 0;
  }

  .plan span {
    font-size: 16px;
  }

  .plan .discount {
    margin: auto 0 0 auto;
  }

  .features-list > p {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .features ul li {
    font-size: 18px;
    gap: 15px;
  }
}

@media screen and (max-width: 600px) {
  .features {
    height: 450px;
  }

  .features-list > p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .features ul li {
    font-size: 14px;
    gap: 13px;
    margin-bottom: 14px;
  }

  .features .icon {
    width: 28px;
    height: 28px;
  }
}
