/* =============================================================
   SINGLE SERVICE — layout, content, features, process list
   ============================================================= */

/* ── Layout ─────────────────────────────────────────────────── */
.svc-page    { padding: 48px 0; }
.svc-layout  { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.svc-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }

.svc-thumbnail     { margin: 0 0 24px; border-radius: var(--radius); overflow: hidden; padding: 4px 0; }
.svc-thumbnail img { border-radius: var(--radius); display: block; }

/* ── Content ────────────────────────────────────────────────── */
.svc-content    { font-size: .95rem; line-height: 1.8; color: var(--text-2); }
.svc-content h2 { font-size: 1.3rem; font-weight: 800; color: var(--blue); margin: 28px 0 12px; }
.svc-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.svc-content ul { padding-left: 18px; list-style: disc; }
.svc-content ul li { margin-bottom: 5px; }
.svc-content img   { width: 100%; height: auto; border-radius: var(--radius); display: block; margin: 16px 0; }
.svc-content a     { color: var(--green); }
.svc-content a:hover { color: var(--blue); }

/* Service chips */
.svc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.svc-chip  { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: 6px 12px; font-size: .82rem; font-weight: 600; color: #fff; }
.svc-chip svg       { color: rgba(255,255,255,.6); flex-shrink: 0; }
.svc-chip-label     { font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.5); margin-right: 2px; }

/* ── Feature items (2-col grid) ─────────────────────────────── */
.svc-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 20px 0; }
.svc-feat-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; background: var(--off-white);
  border-radius: 10px; border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.svc-feat-item:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.svc-feat-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--blue); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.svc-feat-icon svg { width: 20px; height: 20px; color: #fff; }
.svc-feat-text { flex: 1; min-width: 0; }
.svc-feat-text h4 { font-size: .875rem; font-weight: 800; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.svc-feat-text p  { font-size: .78rem; color: var(--text-2); line-height: 1.55; margin: 0; }

/* ── Process list (vertical numbered steps) ─────────────────── */
.process-list { list-style: none; padding: 0; counter-reset: proc-svc; }
.process-list-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border); position: relative;
}
.process-list-item:last-child  { border: none; margin: 0; padding-bottom: 0; }
.process-list-item:not(:last-child)::after {
  content: ''; position: absolute; left: 18px; top: 40px; bottom: 0;
  width: 2px; background: rgba(45,158,68,.2);
}
.process-list-num {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%; border: 2px solid var(--green);
  color: var(--green); font-weight: 900; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  background: #fff; position: relative; z-index: 1;
  counter-increment: proc-svc;
}
.process-list-num::before { content: counter(proc-svc, decimal-leading-zero); }
.process-list-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.process-list-item p  { font-size: .8rem; color: var(--text-2); line-height: 1.55; margin: 0; }

/* ── Other services sidebar ─────────────────────────────────── */
.other-services { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; margin-bottom: 20px; }
.other-services h4 { font-size: .82rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; margin-bottom: 12px; }
.other-svc-list li a { display: flex; align-items: center; gap: 6px; padding: 7px 0; font-size: .875rem; color: var(--text-2); border-bottom: 1px solid var(--light); }
.other-svc-list li:last-child a { border: none; }
.other-svc-list li a:hover { color: var(--blue); }

/* Responsive */
@media (max-width: 1024px) {
  .svc-layout  { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
}
@media (max-width: 600px) {
  .svc-features-grid { grid-template-columns: 1fr; }
}
