/* ГЛАВНАЯ СТРАНИЦА 2025 - СОВРЕМЕННЫЙ ДИЗАЙН */

.homepage-2025 {
  display: none !important; /* СКРЫТ - ПОКАЗЫВАЕМ ВАРИАНТ 2 */
  padding: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: calc(100vh - 140px);
}

.category-selection {
  padding: 24px 20px;
}

.selection-title {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin: 0 0 8px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.selection-subtitle {
  font-size: 16px;
  color: #64748b;
  text-align: center;
  margin: 0 0 32px 0;
  font-weight: 500;
}

/* СЕТКА КАТЕГОРИЙ */
.categories-grid-2025 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

/* КАРТОЧКИ КАТЕГОРИЙ */
.category-card-2025 {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.category-card-2025:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.category-card-2025:active {
  transform: translateY(-2px);
}

/* ЗАГОЛОВОК КАРТОЧКИ */
.card-header-2025 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-icon-2025 {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.new-icon {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.business-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.icon-symbol {
  font-size: 28px;
  position: relative;
  z-index: 2;
}

.icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.new-glow {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
}

.business-glow {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
}

.category-card-2025:hover .icon-glow {
  opacity: 1;
}

.card-badge-2025 {
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.new-badge {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
}

.business-badge {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

/* ТЕЛО КАРТОЧКИ */
.card-body-2025 {
  margin-bottom: 24px;
}

.card-title-2025 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.card-description-2025 {
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

/* ФИЧИ */
.card-features-2025 {
  margin-bottom: 20px;
}

.feature-2025 {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.premium-card .feature-2025 {
  border-left-color: #fbbf24;
}

.business-card .feature-2025 {
  border-left-color: #8b5cf6;
}

.feature-2025:hover {
  background: rgba(248, 250, 252, 1);
  transform: translateX(4px);
}

.feature-icon {
  font-size: 16px;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.feature-text {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

/* СТАТИСТИКА */
.card-stats-2025 {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.stat-2025 {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ФУТЕР КАРТОЧКИ */
.card-footer-2025 {
  margin-top: auto;
}

.btn-category-2025 {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-premium {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.btn-business {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn-category-2025:hover {
  transform: translateY(-2px);
}

.btn-premium:hover {
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

.btn-business:hover {
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.btn-text {
  font-weight: 600;
}

.btn-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.btn-category-2025:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-category-2025:hover .btn-glow {
  left: 100%;
}

/* ДЕКОРАЦИЯ КАРТОЧЕК */
.card-decoration-2025 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  pointer-events: none;
  overflow: hidden;
}

.decoration-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.premium-card .decoration-element {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.business-card .decoration-element {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.element-1 {
  width: 60px;
  height: 60px;
  top: -30px;
  right: -30px;
  animation: float 6s ease-in-out infinite;
}

.element-2 {
  width: 40px;
  height: 40px;
  top: 20px;
  right: -20px;
  animation: float 4s ease-in-out infinite reverse;
}

.element-3 {
  width: 30px;
  height: 30px;
  top: -10px;
  right: 30px;
  animation: float 5s ease-in-out infinite;
}

/* ДОПОЛНИТЕЛЬНАЯ ИНФОРМАЦИЯ */
.additional-info-2025 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-card-2025 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.5);
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.info-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.info-text {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  white-space: nowrap;
}

/* АНИМАЦИИ */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

/* АДАПТИВНОСТЬ */
@media (min-width: 768px) {
  .categories-grid-2025 {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .category-card-2025 {
    padding: 32px;
  }
  
  .selection-title {
    font-size: 32px;
  }
  
  .additional-info-2025 {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .info-card-2025 {
    flex: none;
    min-width: 160px;
  }
}

@media (min-width: 1024px) {
  .category-selection {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
  }
}
