/* Services page */

.page-head {
  padding: clamp(60px, 9vw, 110px) 0 40px;
}
.page-head-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}

/* Service rows */
.srv-row {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.srv-row:last-child { border-bottom: 1px solid var(--line); }

.srv-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 8px;
}
.srv-num { color: var(--ink); font-weight: 600; }
.srv-cat { color: var(--accent-deep); }

.srv-main h2 {
  margin-bottom: 18px;
}
.srv-main .lede {
  margin-bottom: 32px;
  max-width: 60ch;
}

.srv-deliverables {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.srv-deliverables li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
}
.srv-deliverables li span {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent-deep);
  flex: 0 0 22px;
}

.srv-meta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.srv-meta-row b { color: var(--ink); font-weight: 500; margin-right: 8px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 10px; }
.srv-cta {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.srv-cta:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

.srv-card {
  background: var(--ink);
  color: var(--bg);
  padding: 24px;
  font-family: var(--f-mono);
  font-size: 12px;
}
.srv-card header {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
}
.srv-card ul { list-style: none; display: grid; gap: 10px; }
.srv-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: color-mix(in srgb, var(--bg) 80%, transparent);
}
.srv-card .ok { color: var(--accent); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
}
.price {
  border-right: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-feature {
  background: color-mix(in srgb, var(--bg) 4%, transparent);
}
.price header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.price-tier {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--bg) 65%, transparent);
}
.price-feature .price-tier { color: var(--accent); }
.price-badge {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  background: var(--accent);
  color: var(--ink);
  padding: 4px 10px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
  padding-bottom: 24px;
}
.price-amount .amt {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-amount .per {
  font-family: var(--f-mono);
  font-size: 12px;
  color: color-mix(in srgb, var(--bg) 55%, transparent);
}
.price-blurb {
  font-size: 15px;
  color: color-mix(in srgb, var(--bg) 75%, transparent);
  line-height: 1.5;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.price-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.price-list li {
  font-size: 14px;
  color: color-mix(in srgb, var(--bg) 85%, transparent);
  position: relative;
  padding-left: 18px;
}
.price-list li::before {
  content: "+";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-family: var(--f-mono);
}

.btn-light {
  background: transparent;
  color: var(--bg);
  border-color: color-mix(in srgb, var(--bg) 30%, transparent);
}
.btn-light:hover { background: var(--bg); color: var(--ink); box-shadow: 4px 4px 0 var(--accent); }

@media (max-width: 980px) {
  .page-head-grid { grid-template-columns: 1fr; }
  .srv-row { grid-template-columns: 1fr; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .srv-deliverables { grid-template-columns: 1fr; }
}
