/* === WHAT WE DO PAGE STYLES === */

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 36px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-left: 4px solid transparent;
  margin-bottom: 20px;
}
.service-row:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}
.service-row .sr-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.service-row .sr-body { flex: 1; }
.service-row .sr-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.service-row .sr-body h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.service-row .sr-body p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}
.service-row .sr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.service-row .sr-pill {
  font-size: 11.5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 500;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-box {
  background: #fff;
  border: 1px solid #e8eaf6;
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(79,92,255,0.08);
}
.stat-box .stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #3730a3;
  line-height: 1;
}
.stat-box .stat-label {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 4px;
}

.mem-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  height: 100%;
  transition: transform 0.3s ease;
}
.mem-card:hover { transform: translateY(-4px); }
.mem-card .mem-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.mem-card h6 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.mem-card p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
}
