/* Services page only: R&D / Routine split blocks */

.service-block__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
@media (max-width: 999px) { .service-block__grid { grid-template-columns: 1fr; } }
.service-block__head { display: flex; align-items: center; gap: 14px; }
.service-block__num {
  width: 44px; height: 44px; background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 14px;
}
.service-block--green .service-block__num { background: var(--green-tint); color: var(--green); }
.service-block__head h2 { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.14; letter-spacing: -0.02em; font-weight: 700; color: var(--navy); }
.service-block__intro { margin-top: 18px; font-size: 16.5px; line-height: 1.65; color: var(--text-body); }
.service-block__client {
  margin-top: 24px; background: var(--bg-light); border: 1px solid var(--border); border-left: 3px solid var(--blue);
  padding: 20px 22px;
}
.service-block--green .service-block__client { background: var(--white); border-left-color: var(--green); }
.service-block__client-title,
.service-block__client-label { font-family: var(--font-mono); font-size: 10.5px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); background: none; padding: 0; border: none; margin-bottom: 8px; display: block; }
.service-block__client p { margin-top: 9px; font-size: 15px; line-height: 1.6; color: var(--text-dark-body); }

.detail-row { padding: 20px 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: 210px 1fr; gap: 6px 24px; align-items: baseline; }
@media (max-width: 759px) { .detail-row { grid-template-columns: 1fr; } }
.detail-row__title { font-family: var(--font-heading); font-size: 16.5px; font-weight: 600; color: var(--navy); }
.detail-row__desc { font-size: 15px; line-height: 1.6; color: var(--text-muted); }
