:root {
  --surface: #f9fbfb;
  --border: #e8f2f3;
}

.page-head {
  text-align: center;
  margin: 32px 0 8px;
}
.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.page-head h1 {
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.1;
  margin: 0 0 10px;
}
.subhead {
  color: var(--muted);
  font-size: clamp(15px, 2.4vw, 18px);
  margin: 0 auto;
  max-width: 70ch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.card {
  grid-column: span 12;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.09);
}
@media (min-width: 720px) {
  .card { grid-column: span 6; }
}
@media (min-width: 1024px) {
  .card { grid-column: span 4; }
}
.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.svc-title {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}
.price-pill {
  white-space: nowrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
}
.svc-desc {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 14px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.feature-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 15px;
  padding: 6px 0;
}
.tick {
  margin-top: 2px;
}
.addon {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: calc(var(--radius) - 6px);
  padding: 10px 12px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.cta {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.fineprint {
  font-size: 12px;
  color: var(--muted);
}
