/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--soft-shadow);
  transition: 0.2s ease;
}

.service-card:hover {
  border-color: #7dd3fc;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.service-card-top {
  display: grid;
  gap: 12px;
}

.service-card h2 {
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.price-pill {
  display: inline-flex;
  flex-shrink: 0;
  border-radius: 999px;
  background: #f0f9ff;
  padding: 5px 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.timeframe {
  color: var(--soft-muted);
  font-size: 12px;
  font-weight: 600;
}

.service-card > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.good-for {
  margin-top: 20px;
  border-top: 1px solid #f3f4f6;
  padding-top: 20px;
}

.good-for-label {
  color: var(--soft-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.good-for p:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Responsive */

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
