.svc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--sp-7);
  align-items: center;
  padding: var(--sp-8) 0 var(--sp-7);
}
@media (max-width: 880px) { .svc-hero { grid-template-columns: 1fr; } }
.svc-hero h1 { font-size: clamp(2.2rem, 3vw + 1rem, 3.6rem); }

.svc-art-lg {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  border: 1px solid var(--stroke);
  background:
    radial-gradient(80% 60% at 70% 30%, rgba(255, 138, 31, 0.20), transparent 60%),
    radial-gradient(60% 60% at 20% 80%, rgba(52, 229, 255, 0.12), transparent 60%),
    var(--surface);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.svc-art-lg svg { width: 70%; height: 70%; color: var(--accent-hi); }

.feature-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  gap: var(--sp-3);
}
.feature-list li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid var(--stroke);
  border-radius: var(--r-md);
  background: var(--surface);
}
.feature-list svg { color: var(--ok); flex-shrink: 0; margin-top: 2px; }
.feature-list b { font-family: var(--font-display); display: block; color: var(--ink); margin-bottom: 2px; }
.feature-list span { color: var(--ink-muted); font-size: var(--fs-sm); }

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  font-size: var(--fs-sm);
}
.spec-table th, .spec-table td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--stroke);
  vertical-align: top;
}
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th { color: var(--ink-muted); font-weight: 500; width: 40%; }
.spec-table td { color: var(--ink); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.tier {
  padding: var(--sp-5);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  background: var(--surface);
  display: flex; flex-direction: column;
}
.tier--featured {
  border-color: var(--accent);
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(255, 138, 31, 0.15), transparent 60%),
    var(--surface);
}
.tier h3 { margin-bottom: var(--sp-2); }
.tier .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}
.tier ul { list-style: none; padding: 0; margin: 0 0 var(--sp-5); display: grid; gap: var(--sp-2); }
.tier ul li { display: flex; gap: var(--sp-2); color: var(--ink-muted); font-size: var(--fs-sm); }
.tier ul li svg { color: var(--ok); flex-shrink: 0; }
.tier .btn { margin-top: auto; }
