.pricing-section {
  background: linear-gradient(145deg, var(--bg) 0%, #ffffff 100%);
  max-width: 900px;
  margin: 3rem auto;
  padding: 2.5rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-section::before {
  content: '💰';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 6rem;
  opacity: 0.08;
  animation: floatIcon 6s ease-in-out infinite alternate;
}

@keyframes floatIcon {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(15px, 15px) rotate(8deg); }
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Фильтр категорий */
.category-filter {
  text-align: right;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .category-filter {
    text-align: center;
    margin-bottom: 1rem;
  }
}

.category-filter label {
  font-weight: 600;
  margin-right: 0.5rem;
  color: var(--text);
}

.category-filter select {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--primary-light);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.category-filter select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(0,119,204,0.2);
  outline: none;
}

/* Подсказка */
.pricing-hint {
  background: var(--primary-light);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.pricing-hint:hover {
  transform: translateY(-3px);
}

.pricing-hint p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Список цен */
.price-category {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.price-category h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--primary-light);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--primary-light);
  transition: background 0.3s, transform 0.2s;
}

.price-item:hover {
  background: var(--primary-light);
  transform: translateX(4px);
}

.price-main {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.price-main .price {
  font-weight: 600;
  color: var(--accent);
  transition: color 0.3s, transform 0.2s;
}

.price-item:hover .price-main .price {
  color: var(--primary);
  transform: scale(1.05);
}

.comment {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Адаптивность */
@media (max-width: 768px) {
  .pricing-section {
    padding: 2rem 1rem;
  }

  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .price-main {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .pricing-section h2 {
    font-size: 2rem;
  }

  .price-category h3 {
    font-size: 1.4rem;
  }
}
