/* Per-service calculator with range sliders */
.svc-calc {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: grid;
  gap: 10px;
}
.svc-calc .svc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: .85rem;
}
.svc-calc .svc-row strong {
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
}
.svc-calc label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  opacity: .7;
  margin-bottom: 4px;
}
.svc-calc input[type="range"] {
  width: 100%;
  accent-color: var(--svc-accent, #0f9f7a);
  height: 28px;
  cursor: pointer;
}
.svc-calc .svc-meta {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  opacity: .65;
}
.svc-calc .svc-hint {
  font-size: .75rem;
  opacity: .55;
}

/* Dark themes */
.svc-calc.on-dark {
  border-top-color: rgba(255,255,255,.12);
}
.svc-calc.on-dark .svc-row strong { color: var(--svc-accent, #1fd6b0); }
