/* ============================================================
   Services Page — Extra Components
   ============================================================ */

/* ── Service pill links in hero ── */
.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: 0.3s ease;
  white-space: nowrap;
}
.svc-pill:hover {
  background: rgba(0,195,137,0.12);
  border-color: rgba(0,195,137,0.35);
  color: #00C389;
}

/* ── Sticky sub-navigation ── */
.services-subnav {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.subnav-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav-scroll::-webkit-scrollbar { display: none; }
.subnav-scroll a {
  flex-shrink: 0;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  border-radius: 6px;
  white-space: nowrap;
  transition: 0.25s;
  border: 1px solid transparent;
}
.subnav-scroll a:hover {
  color: #00C389;
  background: rgba(0,195,137,0.06);
  border-color: rgba(0,195,137,0.2);
}

/* ── Practice area header divider ── */
.practice-header {
  background: #F8FAFB;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 40px 0;
}
.ph-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ph-num {
  font-size: 64px;
  font-weight: 900;
  color: rgba(11,30,61,0.06);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}
.ph-label {
  font-size: 11px;
  font-weight: 700;
  color: #00C389;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.ph-title {
  font-size: 24px;
  font-weight: 800;
  color: #0B1E3D;
}
.ph-desc {
  margin-left: auto;
  max-width: 380px;
  font-size: 14px;
  color: #64748B;
  line-height: 1.7;
  flex-shrink: 0;
}

/* ── Outcome pills ── */
.outcome-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.outcome-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0,195,137,0.08);
  border: 1px solid rgba(0,195,137,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #00A872;
}
.outcome-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00C389;
  flex-shrink: 0;
}

/* ── Technology tags ── */
.tech-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
}
.ttag {
  padding: 5px 12px;
  background: #F1F4F8;
  border: 1px solid #E2E8F0;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
}
.ttag-dark {
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
}

/* ── SVG icon containers ── */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box-sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .ph-inner { flex-wrap: wrap; }
  .ph-desc  { max-width: 100%; margin-left: 0; }
  .ph-num   { display: none; }
}
@media (max-width: 600px) {
  .practice-header { padding: 28px 0; }
  .ph-title { font-size: 20px; }
  .outcome-row { gap: 6px; }
}
