/* ============ LAYANAN ============ */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card.featured {
  background: linear-gradient(160deg, #0e0e12, #1f1f2a);
  color: white;
  border: none;
}
.service-card.featured h3,
.service-card.featured .price-num { color: white; }
.service-card.featured .price-cur,
.service-card.featured .price-suffix,
.service-card.featured li { color: rgba(255,255,255,.78); }
.service-card.featured .badge-popular {
  background: var(--accent);
  color: white;
}

.badge-popular {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-num {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-card.featured .service-num { color: rgba(255,255,255,.5); }

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.service-desc {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin-bottom: 22px;
  min-height: 50px;
}
.service-card.featured .service-desc { color: rgba(255,255,255,.7); }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.service-card.featured .price-row {
  border-bottom-color: rgba(255,255,255,.12);
}
.price-cur {
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-weight: 600;
}
.price-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.price-suffix {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-left: 4px;
}

.service-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  padding: 7px 0;
  color: var(--ink-soft);
}
.service-features li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d6e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.service-card .btn {
  width: 100%;
  justify-content: center;
}
.service-card.featured .btn-primary {
  background: white;
  color: var(--ink);
}
.service-card.featured .btn-primary:hover {
  background: var(--accent);
  color: white;
}