/* === UNIFIED FLUID STACK (NO MEDIA QUERIES) === */
.main-services {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  color: #ffffff;
}

/* Единая карточка: фон и граница как в первой плитке */
.service-card {
  width: 100%;
  background: linear-gradient(145deg, #064e3b 0%, #0f172a 100%);
  border: thin solid #10b981;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  box-sizing: border-box;
}

/* Мета-информация и бэйджи */
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-badge {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  background: red;
  color: white;
}

.card-duration {
  font-size: 1rem;
  color: #9ca3af;
  font-family: monospace;
}

/* Тексты */
.card-title {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0 0 18px 0;
}

/* Подвал плитки */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-block {
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.price-sub {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 3px;
}

/* Единая синяя кнопка (как во втором блоке) */
.btn {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background: #1d4ed8;
}