/* Базовые настройки секции */
.ts-pricing-section-e6c65bf1 {
  font-family: 'Nunito', sans-serif;
  background-color: transparent;
  padding: 0 20px 80px 20px;
  color: #1e293b;
  box-sizing: border-box;
}

.ts-pricing-section-e6c65bf1 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ts-title-e6c65bf1 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

/* Контейнер для карточек */
.ts-cards-container-e6c65bf1 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Стилизация карточки */
.ts-price-card-e6c65bf1 {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* Декоративный градиентный фон при наведении (эффект свечения) */
.ts-price-card-e6c65bf1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.ts-price-card-e6c65bf1:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.1);
  border-color: #bae6fd;
}

.ts-price-card-e6c65bf1:hover::before {
  opacity: 1;
}

/* Иконки категорий */
.ts-icon-wrapper-e6c65bf1 {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ts-icon-1-e6c65bf1 { background: #e0f2fe; color: #0284c7; } /* Синий */
.ts-icon-2-e6c65bf1 { background: #fef08a; color: #ca8a04; } /* Желтый/Оранжевый */
.ts-icon-3-e6c65bf1 { background: #dcfce7; color: #16a34a; } /* Зеленый */

/* Текстовая часть карточки */
.ts-card-title-e6c65bf1 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.ts-card-subtitle-e6c65bf1 {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.5;
  flex-grow: 1;
}

/* Блок с ценой */
.ts-price-block-e6c65bf1 {
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px dashed #cbd5e1;
}

.ts-price-prefix-e6c65bf1 {
  font-size: 16px;
  color: #64748b;
  font-weight: 600;
}

.ts-price-amount-e6c65bf1 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin: 8px 0;
  letter-spacing: -0.03em;
}

.ts-price-period-e6c65bf1 {
  font-size: 16px;
  color: #64748b;
  font-weight: 600;
}

/* Кнопка "Все цены" */
.ts-btn-e6c65bf1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ts-btn-outline-e6c65bf1 {
  background: transparent;
  color: #0f172a;
  border: 2px solid #e2e8f0;
}

.ts-price-card-e6c65bf1:hover .ts-btn-outline-e6c65bf1 {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Стрелочка в кнопке */
.ts-btn-e6c65bf1 svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.ts-price-card-e6c65bf1:hover .ts-btn-e6c65bf1 svg {
  transform: translateX(4px);
}

/* Адаптивность */
@media (max-width: 768px) {
  .ts-pricing-section-e6c65bf1 {
    padding: 60px 16px;
  }
  .ts-title-e6c65bf1 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .ts-price-card-e6c65bf1 {
    padding: 32px 24px;
  }
}
