/* Карточки на странице старта */
.start-card{
  position: relative;
  background: #fff;
  border-color: rgba(0,0,0,.08) !important;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
}

.start-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
}

.start-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 4px;
  background: rgba(25,135,84,.35);
}

/* Чтобы bg-light карточка тоже выглядела аккуратно */
.start-card.bg-light{
  background: #f8f9fa !important;
}

/* Бейджи чуть "дороже" */
.start-card .badge{
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 6px 10px;
  border-color: rgba(0,0,0,.10) !important;
}

/* Кнопки: чуть мягче, чтобы не выглядели "рублено" */
.start-card .btn{
  border-radius: 12px;
}


.start-title{
  display: flex;
  align-items: center;
  gap: 10px;
}

.start-icon{
  font-size: 18px;
  color: rgba(25,135,84,.85);
  line-height: 1;
}