/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES — Services grid, service cards, engagement models.
   Edit here for the Services page only.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────
   SERVICES GRID
──────────────────────────────────────────── */
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; border: 1px solid #d0d8e8;
}
.svc-card {
  padding: 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.svc-card:nth-child(2n) { border-right: none; }
.svc-card:nth-last-child(-n+2) { border-bottom: none; }
.svc-card:hover { background: #eef3f3; }
.svc-card-accent {
  position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: #1a2a2b;
  transition: height 0.35s ease;
}
.svc-card:hover .svc-card-accent { height: 100%; }
.svc-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em; color: var(--blue);
  margin-bottom: 20px; opacity: 0.7;
}
.svc-card-icon {
  width: 56px; height: 56px; border-radius: 10px;
  background: #eef3f3;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s, transform 0.25s;
}
.svc-card:hover .svc-card-icon { background: #dde8ff; transform: translateY(-2px); }
.svc-card-icon img { width: 34px; height: 34px; object-fit: contain; display: block; }
.svc-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 1.1rem; margin-bottom: 12px;
}
.svc-card-body { font-size: 0.9rem; color: var(--ink-60); line-height: 1.7; }
.svc-card-list { margin-top: 16px; padding: 0; list-style: none; }
.svc-card-list li {
  font-size: 0.84rem; color: var(--ink-60);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; gap: 10px;
}
.svc-card-list li:last-child { border-bottom: none; }
.svc-card-list li::before { content: '→'; color: var(--blue); font-size: 0.8rem; flex-shrink: 0; }
.svc-card-cta {
  margin-top: 24px; font-size: 0.82rem; font-weight: 600; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
  border-bottom: 1.5px solid transparent; transition: border-color 0.2s;
  cursor: pointer;
}
.svc-card:hover .svc-card-cta { border-bottom-color: var(--blue); }

/* ────────────────────────────────────────────
   ENGAGEMENT MODELS 4 COL
──────────────────────────────────────────── */
.engage-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 8px;
}
.engage-card {
  background: white; border: 1px solid #d0d8e8;
  padding: 36px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.engage-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: #1a2a2b; transform: scaleX(0);
  transition: transform 0.3s; transform-origin: center;
}
.engage-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(50,107,205,0.15); border-color: var(--blue); }
.engage-card:hover::after { transform: scaleX(1); }
.engage-icon {
  width: 56px; height: 56px; border-radius: 10px;
  background: #eef3f3;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.engage-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; color: var(--ink); }
.engage-body { font-size: 0.83rem; color: var(--ink-60); line-height: 1.65; }

