/* Pricing component (BEM) */
:root {
  --jx-bg: #0b0b0e;
  --jx-bg-2: #101114;
  --jx-text: #ffffff;
  --jx-muted: #a5a7ad;
  --jx-accent: #b6ff8a;
  --jx-border: #202128;
  --radius-lg: 16px;
  --radius-md: 12px;
}

/* CARD BASE */
.product-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #0e0e0e;
  color: #fff;
  font-family: "Satoshi", sans-serif;
}

.product-card__body {
  padding: 30px;
}

/* IMAGE BLOCK */
.product-card__image img {
  height: 200px;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #b6ff8a;
  color: #000;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
}

/* PRICE TEXT */
.product-card__price {
  font-weight: 500;
  font-size: var(--font-size-60);
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #aad25a;
  flex:0 0 45%;
}
.product-card__title {
  gap: 10px;
}
.product-card__tagline {
  font-weight: 350;
  font-size: var(--font-size-20);
  line-height: 120%;
  color: #bcbec0;
  flex:0 0 45%;
}

.product-card__tagline .product-pagin {
  font-weight: 500;
  color: #d4d4d4;
}

/* FEATURES LIST */
.product-card__list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

/* BUTTON */
.product-card__btn {
  background: linear-gradient(180deg, #d1ff8d 0%, #aef56e 100%);
  color: #000;
  border-radius: 28px;
  padding: 12px 0;
  font-weight: 600;
  font-size: 16px;
}

.product-card__btn:hover {
  opacity: .85;
  color: #000;
}


/* Контейнер табов */
.pricing__tabs {
  background: #f3f3f3;
  padding: 6px 20px;
  border-radius: 40px;
  border: none;
  display: flex;
  width: fit-content;
  gap: 10px;
  margin: 0 auto 20px auto;
}

/* Убираем Bootstrap бордеры */
.pricing__tabs .nav-link {
  border: none !important;
  border-radius: 90px;
  letter-spacing: -0.03em;
  padding: 20px 45px;
  font-weight: 500;
  font-size: 24px;
  color: #333 !important;
  background: transparent;
  transition: all 0.3s ease;
}

/* Активный таб — зелёный, как в макете */
.pricing__tabs .nav-link.active {
  background: #AAD25A;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Hover на НЕактивных */
.pricing__tabs .nav-link:not(.active):hover {
  background: rgba(0, 0, 0, 0.274);
  color: #fff !important;
}

/* Убираем стандартный Bootstrap border-bottom */
.nav-tabs {
  border-bottom: none !important;
}


.pricing-slider-wrapper {
  position: relative;
  padding-top: 20px;
}

.pricing-slider-wrapper .swiper {
  padding: 30px 0 40px;
}

/* Размер активного слайда */
.pricing__slider .swiper-slide {
  transition: transform .35s ease, opacity .35s ease;
  transform: scale(.9);
  filter: brightness(60%);
}

.pricing__slider .swiper-slide-active {
  transform: scale(1);
  filter: brightness(100%);
}

.pricing__slider .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 40%
}

.swiper-pagination.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  background: #f3f3f3;
  padding: 6px 20px;
  border-radius: 40px;
  border: none;
  display: flex;
  width: fit-content;
  gap: 10px;
}

.pagination-bullet {
  border-radius: 90px;
  letter-spacing: -0.03em;
  padding: 11px 30px;
  font-weight: 500;
  font-size: 24px;
  color: #333 !important;
  background: transparent;
  transition: all 0.3s ease;
}

.pagination-bullet.active {
  background: #686868;
  color: white !important;
}