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

.homepage-minimal {
  padding: 32px 20px;
  background: #ffffff;
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
}

/* ГЛАВНЫЙ ЗАГОЛОВОК */
.main-header-minimal {
  text-align: center;
  margin-bottom: 40px;
}

.main-title-minimal {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.main-subtitle-minimal {
  font-size: 18px;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* КАРТОЧКИ ВЫБОРА */
.choice-cards-minimal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.choice-card-minimal {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 24px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}

.choice-card-minimal:hover {
  border-color: #e2e8f0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.premium-choice:hover {
  border-color: #fbbf24;
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.15);
}

.business-choice:hover {
  border-color: #8b5cf6;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

/* ВИЗУАЛЬНАЯ ЧАСТЬ */
.card-visual-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.card-number-minimal {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #64748b;
}

.card-icon-minimal {
  position: relative;
}

/* SIM-КАРТА ВИЗУАЛИЗАЦИЯ */
.sim-visual-minimal {
  width: 80px;
  height: 50px;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

.sim-chip-minimal {
  width: 16px;
  height: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.sim-contacts-minimal {
  position: absolute;
  bottom: 6px;
  left: 8px;
  display: flex;
  gap: 2px;
}

.contact-minimal {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

/* ЛОГОТИПЫ НА BUSINESS SIM */
.fb-logo-minimal {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  background: #1877f2;
  color: white;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.google-logo-minimal {
  position: absolute;
  bottom: 6px;
  right: 8px;
  width: 14px;
  height: 14px;
  background: #4285f4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

/* КОНТЕНТ КАРТОЧКИ */
.card-content-minimal {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-type-minimal {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  margin: 0;
}

.business-type {
  color: #8b5cf6;
}

.card-title-minimal {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.card-desc-minimal {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.card-highlights-minimal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.highlight-minimal {
  font-size: 12px;
  color: #475569;
  background: #f8fafc;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
}

.price-indicator-minimal {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
}

.price-from-minimal {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.price-value-minimal {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
}

/* ДЕЙСТВИЕ */
.card-action-minimal {
  flex-shrink: 0;
}

.action-btn-minimal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

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

.action-btn-minimal:hover {
  transform: scale(1.05);
}

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

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

.btn-label-minimal {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-icon-minimal {
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.action-btn-minimal:hover .btn-icon-minimal {
  transform: translateX(2px);
}

/* ПРЕИМУЩЕСТВА */
.benefits-minimal {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.benefit-minimal {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.benefit-icon-minimal {
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-text-minimal {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.benefit-title-minimal {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.benefit-desc-minimal {
  font-size: 12px;
  color: #64748b;
}

/* СКРЫВАЕМ ВАРИАНТ 2 */
.homepage-minimal {
  display: none !important;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 480px) {
  .choice-card-minimal {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .card-content-minimal {
    align-items: center;
  }
  
  .benefits-minimal {
    flex-direction: column;
    gap: 12px;
  }
  
  .benefit-minimal {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .homepage-minimal {
    padding: 48px 32px;
  }
  
  .choice-cards-minimal {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .benefits-minimal {
    max-width: 600px;
    margin: 32px auto 0;
  }
}
