/* Блок тарифов - улучшенная версия */
.pricing-section-area {
  padding: 60px 0;
  /* background: linear-gradient(180deg, rgba(3, 6, 10, 0.95) 0%, rgba(10, 15, 25, 0.98) 100%); */
  position: relative;
}

/* Панель управления тарифами */
.pricing-control-panel {
  margin-bottom: 30px;
}

.control-panel-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(144, 43, 241, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.control-panel-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.pricing-tabs-section {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.callcenter-option-section {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.callcenter-option-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(144, 43, 241, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.callcenter-option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.15) 0%, rgba(178, 79, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.callcenter-option-card:hover {
  border-color: rgba(144, 43, 241, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.callcenter-option-card:hover::before {
  opacity: 1;
}

/* Активное состояние (когда чекбокс отмечен) */
.callcenter-checkbox:checked + .callcenter-option-card {
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.25) 0%, rgba(178, 79, 255, 0.15) 100%);
  border-color: rgba(144, 43, 241, 0.7);
  box-shadow: 0 8px 25px rgba(144, 43, 241, 0.35);
}

.callcenter-checkbox:checked + .callcenter-option-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 1;
}


.callcenter-checkbox-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.callcenter-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-custom {
  display: block;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(144, 43, 241, 0.5);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 11px;
  height: 11px;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  border-radius: 3px;
  transition: transform 0.3s ease;
}

.callcenter-checkbox:checked + .callcenter-option-card .checkbox-custom {
  border-color: #902bf1;
  background: rgba(144, 43, 241, 0.3);
  box-shadow: 0 0 10px rgba(144, 43, 241, 0.5);
}

.callcenter-checkbox:checked + .callcenter-option-card .checkbox-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.callcenter-option-card:hover .checkbox-custom {
  border-color: rgba(144, 43, 241, 0.7);
  box-shadow: 0 0 10px rgba(144, 43, 241, 0.3);
}

.callcenter-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.15) 0%, rgba(178, 79, 255, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #b24fff;
  transition: all 0.3s ease;
}

.callcenter-option-card:hover .callcenter-icon {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.25) 0%, rgba(178, 79, 255, 0.2) 100%);
}

.callcenter-checkbox:checked + .callcenter-option-card .callcenter-icon {
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(144, 43, 241, 0.5);
}

.callcenter-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.callcenter-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.callcenter-description {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-weight: 400;
}

.callcenter-checkbox:checked + .callcenter-option-card .callcenter-description {
  color: rgba(255, 255, 255, 0.7);
}

/* Адаптив для панели управления */
@media (max-width: 992px) {
  .control-panel-inner {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .pricing-tabs-section {
    width: 100%;
    justify-content: center;
  }

  .callcenter-option-section {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .callcenter-option-card {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .control-panel-inner {
    padding: 15px;
    gap: 15px;
  }

  .callcenter-option-card {
    padding: 10px 20px;
    gap: 12px;
  }

  .callcenter-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .callcenter-title {
    font-size: 14px;
  }

  .callcenter-description {
    font-size: 11px;
  }

  .checkbox-custom {
    width: 22px;
    height: 22px;
  }

  .checkbox-custom::after {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .control-panel-inner {
    padding: 12px;
  }

  .callcenter-option-card {
    padding: 10px 15px;
    gap: 10px;
  }

  .callcenter-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .callcenter-title {
    font-size: 13px;
  }

  .callcenter-description {
    font-size: 10px;
  }

  .checkbox-custom {
    width: 20px;
    height: 20px;
  }

  .checkbox-custom::after {
    width: 9px;
    height: 9px;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.pricing-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 28px 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: fit-content;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card::before {
  content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 100%;
    height: 120%;
    opacity: 0.12;
    background: conic-gradient(
        from 220deg,
        rgb(85, 51, 207) 0deg,
        rgb(146, 64, 222) 120deg,
        rgba(64, 64, 222, 1) 240deg,
        rgb(160, 123, 245) 360deg
    );
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.pricing-card:hover {
  border-color: rgba(144, 43, 241, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 20px 20px rgba(145, 43, 241, 0.027);
}

/* Выделенная карточка */
.pricing-card-featured {
  border: 2px solid rgba(144, 43, 241, 0.7);
  background: rgba(144, 43, 241, 0.08);
  transform: scale(1.03);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 60px rgba(144, 43, 241, 0.4);
}

.featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(144, 43, 241, 0.5);
  z-index: 2;
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

.featured-label i {
  font-size: 14px;
  animation: rotate-crown 4s ease-in-out infinite;
}

@keyframes rotate-crown {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.pricing-type-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.pricing-type-basic {
  background: rgba(74, 144, 226, 0.15);
  border: 1px solid rgba(74, 144, 226, 0.3);
  color: #4a90e2;
}

.pricing-type-pro {
  background: rgba(144, 43, 241, 0.2);
  border: 1px solid rgba(144, 43, 241, 0.4);
  color: #b24fff;
}

.pricing-type-premium {
  background: rgba(255, 107, 107, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.pricing-icon-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(144, 43, 241, 0.4);
  transition: all 0.4s ease;
  position: relative;
}

.pricing-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid rgba(144, 43, 241, 0.3);
  animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(144, 43, 241, 0.6);
}

.pricing-title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-description {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-price-box {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 18px 15px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.15) 0%, rgba(144, 43, 241, 0.05) 100%);
  border: 1px solid rgba(144, 43, 241, 0.3);
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.price-amount {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 50%, #ff6ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Анимация при смене значения */
.price-amount.changing {
  opacity: 0;
  transform: translateY(-10px);
}

.price-period {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(144, 43, 241, 0.3) 50%, transparent 100%);
  margin: 18px 0;
  position: relative;
  z-index: 1;
}

.pricing-info-box {
  position: relative;
  z-index: 1;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.1) 0%, rgba(144, 43, 241, 0.05) 100%);
  border: 1px solid rgba(144, 43, 241, 0.25);
  transition: all 0.3s ease;
}

.pricing-info-box:hover {
  border-color: rgba(144, 43, 241, 0.4);
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.15) 0%, rgba(144, 43, 241, 0.08) 100%);
  transform: translateX(3px);
}

.info-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.info-value {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 50%, #ff6ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  white-space: nowrap;
  transition: font-size 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* Уменьшенный размер для больших чисел (миллионы) */
.info-value.large-price {
  font-size: 26px;
}

/* Анимация при смене значения */
.info-value.changing {
  opacity: 0;
  transform: translateY(-10px);
}

.pricing-features-list {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-bottom: 30px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.pricing-feature:hover {
  transform: translateX(5px);
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(144, 43, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon i {
  font-size: 12px;
  color: #902bf1;
}

.pricing-feature span {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-cta {
  position: relative;
  z-index: 1;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(144, 43, 241, 0.15);
  border: 2px solid rgba(144, 43, 241, 0.4);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pricing-btn:hover {
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(144, 43, 241, 0.4);
  color: #ffffff;
}

.pricing-btn i {
  transition: transform 0.3s ease;
}

.pricing-btn:hover i {
  transform: translateX(5px);
}

.pricing-btn-featured {
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(144, 43, 241, 0.3);
}

.pricing-btn-featured:hover {
  background: linear-gradient(135deg, #b24fff 0%, #ff6ec7 100%);
  box-shadow: 0 12px 30px rgba(144, 43, 241, 0.5);
}

/* Информационные карточки */
.pricing-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(144, 43, 241, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(144, 43, 241, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(144, 43, 241, 0.15);
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.2) 0%, rgba(144, 43, 241, 0.1) 100%);
  border: 2px solid rgba(144, 43, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #902bf1;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.info-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.info-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 1400px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-card-featured {
    transform: scale(1);
  }

  .pricing-card-featured:hover {
    transform: scale(1) translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 35px 25px;
  }

  .pricing-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .pricing-title {
    font-size: 24px;
  }

  .price-amount {
    font-size: 48px;
  }

  .pricing-feature span {
    font-size: 14px;
  }

  .pricing-info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .pricing-info-box {
    padding: 18px;
    margin-bottom: 18px;
  }

  .info-label {
    font-size: 12px;
  }

  .info-value {
    font-size: 28px;
  }

  .info-value.large-price {
    font-size: 22px;
  }
}

@media (max-width: 430px) {
  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-icon {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }

  .pricing-title {
    font-size: 22px;
  }

  .price-amount {
    font-size: 42px;
  }

  .featured-label {
    font-size: 11px;
    padding: 6px 16px;
  }

  .pricing-btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  .info-card {
    padding: 20px;
    gap: 15px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .info-content h4 {
    font-size: 16px;
  }

  .info-content p {
    font-size: 13px;
  }

  .pricing-info-box {
    padding: 16px;
    margin-bottom: 16px;
  }

  .info-label {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .info-value {
    font-size: 24px;
  }

  .info-value.large-price {
    font-size: 19px;
  }
}

/* Переключатель тарифов */
.pricing-tabs {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(144, 43, 241, 0.35);
  border-radius: 14px;
}

.pricing-tab-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-tab-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.pricing-tab-btn:hover {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-tab-btn:hover i {
  transform: scale(1.1);
}

.pricing-tab-btn.active {
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(144, 43, 241, 0.4);
}

.pricing-tab-btn.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  pointer-events: none;
}

/* Контейнер слайдера */
.pricing-slider-container {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.pricing-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
  pointer-events: none;
}

.pricing-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease-in-out, visibility 0s;
}

/* Дополнительные классы для более плавной анимации */
.pricing-slide.fade-out {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.pricing-slide.fade-in {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Градиент для выделения слова */
.gradient-text {
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 50%, #ff6ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 16px;
}

/* Адаптивность для переключателя */
@media (max-width: 768px) {
  .pricing-tabs {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 350px;
    padding: 6px;
  }

  .pricing-tab-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 13px;
  }

  .pricing-tab-btn i {
    font-size: 14px;
  }

  .pricing-slider-container {
    min-height: 500px;
  }
}

@media (max-width: 576px) {
  .pricing-tabs {
    max-width: 100%;
    padding: 5px;
  }

  .pricing-tab-btn {
    font-size: 12px;
    padding: 9px 15px;
    gap: 6px;
  }

  .pricing-tab-btn i {
    font-size: 13px;
  }

  .pricing-slider-container {
    min-height: 450px;
  }
}

