.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 64px;
}
.service-list { border-top: var(--border); }
.service-row {
  display: block;
  width: 100%;
  padding: 18px 20px;
  border: var(--border);
  border-top: none;
  background: var(--cream);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  text-align: left;
}
.service-row.is-active { background: var(--orange); font-weight: 700; }
.service-row:hover:not(.is-active) { background: #e8e4d8; }

.service-detail {
  border: var(--border);
  background: var(--navy);
  padding: 32px;
}
.service-detail h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.service-detail .desc {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(240,238,230,0.75);
  margin-bottom: 28px;
}
.service-detail .included-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange-on-dark);
  margin-bottom: 12px;
  display: block;
}
.service-detail ul { margin-bottom: 32px; }
.service-detail li {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--cream);
  line-height: 2;
}
.service-detail li::before { content: "— "; }

.price-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border: var(--border);
  background: var(--cream);
}
.price-bar .price-block { padding: 14px 20px; }
.price-bar .k { font-family: var(--font-mono); font-size: 12px; color: rgba(10,10,10,0.6); display: block; margin-bottom: 4px; }
.price-bar .v { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.price-bar .btn { border: none; border-left: var(--border); }

/* My Process */
.process-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--orange-on-light);
  display: block;
  margin-bottom: 20px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.process-step { border: var(--border); padding: 16px; }
.process-step .n { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--orange-on-light); }
.process-step .t { font-family: var(--font-mono); font-weight: 700; font-size: 14px; margin: 8px 0 6px; }
.process-step .d { font-family: var(--font-mono); font-size: 13px; color: rgba(10,10,10,0.6); line-height: 1.4; }

@media (max-width: 860px) {
  .services-layout { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
