html {
  scroll-behavior: smooth;
}

.numbers .container .numbers_div .num_left {
  z-index: 1;
}

.prices-section {
  position: relative;
  z-index: 500;
  width: 100%;
  margin: 48px 0 24px;
  padding-top: 10px;
  font-family: 'Montserrat', sans-serif;
}

.prices-section__header {
  margin-bottom: 32px;
}

.prices-section__header h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
}

.prices-section__header p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  max-width: 640px;
  margin: 8px auto 0;
  text-align: center;
}

.prices-carousel {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px 12px;
}

.prices-swiper {
  overflow: hidden;
  width: 100%;
}

.prices-card {
  display: flex;
  gap: 28px;
  padding: 24px 26px;
  min-height: 360px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.267);
  border: none;
  box-shadow: none;
  color: #000;
  font-family: 'Montserrat', sans-serif;
}

.prices-card__image {
  flex-shrink: 0;
  width: 44%;
}

.prices-card__image img {
  width: 100%;
  min-height: 320px;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.prices-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.prices-card__body h4 {
  width: 100%;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #5a9600;
  color: #000;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.prices-card__desc {
  margin-bottom: 16px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.prices-card__price-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 5px;
  background: rgba(90, 150, 0, 0.12);
  border: 1px solid rgba(90, 150, 0, 0.28);
}

.prices-card__price-row span {
  color: #5a9600;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.prices-card__price-row strong {
  color: #000;
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
}

.prices-card__price-row strong em {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.prices-card__price-row--alt {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

.prices-card__price-row--alt span {
  color: #333;
}

.prices-card__included {
  width: 100%;
  margin: 6px 0 16px;
  padding: 12px 14px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.04);
  border-left: 3px solid #71bd00;
}

.prices-card__included h5 {
  margin-bottom: 8px;
  color: #5a9600;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.prices-card__included ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prices-card__included li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.prices-card__included li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #71bd00;
}

.prices-card__btn {
  display: inline-block;
  margin-top: auto;
  padding: 10px 30px;
  width: 200px;
  border-radius: 5px;
  background: linear-gradient(to bottom right, #71bd00 0%, #199400 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  text-align: center;
  transition: 0.5s;
}

.prices-card__btn:hover {
  background: linear-gradient(to bottom right, #199400 0%, #71bd00 100%);
  color: #fff;
}

.prices-carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
}

.prices-carousel__arrow {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  margin: 0 !important;
  flex-shrink: 0;
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border: 2px solid #5a9600 !important;
  border-radius: 50%;
  background: #5a9600 !important;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.prices-carousel__arrow img {
  width: 14px !important;
  height: 22px !important;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.prices-carousel__arrow:hover {
  background: #199400 !important;
  border-color: #199400 !important;
  transform: scale(1.05) !important;
}

.prices-carousel__arrow:active {
  transform: scale(0.97) !important;
}

.prices-carousel__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
}

.prices-carousel__counter {
  min-width: 72px;
  padding: 8px 14px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 150, 0, 0.25);
  color: #000 !important;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.prices-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.prices-carousel__dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.35;
  background: #5a9600;
  transition: 0.2s;
}

.prices-carousel__dots .swiper-pagination-bullet-active {
  opacity: 1;
  background: #199400;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .prices-carousel {
    max-width: 100%;
    padding: 0 8px 10px;
  }

  .prices-card {
    flex-direction: column;
    padding: 20px;
    min-height: 0;
  }

  .prices-card__image {
    width: 100%;
  }

  .prices-card__image img {
    min-height: 240px;
  }

  .prices-card__body h4 {
    font-size: 18px;
  }

  .prices-card__price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .prices-card__price-row strong {
    white-space: normal;
  }

  .prices-card__btn {
    width: 100%;
  }

  .prices-carousel__arrow {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .prices-section__header h3 {
    font-size: 22px;
  }

  .prices-carousel__controls {
    gap: 14px;
  }

  .prices-carousel__counter {
    font-size: 14px;
    min-width: 58px;
    padding: 6px 10px;
  }
}
